
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)
-
How do I convert a whole folder worth of clips from webm to mp4 ?
11 juillet 2022, par user19530122For the record I do not know much about code or scripting so hopefully my question makes sense. So I have a bunch of HDR clips from my PS5 saved on a USB, I've managed to find a script to use on powershell to convert a clip from webm to mp4, only issue is I have to do this manually one by one.


This is the script I found :
ffmpeg -i S127.webm -vf zscale=t=linear:npl=100,format=gbrpf32le,zscale=p=bt709,tonemap=tonemap=hable:desat=0,zscale=t=bt709:m=bt709:r=tv,format=yuv420p -c:v libx264 -crf 17 -preset slower S127.mp4


(the file name being S127 in this case) I was wondering if there is a script I can use to convert all clips in a folder at once (or preferably one by one) so I can let my computer do all the converting while I am away rather than having to do this one by one ?


Thanks !


-
Double Extension, find and convert
17 février 2020, par Daniel PetersIm trying to find and convert all mkv’s in a folder and sub directories on ubuntu, ive tried various scripts and commands but cant get one that works fully, this is another one that sort of works but its outputs the file as
samplevideo.mkv.mp4 how do i get rid of the .mkv so it renames to samplevideo.mp4find /home/storage/folder -type f -name *.mkv -exec ffmpeg -i {} -c:v libx264 -preset ultrafast -minrate 4.5M -maxrate 4.5M -bufsize 9M -c:a ac3 {}.mp4 \;
-
ffmpeg - convert .exr image sequence (linear colorspace) to sRGB ?
27 mai 2016, par Gambit2007I was just wondering - what would be the best way to convert an .exr sequence in a linear colorspace to an .mp4 file with an sRGB colorspace ?
EDIT (more details)
So the sequence i’m trying to convert is a 16bit .exr sequence with an RGB color space. I want to convert it to an H264/H265 .mp4
My full command :ffmpeg -y -loglevel info -threads 0 -f lavfi -i aevalsrc=0
-start_number 0011 -i input.%04d.exr -preset medium -vcodec libx265 -ar 48000 -acodec aac -shortest -strict experimental -sn -vsync 1 -pix_fmt yuv420p -b:v 30000000 -movflags +faststart -metadata title=’test.’ -x265-params
hightier=0:pmode=1:wpp=1:tune=fastdecode:bitrate=30000:fps=60:colorprim=bt709:transfer=bt709:colormatrix=bt709:keyint=360:min-keyint=180:vbv-bufsize=30000:vbv-maxrate=30000:scenecut=0’Thanks !