
Recherche avancée
Autres articles (41)
-
Les autorisations surchargées par les plugins
27 avril 2010, parMediaspip core
autoriser_auteur_modifier() afin que les visiteurs soient capables de modifier leurs informations sur la page d’auteurs -
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 (...) -
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 (...)
Sur d’autres sites (5885)
-
ffmpeg nginx "Past duration ... too large" [duplicate]
25 août 2017, par Philip KirkbrideThis question already has an answer here :
I have nginx compiled with the rtmp module. I start
nginx
and run the following to start streaming my webcam :ffmpeg -i /dev/video0 -f flv rtmp://localhost/live/test
Which works, I can then connect to my stream at
rtmp://localhost/live/test
The logs look like :
frame=51 fps=34 q=31.0 size=203kB time=00:00:02.60 bitrate=638.9
frame=66 fps=33 q=31.0 size=239kB time=00:00:03.10 bitrate=632.0
frame=82 fps=33 q=31.0 size=271kB time=00:00:03.63 bitrate=611.6
...With a new line being output every second or so. After streaming for 3-4 minutes I start getting logs like these about 5 per second :
Past duration 0.987877 too large
Past duration 0.911079 too large
Past duration 0.949013 too largeDespite the warnings the stream still seems to be live and working.
I believe nginx is triggering the following ffmpeg command :
exec ffmpeg -i rtmp://localhost:1935/encode/$name
-c:a libfdk_aac -b:a 128k -c:v libx264 -b:v 1000k -f flv -g 30 -r 30 -s 854x480 -preset superfast -profile:v baseline rtmp://localhost:1935/live/$name
;Does anyone know what this warning is referring to ?
-
Extracting thumbnails with FFMPEG is super slow on large video files ? [duplicate]
5 octobre 2015, par vaidThis question already has an answer here :
I extract thumbnails from a
.MOV
file using FFMPEG on Linus (Debian 64bit).The file I extract the thumbnail from is about 430 Megabytes large.
I use the following command to do so :
ffmpeg -i 'largeVideoFile.mov' -ss 00:14:37 -vframes 1 'thumbnail.jpg'
It takes well over 3 minutes for a single frame to be extracted.
How can I speed it up ?
-
all : fix enum definition for large values
23 octobre 2015, par Ganesh Ajjanagaddeall : fix enum definition for large values
ISO C restricts enumerator values to the range of int. Thus (for instance) 0x80000000
unfortunately does not work, and throws a warning with -Wpedantic on
clang 3.7.This fixes it by using alternative expressions that result in identical
values but do not have this issue.Tested with FATE.
Reviewed-by : Ronald S. Bultje <rsbultje@gmail.com>
Reviewed-by : Michael Niedermayer <michael@niedermayer.cc>
Signed-off-by : Ganesh Ajjanagadde <gajjanagadde@gmail.com>