
Recherche avancée
Médias (1)
-
Revolution of Open-source and film making towards open film making
6 octobre 2011, par
Mis à jour : Juillet 2013
Langue : English
Type : Texte
Autres articles (106)
-
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 -
Le plugin : Podcasts.
14 juillet 2010, parLe problème du podcasting est à nouveau un problème révélateur de la normalisation des transports de données sur Internet.
Deux formats intéressants existent : Celui développé par Apple, très axé sur l’utilisation d’iTunes dont la SPEC est ici ; Le format "Media RSS Module" qui est plus "libre" notamment soutenu par Yahoo et le logiciel Miro ;
Types de fichiers supportés dans les flux
Le format d’Apple n’autorise que les formats suivants dans ses flux : .mp3 audio/mpeg .m4a audio/x-m4a .mp4 (...) -
Gestion des droits de création et d’édition des objets
8 février 2011, parPar défaut, beaucoup de fonctionnalités sont limitées aux administrateurs mais restent configurables indépendamment pour modifier leur statut minimal d’utilisation notamment : la rédaction de contenus sur le site modifiables dans la gestion des templates de formulaires ; l’ajout de notes aux articles ; l’ajout de légendes et d’annotations sur les images ;
Sur d’autres sites (5340)
-
Quickest way to convert HD videos to webm
27 mars 2014, par Daniel7912I'm currently using the following command to convert .mp4 videos into .webm.
ffmpeg -i input.mp4 -vpre libvpx-720p -b 3900k -an -f webm -y output.webm
I appreciate that I'm converting in HD format, but the conversion takes a very long time. Is there anything I can do to speed it up ? I'm running it directly on my web server and trying to tie it in with Node.js as part as a content management system
Thanks for any help
-
How to convert H.264 format videos to H.263 using avconv or ffmpeg tool
15 juillet 2013, par Bagesh SharmaI run below given command but getting error -
avconv -y -i song_family.mp4 -c:v h263 -s 352x288 1.mp4
The log generated is -
avconv version 0.8.6-6:0.8.6-1ubuntu2, Copyright (c) 2000-2013 the Libav developers built on Mar 30 2013 22:23:21 with gcc 4.7.2 Input #0, mov,mp4,m4a,3gp,3g2,mj2, from 'song_family.mp4' : Metadata : major_brand : M4V minor_version : 1 compatible_brands : M4V mp42isom creation_time : 2013-02-19 22:12:33 Duration : 00:01:17.90, start : 0.000000, bitrate : 493 kb/s Stream #0.0(eng) : Video : h264 (Baseline), yuv420p, 1024x768 [PAR 1:1 DAR 4:3], 397 kb/s, 15 fps, 15 tbr, 15k tbn, 30 tbc Metadata : creation_time : 2013-02-19 22:12:33 Stream #0.1(eng) : Audio : aac, 44100 Hz, stereo, s16, 93 kb/s Metadata : creation_time : 2013-02-19 22:12:33 [buffer @ 0x98b9d00] w:1024 h:768 pixfmt:yuv420p [scale @ 0x98b9f60] w:1024 h:768 fmt:yuv420p -> w:352 h:288 fmt:yuv420p flags:0x4 [mp4 @ 0x98b8e60] track 0 : could not find tag, codec not currently supported in container Output #0, mp4, to '1.mp4' : Metadata : major_brand : M4V minor_version : 1 compatible_brands : M4V mp42isom creation_time : 2013-02-19 22:12:33 encoder : Lavf53.21.1 Stream #0.0(eng) : Video : h263, yuv420p, 352x288 [PAR 12:11 DAR 4:3], q=2-31, 200 kb/s, 90k tbn, 15 tbc Metadata : creation_time : 2013-02-19 22:12:33 Stream #0.1(eng) : Audio : libvo_aacenc, 44100 Hz, stereo, s16, 200 kb/s Metadata : creation_time : 2013-02-19 22:12:33 Stream mapping : Stream #0:0 -> #0:0 (h264 -> h263) Stream #0:1 -> #0:1 (aac -> libvo_aacenc) Could not write header for output file #0 (incorrect codec parameters ?)
-
Encode videos using Nodejs + ffmpeg or handbrake
12 juillet 2014, par sebastiannmI have been looking for a way to encode multiple videos simultaneously from NodeJS but I haven’t find a good solution for it yet.
Using FFMPEG I never get a 100% fail free response. There is always a broken video.
OS : Ubuntu 12.04
size = "#{options.maxWidth}x#{options.maxHeight}"
proc = new ffmpeg({
source: options.input
}).withVideoCodec(options.encoder).withSize(size).keepPixelAspect(true).withStrictExperimental()
proc.onProgress (progress) ->
console.log "progress: " + progress.percent
proc.saveToFile options.output, (stdout, stderr) ->
console.log "file has been converted succesfully"