VideoHelp Forum
+ Reply to Thread
Results 1 to 4 of 4
Thread
  1. Member
    Join Date
    May 2016
    Location
    Lithopolis, OH United States
    Search Comp PM
    I am trying to upload videos to meet their standards but what is an good codec? I already have Xvid, K Lite Codec and Combined Community Codec Pack but Youtube has changed a lot and do not any choppy or blurry videos. What should I do?
    Quote Quote  
  2. Have you consulted their guidelines?

    https://support.google.com/youtube/answer/1722171?hl=en

    I use RipBot264 to upload x264 (AVC) video with AAC audio in the MP4 container. but there are many other acceptable methods.

    ...do not (want?) any choppy or blurry videos. What should I do?
    You're responsible for that, not YouTube.
    Quote Quote  
  3. Originally Posted by Guernsey View Post
    I am trying to upload videos to meet their standards but what is an good codec? I already have Xvid, K Lite Codec and Combined Community Codec Pack but Youtube has changed a lot and do not any choppy or blurry videos. What should I do?
    Fastest and least obstructive way to encode for YT is ffmpeg.

    Code:
    @setlocal
    @REM Where to Find ffmpeg
    @set FFMPEG="%CD%\ffmpeg.exe"
    @set /p qpval=Enter QP value (e.g 16, reasonable range 8 - 24, lower = higher quality and higher bitrate!): 
    @echo QP value is: %qpval%
    @set /p delace=Video interlaced? (1=Yes, 0=No): 
    @echo Video is interlaced (1=Yes, 0=No): %delace%
    
    @SET x264opts="qp=%qpval%:vbv_maxrate=40000:vbv_bufsize=20000:open_gop=0:pic_struct=1:aud=1:cabac=1:nal_hrd=vbr:force_cfr=1:threads=auto:stitchable=1:no_psnr=1:no_ssim=1:fullrange=off:overscan=show:colorprim=bt709:transfer=bt709:colormatrix=bt709"
    
    @%ffmpeg% -hide_banner -color_range 2 -i %1 -c:a aac -af "aresample=resampler=soxr:osr=48000:dither_method=0,dynaudnorm=p=1/sqrt(2):m=100:s=12" -b:a 192K -ac 2 -c:v libx264 -preset veryfast -x264opts %x264opts% -x264-params %x264opts% -vf "yadif=1,scale=3840:-2:sws_flags=spline:sws_dither=2:in_range=1:out_range=1,format=pix_fmts=yuv420p" -sn -dn -shortest -movflags faststart -y -f mp4 "%~n1_YT4k.mp4"
    
    @pause
    @endlocal
    Quote Quote  



Similar Threads

Visit our sponsor! Try DVDFab and backup Blu-rays!