
Recherche avancée
Autres articles (64)
-
Des sites réalisés avec MediaSPIP
2 mai 2011, parCette page présente quelques-uns des sites fonctionnant sous MediaSPIP.
Vous pouvez bien entendu ajouter le votre grâce au formulaire en bas de page. -
HTML5 audio and video support
13 avril 2011, parMediaSPIP uses HTML5 video and audio tags to play multimedia files, taking advantage of the latest W3C innovations supported by modern browsers.
The MediaSPIP player used has been created specifically for MediaSPIP and can be easily adapted to fit in with a specific theme.
For older browsers the Flowplayer flash fallback is used.
MediaSPIP allows for media playback on major mobile platforms with the above (...) -
De l’upload à la vidéo finale [version standalone]
31 janvier 2010, parLe chemin d’un document audio ou vidéo dans SPIPMotion est divisé en trois étapes distinctes.
Upload et récupération d’informations de la vidéo source
Dans un premier temps, il est nécessaire de créer un article SPIP et de lui joindre le document vidéo "source".
Au moment où ce document est joint à l’article, deux actions supplémentaires au comportement normal sont exécutées : La récupération des informations techniques des flux audio et video du fichier ; La génération d’une vignette : extraction d’une (...)
Sur d’autres sites (9362)
-
avformat/hlsenc : move old_filename free operation earlier
11 mai 2017, par Steven Liu -
Node.js ffmpeg download M3U8 URL as MP4
9 mai 2017, par Lars Erik StorbukåsI’ve installed ffmpeg.js using Node.js.
I want to be able to give an URL as an argument (where the resource located at the URL is an M3U8 file), and download it as an MP4.
With regular command line ffmpeg (not JavaScript ported), the command would be the following :
ffmpeg -i http://example.com/file.m3u8 -c copy out.mp4
I’ve tried the following, but it doesn’t work.
var ffmpeg = require("ffmpeg.js");
var fs = require("fs");
var result = ffmpeg({
arguments: ["-i", "http://example.com/file.m3u8", "-c", "copy", "out.mp4"],
});
fs.writeFileSync("out.mp4", Buffer(result)); -
avformat/utils : free AVStream.codec properly in free_stream()
21 avril 2017, par Aaron Levinson