
Recherche avancée
Médias (1)
-
The Slip - Artworks
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Texte
Autres articles (62)
-
Multilang : améliorer l’interface pour les blocs multilingues
18 février 2011, parMultilang est un plugin supplémentaire qui n’est pas activé par défaut lors de l’initialisation de MediaSPIP.
Après son activation, une préconfiguration est mise en place automatiquement par MediaSPIP init permettant à la nouvelle fonctionnalité d’être automatiquement opérationnelle. Il n’est donc pas obligatoire de passer par une étape de configuration pour cela. -
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 -
Les formats acceptés
28 janvier 2010, parLes commandes suivantes permettent d’avoir des informations sur les formats et codecs gérés par l’installation local de ffmpeg :
ffmpeg -codecs ffmpeg -formats
Les format videos acceptés en entrée
Cette liste est non exhaustive, elle met en exergue les principaux formats utilisés : h264 : H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10 m4v : raw MPEG-4 video format flv : Flash Video (FLV) / Sorenson Spark / Sorenson H.263 Theora wmv :
Les formats vidéos de sortie possibles
Dans un premier temps on (...)
Sur d’autres sites (7445)
-
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 ? -
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....
-
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