
Recherche avancée
Médias (91)
-
Corona Radiata
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Lights in the Sky
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Head Down
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Echoplex
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Discipline
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Letting You
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
Autres articles (45)
-
Les vidéos
21 avril 2011, parComme les documents de type "audio", Mediaspip affiche dans la mesure du possible les vidéos grâce à la balise html5 .
Un des inconvénients de cette balise est qu’elle n’est pas reconnue correctement par certains navigateurs (Internet Explorer pour ne pas le nommer) et que chaque navigateur ne gère en natif que certains formats de vidéos.
Son avantage principal quant à lui est de bénéficier de la prise en charge native de vidéos dans les navigateur et donc de se passer de l’utilisation de Flash et (...) -
Les tâches Cron régulières de la ferme
1er décembre 2010, parLa gestion de la ferme passe par l’exécution à intervalle régulier de plusieurs tâches répétitives dites Cron.
Le super Cron (gestion_mutu_super_cron)
Cette tâche, planifiée chaque minute, a pour simple effet d’appeler le Cron de l’ensemble des instances de la mutualisation régulièrement. Couplée avec un Cron système sur le site central de la mutualisation, cela permet de simplement générer des visites régulières sur les différents sites et éviter que les tâches des sites peu visités soient trop (...) -
Websites made with MediaSPIP
2 mai 2011, parThis page lists some websites based on MediaSPIP.
Sur d’autres sites (6424)
-
Get duration of encrypted video file
22 mars 2019, par Grant JamiesonWhen using the commands :
ffmpeg -i filename 2>&1 | grep Duration
ffprobe filename -show_format -hide_bannerThe duration and bit rate appears as N/A but the rest of the format is correct, I believe this is because the file is encrypted using Lynk. I am wondering if there is away around this issue to get the duration even with the file being encrypted ?
And this is program related as I use this command in a php script.
Thanks
Here is the log
-
Revision 2bd6fe08f8 : Enable early termination in rd search This commit allows encoder to detect the
3 juillet 2013, par Jingning HanChanged Paths :
Modify /vp9/encoder/vp9_rdopt.c
Enable early termination in rd searchThis commit allows encoder to detect the cumulative rate-distortion
cost per transformed block inside a partition. If the cumulative
rd cost is already above the best rd value, it terminates the rest
operations and continue to next prediction mode test.It reduces the runtime of bus at target bit-rate 2000 from 308 second
to 266 second, i.e., about 13% speed-up at no performance penalty.Change-Id : I5f15a3d8955d97031d5653006027866a00654e7a
-
avconv : convert sequence of randomly-named images to video
22 avril 2015, par eudoxosI have files named like
alice.png
,bob.png
,charlie.png
(there are hundreds of them) and I would like to make video from those. What I try isavconv -i alice.png -i bob.png -i charlie.png -r 25 -b:v 12M -y out.mp4
but I am only getting the first image blipping in the movie, the rest is ignored.
There is buch of tutorials how to use
-i %03d.png
and similar wildcards, but is there a way to do without them, passing those files on the command line ?mencoder
had the optionmf://alice.png,bob.png,charlie.png
so I am looking for something similar.Writing filenames to an external file would be OK as well.