
Recherche avancée
Médias (10)
-
Demon Seed
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Demon seed (wav version)
26 septembre 2011, par
Mis à jour : Avril 2013
Langue : English
Type : Audio
-
The four of us are dying (wav version)
26 septembre 2011, par
Mis à jour : Avril 2013
Langue : English
Type : Audio
-
Corona radiata (wav version)
26 septembre 2011, par
Mis à jour : Avril 2013
Langue : English
Type : Audio
-
Lights in the sky (wav version)
26 septembre 2011, par
Mis à jour : Avril 2013
Langue : English
Type : Audio
-
Head down (wav version)
26 septembre 2011, par
Mis à jour : Avril 2013
Langue : English
Type : Audio
Autres articles (48)
-
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 (5157)
-
I want to insert an audio at a certain time on the video using moviepy.editor
28 novembre 2022, par Khong Phai HexI want to insert an audio at a certain time on the video using moviepy.editor, how do I do it ?, or do you have another way ? please show me.


Examples like this :enter image description here


I was expecting someone to answer me, because I searched for a long time but couldn't.


-
Start ffmpeg recording at a specified date/time ?
4 janvier 2016, par Andy BIs it possible to execute ffmpeg and start screen capturing at a specific date/time ?
I have an issue with the start-up latency and I can’t synchronize ffmpeg with another application well.
Or, is there some other way to control the time when ffmpeg starts capturing ?
-
Identifying the I frames before and after a given time
2 novembre 2017, par dne202I’m trying to find a method for finding the I Frame before and after an inputted time. So far my method for finding the I frame preceding a time is
ffprobe -select_streams v -show_frames -show_entries frame=pkt_pts_time,pict_type -v quiet input.mp4 | awk -F= '/pict_type=/ { if (index($2, "I")) { i=1; } else { i=0; } } /pkt_pts_time/ { if (i && ($2 <= 1)) print $2; }' | head -n 1
Yet this seems to identify the frame after the preceding I frame, not the I frame itself. How do I get it to output the pkt_pts_time of the actual I frame ?