
Recherche avancée
Autres articles (34)
-
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 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 (...) -
Contribute to documentation
13 avril 2011Documentation is vital to the development of improved technical capabilities.
MediaSPIP welcomes documentation by users as well as developers - including : critique of existing features and functions articles contributed by developers, administrators, content producers and editors screenshots to illustrate the above translations of existing documentation into other languages
To contribute, register to the project users’ mailing (...)
Sur d’autres sites (4903)
-
timecode of scene change detection ffmpeg
16 mars 2015, par Михаил БоровинскихGood day, there was a bit of a problem when I working with ffmpeg. We need to find timecodes of scene change detection in the video. Use the following command :
ffmpeg -i inputVideo.mp4 -f image2 -vf "select = gt (scene \ ,. 5)" -vsync vfr thumb% 04d.png
It creates an image from scene change detection. I do not know how to add timecode to a text file. Thanks in advance for your help !)
P.S. Sorry for my bad english)
-
AV playback synchronization using ffmpeg on WPF
10 août 2017, par learnerI have Video( H264-1080p-30fps) and Audio (Mu-law-8k) in separate files both are generated from same camera source. My work is to play them both synchronously using ffmpeg. I can able to decode video and audio without any issue but I don’t know how to play AV synchronously on WPF.
- What is the best way to render the video and play audio on Wpf after decoding ?
- How to play them synchronously ?
Thanks in advance..
-
Is it possible to update a filter option while paused in ffplay ?
25 juin 2020, par peggoI am using zmq to send filter option updates to ffplay while a video is playing. However, I would also like to be able to change say the zoom level while paused (I'm using scale and crop filters for this). If I do a zmq send command while paused nothing happens and I don't get a response.


If this is not possible, are there any workarounds ? I thought about using the loop filter instead of pausing, but I don't think you can change the options for that filter at runtime. So unless I know exactly where I want to pause in advance (which I don't) then I don't see a way to do this.


Thanks !