
Recherche avancée
Autres articles (60)
-
Demande de création d’un canal
12 mars 2010, parEn fonction de la configuration de la plateforme, l’utilisateur peu avoir à sa disposition deux méthodes différentes de demande de création de canal. La première est au moment de son inscription, la seconde, après son inscription en remplissant un formulaire de demande.
Les deux manières demandent les mêmes choses fonctionnent à peu près de la même manière, le futur utilisateur doit remplir une série de champ de formulaire permettant tout d’abord aux administrateurs d’avoir des informations quant à (...) -
Des sites réalisés avec MediaSPIP
2 mai 2011, parCette page présente quelques-uns des sites fonctionnant sous MediaSPIP.
Vous pouvez bien entendu ajouter le votre grâce au formulaire en bas de page. -
Contribute to a better visual interface
13 avril 2011MediaSPIP is based on a system of themes and templates. Templates define the placement of information on the page, and can be adapted to a wide range of uses. Themes define the overall graphic appearance of the site.
Anyone can submit a new graphic theme or template and make it available to the MediaSPIP community.
Sur d’autres sites (8054)
-
avcodec/libx264 : Don't unnecessarily add in-band extradata
20 décembre 2021, par Andreas Rheinhardtavcodec/libx264 : Don't unnecessarily add in-band extradata
The check here is meant to check for whether avcintra-class option
(default value -1) has been set ; yet it checks for the x264_param_t
value where 0 is the default value (treated as "no avcintra-mode"
by x264). This meant that in-band extradata has been added unnecessarily
when using global headers ; furthermore, the first output packet
had two x264 SEIs.Reviewed-by : Limin Wang <lance.lmwang@gmail.com>
Signed-off-by : Andreas Rheinhardt <andreas.rheinhardt@outlook.com> -
avformat/movenc : initialize pts/dts of timecode packet
14 mars 2022, par Limin Wangavformat/movenc : initialize pts/dts of timecode packet
Fix below error message when timecode packet is written.
"Application provided duration : -9223372036854775808 / timestamp : -9223372036854775808 is out of range for mov/mp4 format"try to reproduce by :
ffmpeg -y -f lavfi -i color -metadata "timecode=00:00:00:00" -t 1 test.movNote although error message is printed, the timecode packet will be written anyway. So
the patch 2/2 will try to change the log level to warning.Fixes ticket #9488
Signed-off-by : Limin Wang <lance.lmwang@gmail.com>
-
avformat/mpegtsenc : make first_pcr sync with the first valid dts
26 octobre 2020, par Limin Wangavformat/mpegtsenc : make first_pcr sync with the first valid dts
now first_pts assume dts will start from zero, if it's not true(copyts is enable),
too many null packet will be inserted for cbr output.Please test with below command, you'll get huge test.ts without the patch :
./ffmpeg -y -copyts -i ../fate-suite/mpegts/loewe.ts -c:v libx264 -x264opts \
nal-hrd=cbr:force-cfr=1 -b:v 3500k -minrate 3500k -maxrate 3500k -bufsize \
1000k -c:a mp2 -muxrate 4500k -vframes 1000 test.tsReviewed-by : Marton Balint <cus@passwd.hu>
Signed-off-by : Limin Wang <lance.lmwang@gmail.com>