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

Prochaine révision
Révision précédente
articles:informatique:encodage_video [07/09/2020 12:27] – créée 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> 
 +ffmpeg -i <input> -c:v libx265 -crf <q> -preset slower -profile:v main422-10 -pix_fmt yuv422p10le -y <output> 
 +</code> 
 +====== AV1 (ffmpeg aomenc) ======
  
-''fmpeg -i <input> -c:v libx265 -crf <q> -preset slower -profile:v main422-10 -pix_fmt yuv422p10le -y <output>''+<code bash> 
 +ffmpeg -i <input> -c:v libaom-av1 -crf <q> -b:v -pix_fmt yuv422p10le -y <output> 
 +</code>
  
-====== AV1 (SVT-AV1) ======+====== 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.1599481640.txt · Dernière modification : 07/09/2020 12:27 de antoineve