
Recherche avancée
Médias (1)
-
Bug de détection d’ogg
22 mars 2013, par
Mis à jour : Avril 2013
Langue : français
Type : Video
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 (3448)
-
batch convert files using ffmpeg and find -exec and parallel
1er février 2021, par Harvey KingFrom another stack exchange post, I came to know that I can batch convert media file with original file name intacted and only change the file extension by using the following


find ./ -name '*.mp4' -exec bash -c 'ffmpeg -i $0 -vn -acodec libmp3lame -ac 2 -ab 160k -ar 48000 ${0/mp4/mp3}' {} \;



Since most computers nowadays have multiple cores, how do I modify the above command, so I can use all 4 cores in the
-exec
part of find thus I can convert 4 media files at the same time ?

I know GNU parallel can do something similar, but I don't know how to combine them into one single command.


Thanks in advance


Harv


-
How to convert multiple 360 images to video
9 août 2021, par Mashpy RahmanI need to convert multiple 360 images to video. Images will rotate from left to right. As like as this -
https://www.youtube.com/watch?v=99gXgkkFtA0


I tried to do this using ffmpeg. but failed. Can you give me any idea or any website service link that I can make videos from 360 images.


-
convert any audio file to ogg without ffmpeg in php
29 janvier 2014, par krishnaTORQUEI am building a audio site using php. sadly bluehost and hostgator dont support ffmpeg and FF low virsion dont support mp3.
So, anybody know how to convert any audio file ogg without ffmpeg ?