
Recherche avancée
Médias (1)
-
Bug de détection d’ogg
22 mars 2013, par
Mis à jour : Avril 2013
Langue : français
Type : Video
Autres articles (52)
-
Submit bugs and patches
13 avril 2011Unfortunately a software is never perfect.
If you think you have found a bug, report it using our ticket system. Please to help us to fix it by providing the following information : the browser you are using, including the exact version as precise an explanation as possible of the problem if possible, the steps taken resulting in the problem a link to the site / page in question
If you think you have solved the bug, fill in a ticket and attach to it a corrective patch.
You may also (...) -
Les autorisations surchargées par les plugins
27 avril 2010, parMediaspip core
autoriser_auteur_modifier() afin que les visiteurs soient capables de modifier leurs informations sur la page d’auteurs -
Publier sur MédiaSpip
13 juin 2013Puis-je poster des contenus à partir d’une tablette Ipad ?
Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir
Sur d’autres sites (15075)
-
Anomalie #4272 : Vignettes considérée comme orphelins lors de la suppression des documents inutilisés
11 février 2019, par Fabrice VéronneauDiscussions sur le forum à ce sujet
https://forum.spip.net/fr_271022.html
https://forum.spip.net/fr_270796.html?debut_forums=%40270837#forum270837 -
Anomalie #2749 (Fermé) : Problème de cookie
21 mars 2013, par guytarr °il y a bien http://forum.spip.net/fr_248457.html mais rien trouvé dans forum ou sur les listes de "récent".
-
Convert image sequence to video using ffmpeg and list of files
13 juin 2020, par rensaI have a camera taking time-lapse shots every 2–3 seconds, and I keep a rolling record of a few days' worth. Because that's a lot of files, I keep them in subdirectories by day and hour :



images/
 2015-05-02/
 00/
 2015-05-02-0000-02
 2015-05-02-0000-05
 2015-05-02-0000-07
 01/
 (etc.)
 2015-05-03/




I'm writing a script to automatically upload a timelapse of the sunrise to YouTube each day. I can get the sunrise time from the web in advance, then go back after the sunrise and get a list of the files that were taken in that period using
find
:


touch -d "$SUNRISE_START" sunrise-start.txt
touch -d "$SUNRISE_END" sunrise-end.txt
find images/"$TODAY" -type f -anewer sunrise-start.txt ! -anewer sunrise-end.txt




Now I want to convert those files to a video with
ffmpeg
. Ideally I'd like to do this without making a copy of all the files (because we're talking 3.5 GB per hour of images), and I'd prefer not to rename them to something likeimage000n.jpg
because other users may want to access the images. Copying the images is my fallback.


But I'm getting stuck sending the results of
find
toffmpeg
. I understand that ffmpeg can expand wildcards internally, but I'm not sure that this is going to work where the files aren't all in one directory. I also see a few people usingfind
's--exec
option withffmpeg
to do batch conversions, but I'm not sure if this is going to work with image sequence input (as opposed to, say, converting 1000 images into 1000 single-frame videos).


Any ideas on how I can connect the two—or, failing that, a better way to get files in a date range across several subdirectories into
ffmpeg
as an image sequence ?