Outils pour utilisateurs

Outils du site


articles:informatique:encodage_video

Différences

Ci-dessous, les différences entre deux révisions de la page.

Lien vers cette vue comparative

Les deux révisions précédentesRévision précédente
Prochaine révision
Révision précédente
articles:informatique:encodage_video [10/09/2020 09:34] – [H.265 (ffmpeg)] antoinevearticles:informatique:encodage_video [15/09/2020 12:01] (Version actuelle) – [Références] antoineve
Ligne 1: Ligne 1:
 :!: WIP :!: WIP
  
-====== H.265 (ffmpeg) ======+====== H.265 (ffmpeg libx265) ======
 <code bash> <code bash>
-fmpeg -i <input> -c:v libx265 -crf <q> -preset slower -profile:v main422-10 -pix_fmt yuv422p10le -y <output>+ffmpeg -i <input> -c:v libx265 -crf <q> -preset slower -profile:v main422-10 -pix_fmt yuv422p10le -y <output>
 </code> </code>
-====== AV1 (SVT-AV1) ======+====== AV1 (ffmpeg aomenc) ======
  
 <code bash> <code bash>
-SvtAv1EncApp -i <input> -w 720 -h 576 --fps 25 -q <q> --output-stat-file /tmp/stat.log --preset 4 -b <output> +ffmpeg -i <input> -c:v libaom-av1 -crf <q> -b:v 0 -pix_fmt yuv422p10le -<output>
-SvtAv1EncApp -i <input> -w 720 -h 576 --fps 25 -q <q> --input-stat-file /tmp/stat.log --preset 4 -b <output>+
 </code> </code>
 +
 +====== VMAF ======
 +<code bash>
 +ffmpeg -hide_banner -loglevel info -i <compare> -i <original> -lavfi libvmaf -f null -
 +</code>
 +====== Références ======
 +
 +  * https://en.wikipedia.org/wiki/AV1
 +  * https://trac.ffmpeg.org/wiki/Encode/AV1
 +  * https://www.realnetworks.com/sites/default/files/vmaf_reproducibility_ieee.pdf
 +  * https://ffmpeg.org/ffmpeg-filters.html#libvmaf
articles/informatique/encodage_video.1599730488.txt · Dernière modification : 10/09/2020 09:34 de antoineve