View Single Post
Old 26th December 2010, 07:20   #1  |  Link
Trafalgar Law
Registered User
 
Join Date: Jun 2010
Posts: 7
Warning in resize

I have the following file:

Code:
General
Nombre completo                  : D:\source.mp4
Formato                          : MPEG-4
Formato del perfil               : Base Media
ID Códec                         : isom
Tamaño del archivo               : 864MB
Duración                         : 24min.
Tasa de bits total               : 5 023Kbps
Fecha de codificación            : UTC 2009-05-29 06:58:10
Fecha de la etiqueta             : UTC 2009-05-29 06:58:10

Video
ID                               : 1
Formato                          : AVC
Formato/Info                     : Advanced Video Codec
Formato del perfil               : High@L4.1
Ajustes del formato, CABAC       : No
Ajustes del formato, RefFrames   : 5marcos
ID Códec                         : avc1
ID Códec/Info                    : Advanced Video Coding
Duración                         : 24min.
Tipo de tasa de bits             : Variable
Tasa de bits                     : 4 833Kbps
Ancho                            : 1 440pixeles
Alto                             : 1 080pixeles
Relación de aspecto              : 4:3
Modo de velocidad de cuadro      : Constante
Velocidad de cuadro              : 23,976fps
Estándar                         : NTSC
ColorSpace                       : YUV
ChromaSubsampling                : 4:2:0
BitDepth/String                  : 8bits
Tipo de exploración              : Progresivo
Bits/(Pixel*cuadro)              : 0.130
Tamaño de pista                  : 831MB (96%)
Idioma                           : Inglés
Fecha de codificación            : UTC 2009-05-29 06:58:10
Fecha de la etiqueta             : UTC 2009-05-29 06:58:10
colour_primaries                 : BT.709-5, BT.1361, IEC 61966-2-4, SMPTE RP177
transfer_characteristics         : BT.709-5, BT.1361
matrix_coefficients              : BT.709-5, BT.1361, IEC 61966-2-4 709, SMPTE RP177

Audio
ID                               : 2
Formato                          : AAC
Formato/Info                     : Advanced Audio Codec
Formato de la versión            : Version 4
This is the script of the first pass

Code:
x264.exe --tune animation --profile high --bframes 16 --ref 1 --no-8x8dct --me dia --subme 3 --trellis 0  --weightb --deblock 1:1 --pass 1 --bitrate 1989 --stats "stats.tmp" --slow-firstpass --thread-input  --aq-mode 0  --direct auto --me esa --level 5.1 --video-filter resize:720,480 --output "C:\Users\CESAR\Documents\Mis descargas\prueba.mp4" "D:\script.avs" 2>log.txt
I'm encoding a two pass. On the first pass I have the following warnings

Code:
resize [warning]: converting from yuyv422 to yuv422p
resize [info]: resizing to 720x480
resize [warning]: converting from yuv422p to yuv420p
Why are these warnings?

Last edited by Trafalgar Law; 26th December 2010 at 07:25.
Trafalgar Law is offline   Reply With Quote