
Recherche avancée
Autres articles (44)
-
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 -
HTML5 audio and video support
13 avril 2011, parMediaSPIP uses HTML5 video and audio tags to play multimedia files, taking advantage of the latest W3C innovations supported by modern browsers.
The MediaSPIP player used has been created specifically for MediaSPIP and can be easily adapted to fit in with a specific theme.
For older browsers the Flowplayer flash fallback is used.
MediaSPIP allows for media playback on major mobile platforms with the above (...) -
Support audio et vidéo HTML5
10 avril 2011MediaSPIP utilise les balises HTML5 video et audio pour la lecture de documents multimedia en profitant des dernières innovations du W3C supportées par les navigateurs modernes.
Pour les navigateurs plus anciens, le lecteur flash Flowplayer est utilisé.
Le lecteur HTML5 utilisé a été spécifiquement créé pour MediaSPIP : il est complètement modifiable graphiquement pour correspondre à un thème choisi.
Ces technologies permettent de distribuer vidéo et son à la fois sur des ordinateurs conventionnels (...)
Sur d’autres sites (8189)
-
lavf/dump : dump the vbv_delay with N/A instead of 18446744073709551615
27 août 2019, par Limin Wanglavf/dump : dump the vbv_delay with N/A instead of 18446744073709551615
How to check it :
./ffmpeg -f lavfi -i testsrc -c:v mpeg2video -f null -
master :
Side data :
cpb : bitrate max/min/avg : 0/0/200000 buffer size : 0 vbv_delay :
18446744073709551615
patch applied :
Side data :
cpb : bitrate max/min/avg : 0/0/200000 buffer size : 0 vbv_delay : N/AReviewed-by : Michael Niedermayer <michael@niedermayer.cc>
Signed-off-by : Limin Wang <lance.lmwang@gmail.com>
Signed-off-by : Michael Niedermayer <michael@niedermayer.cc> -
avutil/internal : remove FF_ALLOCx{_ARRAY}_OR_GOTO macros
2 juin 2020, par Limin Wangavutil/internal : remove FF_ALLOCx_ARRAY_OR_GOTO macros
These functions have a terrible design, let us fix them before extending
them.
First design mistake : no error code. A helper function for testing
memory allocation failure where AVERROR(ENOMEM) does not appear is
absurd.Second design mistake : printing a message. Return the error code, let
the caller print the error message.Third design mistake : hard-coded use of goto.
http://ffmpeg.org/pipermail/ffmpeg-devel/2020-May/262544.html
Signed-off-by : Limin Wang <lance.lmwang@gmail.com>
-
avformat/mpegtsenc : use total_size instead of avio_tell()
22 octobre 2020, par Limin Wangavformat/mpegtsenc : use total_size instead of avio_tell()
avio_tell() fails to get the amount of data written so far when the
underlying IO context is flushed to segments.Please test with below command :
$ ./ffmpeg -f lavfi -i testsrc=duration=100:size=vga -c:v libx264 -x264opts \
nal-hrd=cbr:force-cfr=1 -b:v 500k -minrate 500k -maxrate 500k -bufsize 500k \
-f hls -hls_time 10 -hls_ts_options "muxrate=2000000" test%d.ts$ du -h test*.ts
Before :
2.4M test00.ts
4.8M test11.ts
7.2M test22.ts
9.6M test33.ts
12M test44.ts
...After apply the patch :
2.4M test00.ts
2.4M test11.ts
2.4M test22.ts
2.4M test33.ts
2.4M test44.ts
...Reviewed-by : Marton Balint <cus@passwd.hu>
Signed-off-by : Limin Wang <lance.lmwang@gmail.com>