
Recherche avancée
Autres articles (43)
-
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 (...) -
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 (...) -
Websites made with MediaSPIP
2 mai 2011, parThis page lists some websites based on MediaSPIP.
Sur d’autres sites (6891)
-
Extracting frame every 30 seconds using FFmpeg is slow
30 août 2020, par Nitesh SWe are extracting frame every 30 seconds from mp4 file with following FFmpeg command :


ffmpeg -vsync 0 -i file.mp4 -vf fps=1,select='not(mod(t,30))' -frame_pts 1 temp\file.%d.jpg


We are using vsync and frame_pts options since we need frame's position w.r.t. seconds in output file names. It is running slow. It takes around 90 seconds to extract around 235 images from 118 minutes (259 MB) mp4 file. CPU usage while running this command goes 100%.


We are using this command in multi-threaded java application. During load test, we found that with 10 threads running this command simultaneously, time to complete this command is 5-15 minutes.


Is there any way to improve performance of this FFmpeg command ?


-
VP8/WebM : Adobe is the key to open video on the Web
22 mai 2010, par silviaGoogle have today announced the open sourcing of VP8 and the creation of a new media format WebM. Technical Challenges As I predicted earlier, Google had to match VP8 with an audio codec and a container format – their choice was a subpart of the Matroska format and the Vorbis codec. To complete (...)
-
FFMPEG errors with non-English characters
1er avril 2021, par Mingli YangWhen I tried to use the command-line to catch a chrome window with non-English characters such as ¥, or any other 中文页面, an I/O error will occur with the message "Can't find window "¥中文页面。 - Google Chrome", aborting." When the non-English characters are replaced by English ones, the errors will disappear. Environment : Windows 10, ffmpeg version 2021-03-24


This works fine :

ffmpeg -f gdigrab -i title="$ English Page - Google Chrome" -pix_fmt yuv420p grab.mp4


This has errors :

ffmpeg -f gdigrab -i title="¥中文页面。 - Google Chrome" -pix_fmt yuv420p grab.mp4


"Can't find window "¥中文页面。 - Google Chrome", aborting."


Any ideas to solve this ?