
Recherche avancée
Médias (1)
-
The Great Big Beautiful Tomorrow
28 octobre 2011, par
Mis à jour : Octobre 2011
Langue : English
Type : Texte
Autres articles (6)
-
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 (...) -
D’autres logiciels intéressants
12 avril 2011, parOn ne revendique pas d’être les seuls à faire ce que l’on fait ... et on ne revendique surtout pas d’être les meilleurs non plus ... Ce que l’on fait, on essaie juste de le faire bien, et de mieux en mieux...
La liste suivante correspond à des logiciels qui tendent peu ou prou à faire comme MediaSPIP ou que MediaSPIP tente peu ou prou à faire pareil, peu importe ...
On ne les connais pas, on ne les a pas essayé, mais vous pouvez peut être y jeter un coup d’oeil.
Videopress
Site Internet : (...) -
Sélection de projets utilisant MediaSPIP
29 avril 2011, parLes exemples cités ci-dessous sont des éléments représentatifs d’usages spécifiques de MediaSPIP pour certains projets.
Vous pensez avoir un site "remarquable" réalisé avec MediaSPIP ? Faites le nous savoir ici.
Ferme MediaSPIP @ Infini
L’Association Infini développe des activités d’accueil, de point d’accès internet, de formation, de conduite de projets innovants dans le domaine des Technologies de l’Information et de la Communication, et l’hébergement de sites. Elle joue en la matière un rôle unique (...)
Sur d’autres sites (3539)
-
What do I need to use ffmpeg to convert .mov file to webm ?
27 février 2020, par BStratoGI’m trying to convert .mov files to .webm using ffmpeg from terminal on my Mac. However I don’t really get what I should install to complete the conversion : I’ve installed libvpx
brew install libvpx
I’ve installed ffmpeg
brew install ffmpeg
But still when I’m trying to convert file like this
ffmpeg -i vid.mov -c:v libvpx -b:v 2000 vid.webm
I’m getting this error :
Automatic encoder selection failed for output stream #0:0. Default encoder for format webm (codec vp8) is probably disabled. Please choose an encoder manually. Error selecting an encoder for stream 0:0
What should I do then ? how do I enable default encoder ? is there something I should do differently or something more I need to install ?
-
How to pipe ffmpeg output to ImageMagick's convert tool ?
30 décembre 2020, par Donny V.After a lot of searching I have come up with this to pipe a frame from ffmpeg to imagemagick's convert tool.


ffmpeg -y -ss 00:02:01 -i ...\pano.mp4 -frames:v 1 -f png - | convert -sharpen 0x1 ...\pano_00_02_01.png



I keep getting this error message.


[NULL @ 000002e6cd1e00c0] Requested output format 'png' is not a suitable output format
pipe:: Invalid argument



I have checked for png support using
ffmpeg -format
and its listed aspng_pipe
.

I'm using ffmpeg version 4.3.1-2020-11-19-full_build
https://www.gyan.dev/ffmpeg/builds/


-
Batch convert wav to m4a files using ffmpeg
26 avril 2021, par Ben HardyI'm trying to batch convert thousands of wav files into 96k m4a files on Mac OS Mojave using ffmpeg in the terminal.

I'm trying to use the following code :

for f in *.wav; do ffmpeg -i "$f" -c:a libfdk_aac -b:a 96k “${f%.wav}.m4a”; done

I'm being given the following error :

Unable to find a suitable output format for '“file.m4a”'
“file.m4a” : Invalid argument

Can anyone help ?