
Recherche avancée
Autres articles (104)
-
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 -
Participer à sa documentation
10 avril 2011La documentation est un des travaux les plus importants et les plus contraignants lors de la réalisation d’un outil technique.
Tout apport extérieur à ce sujet est primordial : la critique de l’existant ; la participation à la rédaction d’articles orientés : utilisateur (administrateur de MediaSPIP ou simplement producteur de contenu) ; développeur ; la création de screencasts d’explication ; la traduction de la documentation dans une nouvelle langue ;
Pour ce faire, vous pouvez vous inscrire sur (...) -
D’autres logiciels intéressants
12 avril 2011, parOn ne revendique pas d’être les seuls à faire ce que l’on fait ... et on ne revendique surtout pas d’être les meilleurs non plus ... Ce que l’on fait, on essaie juste de le faire bien, et de mieux en mieux...
La liste suivante correspond à des logiciels qui tendent peu ou prou à faire comme MediaSPIP ou que MediaSPIP tente peu ou prou à faire pareil, peu importe ...
On ne les connais pas, on ne les a pas essayé, mais vous pouvez peut être y jeter un coup d’oeil.
Videopress
Site Internet : (...)
Sur d’autres sites (4671)
-
avfilter/vf_setparams : Fix chroma_location being cleared
30 avril, par Tobias Rapp -
ranlib error while cross-compiling ffmpeg x264 for android on osx 10.8
7 juin 2013, par indaleI wanted to compile a ffmpg x264 lib for android https://github.com/edisonw/android-ffmpeg-x264. I am using Mountain Lion (Mac OSX 10.8.4). I already installed libtool and yasm via brew but still get the following error :
ffmpeg/libavdevice/libavdevice.a: could not read symbols: Archive has no index; run ranlib to add one
collect2: ld returned 1 exit status
make: *** [/Users/Test/github/android-ffmpeg-x264/Project/obj/local/armeabi/libencoding.so] Error 1After that it stuck and I have no Idea why, according to the owner it was possible to build on a Lion (Mac OSX 10.7.x).
Thank you for any help !
-
how is maxrate used in FFMPEG when converting ?
9 septembre 2013, par rhbc73I met a problem when converting video stream into mpeg2 format with specified max bitrate in FFMPEG.
The input file has a high bitrate of about 40Mbps (resolution is 720P),
what I want to archive is to get a mpeg video of max bit rate of 9Mbps (keep same resolution)
But when I used
ffmpeg.exe -i Untitled720P.mp4 -c:v mpeg2video -c:a ac3 -r 25 -pix_fmt yuv420p -g 15 -
b:v 6000000 -maxrate 9000000 -minrate 0 -bufsize 1835008 -packetsize 2048 -muxrate
10080000 -b:a 448000 -ar 48000 manual.mpgthere came out lots warnings of "buffer underflow", and the generated file has an overall bitrate of 29.7Mbps although 9000k is specified to be max.
This generated mpeg video, when played in VLC player, stopped somewhere.
So I want to know, if there's any other argument I can use to force ffmpeg to generate an output which strictly stays below the specified max bitrate ?
Great thanks