
Recherche avancée
Autres articles (103)
-
Encoding and processing into web-friendly formats
13 avril 2011, parMediaSPIP automatically converts uploaded files to internet-compatible formats.
Video files are encoded in MP4, Ogv and WebM (supported by HTML5) and MP4 (supported by Flash).
Audio files are encoded in MP3 and Ogg (supported by HTML5) and MP3 (supported by Flash).
Where possible, text is analyzed in order to retrieve the data needed for search engine detection, and then exported as a series of image files.
All uploaded files are stored online in their original format, so you can (...) -
Formulaire personnalisable
21 juin 2013, parCette page présente les champs disponibles dans le formulaire de publication d’un média et il indique les différents champs qu’on peut ajouter. Formulaire de création d’un Media
Dans le cas d’un document de type média, les champs proposés par défaut sont : Texte Activer/Désactiver le forum ( on peut désactiver l’invite au commentaire pour chaque article ) Licence Ajout/suppression d’auteurs Tags
On peut modifier ce formulaire dans la partie :
Administration > Configuration des masques de formulaire. (...) -
Qu’est ce qu’un masque de formulaire
13 juin 2013, parUn masque de formulaire consiste en la personnalisation du formulaire de mise en ligne des médias, rubriques, actualités, éditoriaux et liens vers des sites.
Chaque formulaire de publication d’objet peut donc être personnalisé.
Pour accéder à la personnalisation des champs de formulaires, il est nécessaire d’aller dans l’administration de votre MediaSPIP puis de sélectionner "Configuration des masques de formulaires".
Sélectionnez ensuite le formulaire à modifier en cliquant sur sont type d’objet. (...)
Sur d’autres sites (3382)
-
Display progress for each file in a file upload request.
29 août 2013, par blueimpDisplay progress for each file in a file upload request.
-
How do I use FFMPEG to create a WAV file with the same name as the input (m4a) file ?
5 avril 2017, par Joseph PolizzottoI want to use FFMPEG to search for all instances of .m4a files and convert them to .WAV files with the same name.
For example, in my directory I have the following file :
Foo.m4a
After running FFMPEG, I want to have the following files in the same directory :
Foo.m4a
Foo.wavI have tried using
ffmpeg -i *.m4a *.wav
but this command will prompt me to write over all existing WAV files in the same directory (and keep their original file names) and will not save the converted .m4A file to a .WAV file with the same name.
-
How to make ffmpeg delete the original file after changing containers ? (using a send to bat file)
12 mars 2020, par BloggyI’m currently using a bat file in my shell:sendto folder that allows me to right click MKV files and open a cmd window that uses ffmpeg to change containers and produces an mp4 in the same directory as the source file. It works great, but I’d like to automate the process of deleting the original MKVs after (successfully) changing containers, and skipping the recycle bin if possible.
Right now my .bat file is like follows :
"C:\ffmpeg\bin\ffmpeg.exe" -i %1 -codec copy "%~n1.mp4"
I’ve looked it up already but could only find a similar question about batch processing an entire folder and without the sendto part, and I wasn’t sure how to make that work for me.
So if someone could point me towards what to append to it to make it happpen, I’d appreciate it.Thanks ! :)