
Recherche avancée
Autres articles (60)
-
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.
-
Creating farms of unique websites
13 avril 2011, parMediaSPIP platforms can be installed as a farm, with a single "core" hosted on a dedicated server and used by multiple websites.
This allows (among other things) : implementation costs to be shared between several different projects / individuals rapid deployment of multiple unique sites creation of groups of like-minded sites, making it possible to browse media in a more controlled and selective environment than the major "open" (...)
Sur d’autres sites (5663)
-
fate/vcodec : use the encoder private option for frame skip compare function
27 mai 2020, par James Almer -
FFmpeg transcoding mpeg2 to H264 and compare frames
11 novembre 2016, par Ivan KolesnikovI have the following mpeg2 source file :
Stream #0:0[0x900] : Video : mpeg2video (Main) ([2][0][0][0] / 0x0002),
yuv420p(tv, top first), 720x576 [SAR 16:15 DAR 4:3], 4540 kb/s, 25
fps, 25 tbr, 90k tbn, 50 tbcAnd transcoding it to H264 with the following command :
ffmpeg -i source.mpg -vcodec h264_nvenc -r 25 -g 25 -acodec copy
-copyts -f mpegts example1.mpgAfter this I want to extract identical frames from the both video files :
ffmpeg -y -ss 00:44:16 -i source.mpg -frames:v 1 source.png
ffmpeg -y -ss 00:44:16 -i example1.mpg -frames:v 1 example1.png
But pictures(source.png and example1.png) are different. Please see the source.png :
How can I catch the same moment(frame) at the both video ?
-
avcodec/me_cmp : add median SAD compare function
18 août 2016, par Stanislav Dolganov