
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 (43)
-
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 -
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
Sur d’autres sites (6742)
-
Decrypt mpeg dash live streaming with Widevine decryption url and restream with ffmpeg
29 septembre 2021, par DuongI have


- 

-
MPD file by URL (Video URL) - Stream type DASH


-
Widevine License URL - https: // drm .... /widevine/cenc/..../getlicense
This bunch can be opened using an online player and view the entire mpd file
I want open this video url and restream it with ffmpeg
Is there any ffmpeg command to do that ?








-
-
How to create a DASH VOD for Chromecast with ffmpeg ?
19 novembre 2020, par Oleg YablokovI need to serve long videos ( 2 hours) from a web server to mobile clients and the clients should be able to play the videos via
Chromecast
. I have chosenmpeg-dash
for this purpose : video encoder ish.264
(level 4.1), audio isaac
(although I've tried diffrent ones).

I've tried
ffmpeg
,MP4Box
and some other tools to generate videos ; most of the time I succeeded playing them on VLC or on a mobile client (locally), but not with Chromecast.

I've tried Amazon's
Elastic Transcoder
and it worked, but it gave me one big file whereas I need many small segments.

CORS are set.


Chromecast remote debugging didn't help much.


Do you know how to do this ?


-
Encoding and segmenting HD video for DASH [closed]
13 mars 2013, par user2163937I am trying to encode video for implementing DASH, for encoding I am using this command line...
ffmpeg -i sample.ts -f mpegts -acodec libfaac -ar 44100 -ab 64k -s 480x270
-vcodec libx264 -b 500k -r 25 -flags +loop -partitions
+parti4x4+partp8x8+partb8x8 -subq 5 -refs 6 -keyint_min 10 -i_qfactor 0.71
-maxrateD 500k -bufsize 500k -rc_eq 'blurCplx^(1-qComp)' -qmin 10 -qmax 51
-qdiff 4 -level 30 -aspect 16:9 -g 30 -async 2 out.tsFor segmentation I use this command line
ffmpeg -i out.ts -c copy -map 0 -f ssegment -segment_time 4 -segment_list
out.list seg%d.tsAnd I use the various resolutions and parameters according to the table given in this link.
Given resolutions and parameters are working fine for me, I can able to get smooth transition among various resolutions. But problem arises when I try to use HD resolution i.e 1280x720, there is a visible flicker when video switches from HD to other resolution or vice-versa. I cannot figure out the problem.