
Recherche avancée
Médias (91)
-
Collections - Formulaire de création rapide
19 février 2013, par
Mis à jour : Février 2013
Langue : français
Type : Image
-
Les Miserables
4 juin 2012, par
Mis à jour : Février 2013
Langue : English
Type : Texte
-
Ne pas afficher certaines informations : page d’accueil
23 novembre 2011, par
Mis à jour : Novembre 2011
Langue : français
Type : Image
-
The Great Big Beautiful Tomorrow
28 octobre 2011, par
Mis à jour : Octobre 2011
Langue : English
Type : Texte
-
Richard Stallman et la révolution du logiciel libre - Une biographie autorisée (version epub)
28 octobre 2011, par
Mis à jour : Octobre 2011
Langue : English
Type : Texte
-
Rennes Emotion Map 2010-11
19 octobre 2011, par
Mis à jour : Juillet 2013
Langue : français
Type : Texte
Autres articles (67)
-
Les sons
15 mai 2013, par -
Support de tous types de médias
10 avril 2011Contrairement à beaucoup de logiciels et autres plate-formes modernes de partage de documents, MediaSPIP a l’ambition de gérer un maximum de formats de documents différents qu’ils soient de type : images (png, gif, jpg, bmp et autres...) ; audio (MP3, Ogg, Wav et autres...) ; vidéo (Avi, MP4, Ogv, mpg, mov, wmv et autres...) ; contenu textuel, code ou autres (open office, microsoft office (tableur, présentation), web (html, css), LaTeX, Google Earth) (...)
-
Automated installation script of MediaSPIP
25 avril 2011, parTo overcome the difficulties mainly due to the installation of server side software dependencies, an "all-in-one" installation script written in bash was created to facilitate this step on a server with a compatible Linux distribution.
You must have access to your server via SSH and a root account to use it, which will install the dependencies. Contact your provider if you do not have that.
The documentation of the use of this installation script is available here.
The code of this (...)
Sur d’autres sites (3843)
-
ffmpeg - wrong length of video
29 mars 2012, par VictorI use ffmpeg to convert a video from mp4 to flv and mpg formats. Just rough conversion with few params :
ffmpeg -i my_file.mp4 -an -f flv my_new_file.flv
(I don't need sound so I specified -an)
When I convert file with 2:23 length I get 0:23 length of flv(or mpg) files. Why does that happen ?
-
http: Improve handling of Content-Range with Transfer-Encoding:chunked
2 février 2022, par Justin Ruggles -
Value range for AVCodecContex::global_quality, ::compression_level and AVFrame::quality
27 février 2019, par BimI’m trying to compress video using different codecs (WMV, MP4, H264, VP8, VP9) using FFmpeg / libav. I’m unsure on how to set the global and per-frame quality values. Even the range of values is unclear to me. The docs are not helpful.
Currently I’m using :AVCodecContex::global_quality = FF_QP2LAMBDA * quality; // no idea about range, default seems to be 0
AVCodecContex::compression_level = 0; // There is FF_COMPRESSION_DEFAULT (-1), which seems to be the default
AVFrame::quality = FF_LAMBDA_MAX * quality; // docs say range is [1, FF_LAMBDA_MAX], default seems to be 0quality is in the range [0,1], where 0 means best image quality. Only 0 seems to do anything for me and leads to ok-quality videos. All other values produce low-quality output.
Any clarification on how to set these values is welcome.