
Recherche avancée
Autres articles (73)
-
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 (...) -
MediaSPIP v0.2
21 juin 2013, parMediaSPIP 0.2 est la première version de MediaSPIP stable.
Sa date de sortie officielle est le 21 juin 2013 et est annoncée ici.
Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
Comme pour la version précédente, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...) -
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 (6437)
-
Creating complicated ffmpeg videos (like those Facebook friendship videos) [on hold]
26 avril 2018, par onassarI’m trying to understand the technology used to create videos like these :
https://www.youtube.com/watch?v=b3PBN3zC4M0How are these kinds of things put together (eg what technologies) ? Want to learn more about this, and am assuming it’s related to ffmpeg, but I’m a bit of my depth.
Appreciate anything, including even just a list of the possible different technologies used to create something like that.
-
Get subdirectory name in bat FOR /R loop and name file accordingly
23 février 2021, par CatTheGrimReaperI know this question sounds like a duplicate, but I couldn't find an answer in all the similar questions.
I have this code in a .bat file :


for /R "C:\Users\XX\XXX\XXXX\XY" %%F in (*.m*) do (
 ffmpeg -i %%F -vf "setpts=N/TB,fps=1,select=not(mod(n\,29)), crop=min(in_w\,in_h):min(in_w\,in_h), scale=1024:1024" -vsync 0 -frame_pts 1 -f image2 %%F-"frame-"%%3d.jpg
 )



Which takes every video file in the given path (C :\Users\XX\XXX\XXXX\XY), splits it into frames (every 29th frame) and saves those frames as "FILENAME-frame-FRAMENUMBER". This works very well, but I'd like to name the file "SUBDIRECTORY-frame-FRAMENUMBER". Is this possible ? Every answer I read had the subdirectory name as its own variable (so in my case in place of the %%F), but I need that %%F to modify each file with FFMPEG.


I appreciate any help ! Thanks in advance.


-
Copy multiple sections of an .mp3 file to a new .mp3 file with ffmpeg [duplicate]
28 août 2021, par Nemo XXXI'd like to copy multiple sections of an .mp3 file to a new .mp3 file using a single
ffmpeg
command.
For example, I only want to keep the following sections of a 60 minute .mp3 file :

00:00:55 00:05:34 00:04:39 || 55.7173 334.888 279.17069999999995
00:16:31 00:38:29 00:21:57 || 991.912 2309.11 1317.198
00:41:29 00:45:04 00:03:34 || 2489.84 2704.37 214.52999999999975



(The values are
start, end, duration
.)

How can I achieve this with a single
ffmpeg
command on a Windows machine ?
(I already know how to create 3 separate .mp3 files and to concatenate them.)