
Recherche avancée
Autres articles (90)
-
La file d’attente de SPIPmotion
28 novembre 2010, parUne file d’attente stockée dans la base de donnée
Lors de son installation, SPIPmotion crée une nouvelle table dans la base de donnée intitulée spip_spipmotion_attentes.
Cette nouvelle table est constituée des champs suivants : id_spipmotion_attente, l’identifiant numérique unique de la tâche à traiter ; id_document, l’identifiant numérique du document original à encoder ; id_objet l’identifiant unique de l’objet auquel le document encodé devra être attaché automatiquement ; objet, le type d’objet auquel (...) -
Websites made with MediaSPIP
2 mai 2011, parThis page lists some websites based on MediaSPIP.
-
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 (...)
Sur d’autres sites (8999)
-
Get video frames information with ffmpeg
17 décembre 2014, par Dmitriy KarpovHow can I retrieve information from video about byte number from which every frame starts, with using ffmpeg or something else ?
-
Get ffmpeg information in friendly way
17 décembre 2020, par JBernardoEvery time I try to get some information about my video files with ffmpeg, it pukes a lot of useless information mixed with good things.



I'm using
ffmpeg -i name_of_the_video.mpg
.


There are any possibilities to get that in a friendly way ? I mean JSON would be great (and even ugly XML is fine).



By now, I made my application parse the data with regex but there are lots of nasty corners that appear on some specific video files. I fixed all that I encountered, but there may be more.



I wanted something like :



{
 "Stream 0": {
 "type": "Video",
 "codec": "h264",
 "resolution": "720x480"
 },
 "Stream 1": {
 "type": "Audio",
 "bitrate": "128 kbps",
 "channels": 2
 }
}



-
Get ffmpeg information in friendly way
17 septembre 2012, par JBernardoEvery time I try to get some information about my video files with ffmpeg, it pukes a lot of useless information mixed with good things.
I'm using
ffmpeg -i name_of_the_video.mpg
.There are any possibilities to get that in a friendly way ? I mean JSON would be great (and even ugly XML is fine).
By now, I made my application parse the data with regex but there are lots of nasty corners that appear on some specific video files. I fixed all that I encountered, but there may be more.
I wanted something like :
{
"Stream 0": {
"type": "Video",
"codec": "h264",
"resolution": "720x480"
},
"Stream 1": {
"type": "Audio",
"bitrate": "128 kbps",
"channels": 2
}
}