
Recherche avancée
Médias (2)
-
Rennes Emotion Map 2010-11
19 octobre 2011, par
Mis à jour : Juillet 2013
Langue : français
Type : Texte
-
Carte de Schillerkiez
13 mai 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Texte
Autres articles (36)
-
Submit bugs and patches
13 avril 2011Unfortunately a software is never perfect.
If you think you have found a bug, report it using our ticket system. Please to help us to fix it by providing the following information : the browser you are using, including the exact version as precise an explanation as possible of the problem if possible, the steps taken resulting in the problem a link to the site / page in question
If you think you have solved the bug, fill in a ticket and attach to it a corrective patch.
You may also (...) -
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 (...)
Sur d’autres sites (7175)
-
ffmpeg dash Failed to open fragment of playlist 0
18 mars 2019, par user3787734As I m using an external .mpd file path, as playlist get a refresh every 10 seconds but
FFmpeg
can’t able to manage it out.after playing the remote .mpd file for 15 seconds it’s saying.
[dash @ 000001bf4149bfc0] No longer receiving stream_index 0bitrate=1057.4kbits/s speed=0.801x
[dash @ 000001bf4149bfc0] No longer receiving stream_index 1
[https @ 000001bf41dcb280] HTTP error 410 Gonee=00:00:18.06 bitrate=1937.1kbits/s dup=0 drop=2 speed=0.976x
[dash @ 000001bf4149bfc0] Failed to open fragment of playlist 0ffmpeg -re -i "http://remotehost/test.mpd" -copy -f flv
"rtmp ://server" -
I-Frames replacement in MPEG DASH
7 mars 2019, par Hangil KangWe are conducting a research which requires to change only I-Frames in the middle of MPEG DASH service.
Based on my knowledge, each segment of a full video contains one I frame and related B and P frames. For our research, we want to do something with only I frames and re-encode the frames into the corresponding segment and during the decoding process, we want to do something with the I frames again.
Any ideas how to do this ?
I appreciate all comments.
-
minimum delay for mpeg-dash stream using ffmpeg
9 février 2017, par evanI am trying to stream my video files using MP4Box and ffmpeg and using mpeg-dash, I transcoded my video using this command for video :
ffmpeg -i main720.MTS -movflags faststart -vcodec libx264 -r 24 -tune zerolatency -tune fastdecode -bf 0 -slices 0 -x264opts intra_refresh=1 -g 96 -b:v 700k -maxrate 700k -bufsize 400k -an -s 640*360 -ss 00:00:00 -t 00:02:00 main720_700_video.mp4
and this for audio :
ffmpeg -i main720.MTS -movflags faststart -acodec libmp3lame -b:a 128k -vn -ss 00:00:00 -t 00:02:00 main720_700_audio.mp4
and this to make the mpeg-dash file :
MP4Box -dash 4000 -frag 4000 -profile onDamand -rap -segment-name %s_ -out manifest.mpd main720_300_video.mp4 main720_700_video.mp4 main720_300_audio.mp4
but I am NOT getting a fast stream and it has got some delay, any suggestions on how to make this delay lower ??