
Recherche avancée
Médias (1)
-
GetID3 - Bloc informations de fichiers
9 avril 2013, par
Mis à jour : Mai 2013
Langue : français
Type : Image
Autres articles (106)
-
Websites made with MediaSPIP
2 mai 2011, parThis page lists some websites based on MediaSPIP.
-
Ajouter des informations spécifiques aux utilisateurs et autres modifications de comportement liées aux auteurs
12 avril 2011, parLa manière la plus simple d’ajouter des informations aux auteurs est d’installer le plugin Inscription3. Il permet également de modifier certains comportements liés aux utilisateurs (référez-vous à sa documentation pour plus d’informations).
Il est également possible d’ajouter des champs aux auteurs en installant les plugins champs extras 2 et Interface pour champs extras. -
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 (...)
Sur d’autres sites (6189)
-
FFmpeg - Commands to convert videos to be played on Android devices
22 février 2016, par AlirezaI have to convert videos on the server-side to have a good video streaming just like what Instagram does. Videos must be played without any problem on Android devices (API 16+) from URL.
Note : Native Android
MediaPlayer
cannot play some videos.The currently command that I’m using is :
-profile:v Main -level 3.0 -ar 44100 -ac 1 -b:a 64k -b:v 500k -s 640x640 -r 25 -ar 44100
The question is, what is the best commands to reach my goal ?
-
Building a backend that processes (& renders) videos [closed]
26 mai 2020, par nils- 

- How would I go about creating an endpoint to merge Sound-Files and Images/GIFs into an mp4 Video in a Node backend ?
-
Is there a simple library for that or would I have to use ffmpeg commands ?
-
Right now I set up my database using Cloud Firestore - would it make sense to later on publish the whole backend onto Firebase ?









Essentially I'd like to have a platform that allows people to upload music onto YouTube (So videos with sound and preferably animated videos, so not just still images).


-
How to get a .bat file to process multiple videos ?
29 avril 2019, par L JI’m simply trying to generate screen captures (every 2 seconds) from a large folder of videos. I already have code which works when I drag a single file onto it :
"c:\program files\ffmpeg\bin\ffmpeg.exe" -i %1 -vf fps=fps=1.0/2.0 -qscale:v 2 "%~n1 - %%05d.jpg"
pauseBut this doesn’t work when I drag multiple videos onto it.
I have a poor understanding of ffmpeg scripting, so could anyone please give me the exact code to make this work ?