
Recherche avancée
Autres articles (56)
-
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 -
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 (10077)
-
avcodec/aacps : Fix runtime error : left shift of 1073741824 by 1 places cannot be...
2 juin 2017, par Michael Niedermayeravcodec/aacps : Fix runtime error : left shift of 1073741824 by 1 places cannot be represented in type 'INTFLOAT' (aka 'int')
Fixes : 2005/clusterfuzz-testcase-minimized-5744226438479872
Found-by : continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/projects/ffmpeg
Signed-off-by : Michael Niedermayer <michael@niedermayer.cc> -
how to make ffmpeg output frames at correct rate down to millisecond
9 février 2017, par Pavel K.using ffmpeg, i am fetching frames from udp stream (hd264 at 25 fps) using following command :
ffmpeg -loglevel debug -i udp ://231.20.20.146:2005 -fflags nobuffer -r 1 -preset ultrafast -vf scale=432:243 -f image2pipe -vcodec ppm pipe:1
at the other end of the pipe i am running a very simple binary which outputs the time at which it receives a frame.
however, even though i specify fps 1, frames enter the pipe with some delay, with 100-200ms delay.
what causes this delay ? is it the decoding of the frames and encoding of ppm image ? and how can i force ffmpeg to send images at least at the correct distance between each other, so that each frame would arrive exactly 1000ms after previous frame ?
ps. the first 6 frames are buffered and enter the pipe almost at once. here is an example of recorded ms values :
5350
5368
5385
5493
5599
5676
5785
6221
7243
8235
9218
10219
11227
12268
13268
14242
15288
16219
17297
18222
19284
20272 -
ffmpeg / mencoder converting a video with correct setting
22 août 2016, par Rick TI have an avi video file that plays on my Onn-W7 player Link to avi video file that works and backup link to avi file that works. I’m trying to convert some other video files over so that they will also play on it. I’ve tried handbrake, ffmpeg and mencoder but the video fails to work most likely do to the fact I have some settings wrong in the conversion process but I don’t know which ones any ideas how to fix this
Here’s the settings of the avi file that works below :
General
Complete name : /tmp/ONN.avi
Format : AVI
Format/Info : Audio Video Interleave
File size : 11.0 MiB
Duration : 3mn 1s
Overall bit rate : 508 Kbps
Writing application : MEncoder Sherpya-MinGW-20060312-4.1.0
Writing library : MPlayer
Video
ID : 0
Format : MPEG-4 Visual
Format profile : Simple@L3
Format settings, BVOP : No
Format settings, QPel : No
Format settings, GMC : No warppoints
Format settings, Matrix : Default (H.263)
Codec ID : XVID
Codec ID/Hint : XviD
Duration : 3mn 1s
Bit rate : 371 Kbps
Width : 160 pixels
Height : 128 pixels
Display aspect ratio : 5:3
Original display aspect ratio : 5:4
Frame rate : 15.000 fps
Color space : YUV
Chroma subsampling : 4:2:0
Bit depth : 8 bits
Scan type : Progressive
Compression mode : Lossy
Bits/(Pixel*Frame) : 1.207
Stream size : 8.00 MiB (73%)
Writing library : XviD 1.1.0 (UTC 2005-11-22)
Audio
ID : 1
Format : MPEG Audio
Format version : Version 1
Format profile : Layer 2
Codec ID : 50
Duration : 3mn 1s
Bit rate mode : Constant
Bit rate : 128 Kbps
Channel(s) : 2 channels
Sampling rate : 44.1 KHz
Compression mode : Lossy
Stream size : 2.77 MiB (25%)
Alignment : Split accross interleaves
Interleave, duration : 26 ms (0.39 video frame)
Interleave, preload duration : 522 msThe ffmpeg command I tried is :
ffmpeg -i "video_to_convert.mp4" -c:v libxvid -vf scale=160x128,setsar=1 -b:v 800k -r 15 -c:a libtwolame -ac 2 -ar 44100 -b:a 128k -y video_converted.avi