
Recherche avancée
Médias (1)
-
The Great Big Beautiful Tomorrow
28 octobre 2011, par
Mis à jour : Octobre 2011
Langue : English
Type : Texte
Autres articles (32)
-
Keeping control of your media in your hands
13 avril 2011, parThe vocabulary used on this site and around MediaSPIP in general, aims to avoid reference to Web 2.0 and the companies that profit from media-sharing.
While using MediaSPIP, you are invited to avoid using words like "Brand", "Cloud" and "Market".
MediaSPIP is designed to facilitate the sharing of creative media online, while allowing authors to retain complete control of their work.
MediaSPIP aims to be accessible to as many people as possible and development is based on expanding the (...) -
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 (...) -
Les images
15 mai 2013
Sur d’autres sites (3316)
-
Lossless ffmpeg conversion/encoding
28 août 2021, par Marc BrownI'm looking for the best in quality when converting videos.



I only want to use lossless audio and video encoders and a good container.



How do I enable lossless x264 vcodec for ffmpeg ?



I currently use
ffmpeg -i "inputvideo" -s 1280x720 -ar 48000 -threads 4 -vcodec libx264 -acodec copy -dsur_mode 2 -ac 6 "outputvideo720p.mkv"



I plan on using flac for the acodec by am unsure because I don't want to use quality if it switches to 16-bit instead of 24-bit


-
Anomalie #4845 : Gestion des branches des plugins du Core
8 juillet 2021Donc… le plan pour le moment
Je crée une branche "X.Y" à partir du master des plugins Core. Cette branche sera pour SPIP 4.0 - stable.
Je modifie master en "X.Y+1-dev" avec statut dev. Cette branche sera pour le SPIP master. -
Streaming protocol relay without involving codec
4 décembre 2015, par kiran_gI am trying to use libav to relay an RTSP stream. It involves PULLing the stream from an IP camera and then PUSHing to wowza.
The video encoding in the IP camera stream is h264. To enable h264 in my libav application I need to enable x264. But as x264 is GPL, it will not work with my business plan.
My questions is whether libav (ffmpeg) can be made to work like a dumb relay which is encoding-agnostic ? so that I dont need to integrate x264 with ffmpeg.
This SO post says that I can use the "copy" argument, but does that allow me to exclude x264 ?
BTW, is x264 actually needed by ffmpeg for decoding h264 ? Is x264 only used in encoding ?
See here for my current code.