
Advanced search
Medias (91)
-
Spitfire Parade - Crisis
15 May 2011, by
Updated: September 2011
Language: English
Type: Audio
-
Wired NextMusic
14 May 2011, by
Updated: February 2012
Language: English
Type: Video
-
Video d’abeille en portrait
14 May 2011, by
Updated: February 2012
Language: français
Type: Video
-
Sintel MP4 Surround 5.1 Full
13 May 2011, by
Updated: February 2012
Language: English
Type: Video
-
Carte de Schillerkiez
13 May 2011, by
Updated: September 2011
Language: English
Type: Text
-
Publier une image simplement
13 April 2011, by ,
Updated: February 2012
Language: français
Type: Video
Other articles (75)
-
MediaSPIP v0.2
21 June 2013, byMediaSPIP 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 (...) -
MediaSPIP Core : La Configuration
9 November 2010, byMediaSPIP Core fournit par défaut trois pages différentes de configuration (ces pages utilisent le plugin de configuration CFG pour fonctionner) : une page spécifique à la configuration générale du squelettes; une page spécifique à la configuration de la page d’accueil du site; une page spécifique à la configuration des secteurs;
Il fournit également une page supplémentaire qui n’apparait que lorsque certains plugins sont activés permettant de contrôler l’affichage et les fonctionnalités spécifiques de (...) -
MediaSPIP version 0.1 Beta
16 April 2011, byMediaSPIP 0.1 beta est la première version de MediaSPIP décrétée comme "utilisable".
Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
Pour avoir une installation fonctionnelle, 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 (...)
On other websites (8175)
-
Fetch an input file dynamically in a batch file to perform operations on it
25 March 2019, by Piyush — batch-file, ffmpegI have created a batch-file which uses ffmpeg to extract frames of a video to
.jpg
.ffmpeg -i sample.mp4 -r 5 E:\frames\createdFrames%%d.jpg
It works completely fine and created the desired frames, however I want to give the sample video dynamically, i.e. pass it when the batch file is being executed.
How can I pass the input file dynamically?
If possible, also discuss how to store the file dynamically, i.e pass the directory where I want to store the file when the batch is being executed.
-
How to create a slideshow using ffmpeg with the length of output file based on the audio file
8 January 2018, by NPVI’m trying to create some videos from a certain photos and audio. I’ve been looking for something similar but haven’t figured out yet. My idea looks something like this.
I have some photos, let’s name them a b c d e (all in jpg) and an audio file A.mp3 and an overlay image P.npg
I want to create a slideshow with its length equal the audio file’s length. Photos in the slide can be place randomly. The overlay image is on top of the video.Can anyone help me with this? Thank you guys so much.
-
Passing file name in youtube-dl post-process script without file extension suffix
2 April 2021, by AreteThe documentation for youtube-dl says I can run a post-process command with the
--exec
option.

Using Windows, here is an example I have tried:


youtube-dl --exec "ffmpeg -i {} -ac 2 -c:a libfdk_aac -cutoff 20000 -afterburner 1 -vbr 0 {}.m4a" https://www.youtube.com/watch?v=sw9DlMNnpPM



Note that
{}
passes the file name to the post-process command. For examplefilename.webm
.

The problem is that
{}
includes the file extension.

How can I pass the file name to the post-process command without the file extension?


For example, if I were to convert the video, I would rather avoid getting an output name like
filename.webm.m4a
. Needless to say, I would rather wantfilename.m4a
.