
Recherche avancée
Autres articles (72)
-
Modifier la date de publication
21 juin 2013, parComment changer la date de publication d’un média ?
Il faut au préalable rajouter un champ "Date de publication" dans le masque de formulaire adéquat :
Administrer > Configuration des masques de formulaires > Sélectionner "Un média"
Dans la rubrique "Champs à ajouter, cocher "Date de publication "
Cliquer en bas de la page sur Enregistrer -
Le profil des utilisateurs
12 avril 2011, parChaque utilisateur dispose d’une page de profil lui permettant de modifier ses informations personnelle. Dans le menu de haut de page par défaut, un élément de menu est automatiquement créé à l’initialisation de MediaSPIP, visible uniquement si le visiteur est identifié sur le site.
L’utilisateur a accès à la modification de profil depuis sa page auteur, un lien dans la navigation "Modifier votre profil" est (...) -
Configurer la prise en compte des langues
15 novembre 2010, parAccéder à la configuration et ajouter des langues prises en compte
Afin de configurer la prise en compte de nouvelles langues, il est nécessaire de se rendre dans la partie "Administrer" du site.
De là, dans le menu de navigation, vous pouvez accéder à une partie "Gestion des langues" permettant d’activer la prise en compte de nouvelles langues.
Chaque nouvelle langue ajoutée reste désactivable tant qu’aucun objet n’est créé dans cette langue. Dans ce cas, elle devient grisée dans la configuration et (...)
Sur d’autres sites (6127)
-
Fetch an input file dynamically in a batch file to perform operations on it
25 mars 2019, par 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 janvier 2018, par 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 avril 2021, par 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
.