
Recherche avancée
Autres articles (38)
-
Publier sur MédiaSpip
13 juin 2013Puis-je poster des contenus à partir d’une tablette Ipad ?
Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir -
Encodage et transformation en formats lisibles sur Internet
10 avril 2011MediaSPIP transforme et ré-encode les documents mis en ligne afin de les rendre lisibles sur Internet et automatiquement utilisables sans intervention du créateur de contenu.
Les vidéos sont automatiquement encodées dans les formats supportés par HTML5 : MP4, Ogv et WebM. La version "MP4" est également utilisée pour le lecteur flash de secours nécessaire aux anciens navigateurs.
Les documents audios sont également ré-encodés dans les deux formats utilisables par HTML5 :MP3 et Ogg. La version "MP3" (...) -
Librairies et logiciels spécifiques aux médias
10 décembre 2010, parPour un fonctionnement correct et optimal, plusieurs choses sont à prendre en considération.
Il est important, après avoir installé apache2, mysql et php5, d’installer d’autres logiciels nécessaires dont les installations sont décrites dans les liens afférants. Un ensemble de librairies multimedias (x264, libtheora, libvpx) utilisées pour l’encodage et le décodage des vidéos et sons afin de supporter le plus grand nombre de fichiers possibles. Cf. : ce tutoriel ; FFMpeg avec le maximum de décodeurs et (...)
Sur d’autres sites (5796)
-
node.js live streaming ffmpeg stdout to res
24 mai 2014, par blasteyeI want node.js to convert an extremly long audio file to mp3, and the second data is available on stdout, node.js should send it to the client for them to play.
I’ve written the following, and while it works, the html5 audio/video tag waits until ffmpeg is 100% done transcoding, where-as I want to start playing the video while ffmpeg is doing its thing.
var ffmpeg = childProcess.spawn('ffmpeg', [
'-i', params.location, //location of the specified media file
'-f', 'mp3',
'pipe:1'
]);
res.writeHead(200, {
'Content-Type': 'audio/mp3'
});
ffmpeg.stdout.pipe(res);EDIT 1 : Not sure why, but if params.location points to a movie everything seems to work. But if its an audio file, ffmpeg doesn’t seem to be outputting to stdout until its 100% converted.
EDIT 2 : Turns out that you can’t dump an mp4 file to stdout due to the fact that mp4 files are non Causal (http://en.wikipedia.org/wiki/Causal_system). THerefore if you use webm it works. Just make sure to compile ffmpeg with webm support (for homebrew users : brew install ffmpeg —with-vpx —with-vorbis ).
I’ve uploaded a github gist showing two functions to send live mp3/webm transcodes : https://gist.github.com/cobookman/c1a9856a4588496b021a
-
How to get rotation attribute in metadata using FFMPEG [on hold]
17 octobre 2013, par user2882101I am trying to figure out rotation attribute in metadata using FFMPEG.I use the following command
FFMPEG -i D :\maxpayne3.mp4ffmpeg version N-57217-ga7e3006 Copyright (c) 2000-2013 the FFmpeg developers
built on Oct 16 2013 22:04:43 with gcc 4.8.1 (GCC)
configuration : —enable-gpl —enable-version3 —disable-w32threads —enable-av
isynth —enable-bzlib —enable-fontconfig —enable-frei0r —enable-gnutls —enab
le-iconv —enable-libass —enable-libbluray —enable-libcaca —enable-libfreetyp
e —enable-libgsm —enable-libilbc —enable-libmodplug —enable-libmp3lame —ena
ble-libopencore-amrnb —enable-libopencore-amrwb —enable-libopenjpeg —enable-l
ibopus —enable-librtmp —enable-libschroedinger —enable-libsoxr —enable-libsp
eex —enable-libtheora —enable-libtwolame —enable-libvidstab —enable-libvo-aa
cenc —enable-libvo-amrwbenc —enable-libvorbis —enable-libvpx —enable-libwavp
ack —enable-libx264 —enable-libxavs —enable-libxvid —enable-zlib
libavutil 52. 46.101 / 52. 46.101
libavcodec 55. 37.100 / 55. 37.100
libavformat 55. 19.102 / 55. 19.102
libavdevice 55. 4.100 / 55. 4.100
libavfilter 3. 88.101 / 3. 88.101
libswscale 2. 5.101 / 2. 5.101
libswresample 0. 17.103 / 0. 17.103
libpostproc 52. 3.100 / 52. 3.100
Input #0, mov,mp4,m4a,3gp,3g2,mj2, from 'D :\maxpayne3.mp4' :
Metadata :
major_brand : isom
minor_version : 512
compatible_brands : isomiso2avc1mp41
encoder : Lavf54.3.100
Duration : 00:01:42.42, start : 0.000000, bitrate : 2361 kb/s
Stream #0:0(und) : Video : h264 (High) (avc1 / 0x31637661), yuv420p, 1280x720
[SAR 1:1 DAR 16:9], 2289 kb/s, 29.97 fps, 29.97 tbr, 30k tbn, 59.94 tbc (default
)
Metadata :
handler_name : VideoHandler
Stream #0:1(und) : Audio : aac (mp4a / 0x6134706D), 44100 Hz, stereo, fltp, 66
kb/s (default)
Metadata :
handler_name : SoundHandlerI have not seen rotation attribute in metadata ,can anyone pl help me....
-
ffmpeg permission Denied [on hold]
19 avril 2014, par user3549636ffmpeg is giving me permission Denied from my asp.net app when told to grab a video from "\"C :\Users\Aleksandur Murfitt\Documents\My Web Sites\Photo Gallery5\Images\userpics\""
even though Everyone has been given full rights for My Web Sites and userpics, why ?