
Recherche avancée
Autres articles (102)
-
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 -
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 (...) -
Emballe médias : à quoi cela sert ?
4 février 2011, parCe plugin vise à gérer des sites de mise en ligne de documents de tous types.
Il crée des "médias", à savoir : un "média" est un article au sens SPIP créé automatiquement lors du téléversement d’un document qu’il soit audio, vidéo, image ou textuel ; un seul document ne peut être lié à un article dit "média" ;
Sur d’autres sites (6899)
-
Moving ffmpeg from root to user/local
25 janvier 2015, par Edward MeaderdsI noticed that when I followed a guide to install ffmpeg (some time ago), that all of the scripts i want to use, say that ffmpeg need to be in the /usr/local/bin/ffmpeg mine is in root, how do I move the folder to the correct location without messing anything up ? My server is centos 6.5
-
avfilter/avf_avectorscope : stop making output fully transparent
7 août 2015, par Paul B Mahol -
FFMPEG How to overwrite existing file without making a copy ?
13 août 2022, par Dresden21I am using this command to add a watermark to all videos in a file :
for %i in ("*.mp4") do ffmpeg -i "%i" -i wm.png -filter_complex "overlay=main_w/2-overlay_w/2" -codec:a copy "file% ni.mp4"


It makes a copy of each video when it's done. How can I make it overwrite the current videos so I don't get a bunch of copies ? I'd like each file to be overwritten with the new changes.