I can't seem to get my videos uploaded to youtube correctly, the video always comes out grey.
For reference, my avs script and x264 command line:
hd.avs:
game = AVISource("ffv1.avi", pixel_type="RGB24").trim(0,3600).ChangeFPS(25).crop(0,7,0,-9)
factor = (game.height > 540) ? 1 : \
(game.height > 270) ? 2 : \
(game.height > 180) ? 3 : 4
game = game.PointResize(game.width * factor, game.height * factor)
game = (game.width < game.height * 4 / 3) ? \
game.PointResize(game.height * 4 / 3, game.height) : \
game.PointResize(game.width, game.width * 3 / 4)
game = game.PointResize(game.width * 2, game.height * 2)
frame_rate=Round(game.framerate)
logo = ImageSource("C:\Users\cdombroski\Documents\TASVideos\logo.png", end=round(2 * frame_rate - 1), fps=game.FrameRate).AudioDub(BlankClip(length=round(2 * frame_rate - 1), fps=game.FrameRate, audio_rate=game.AudioRate, channels=game.AudioChannels))
logo = Lanczos4Resize(logo, game.width, game.height, 0, (logo.width / float(game.width) * game.height - logo.height) / -2, logo.width, logo.width / float(game.width) * game.height)
subtitle1_start=10
subtitle2_start=15
subtitle_length=5
last = logo ++ game
Subtitle("Journey to Silius in 13:58.00\nby Exim", align=8, first_frame=frame_rate * subtitle1_start, last_frame=frame_rate * subtitle_length + frame_rate * subtitle1_start - 1, text_color=$00ffffff, halo_color=$00000000, lsp=1, size=84)
Subtitle("This is a tool-assisted recording.\nFor details, visit http://TASVideos.org/", align=8, first_frame=frame_rate * subtitle2_start, last_frame=frame_rate * subtitle_length + frame_rate * subtitle2_start - 1, text_color=$00ffffff, halo_color=$00000000, lsp=1, size=84)
ConvertToYV24(chromaresample="POINT", matrix="PC.601")
ConvertToYV12(chromaresample="POINT", matrix="PC.601")
encode:
../../../../Downloads/x264.exe --qp 0 --keyint 60 --fullrange on --output hd.mp4 hd.avs
This gives the video at:
http://www.youtube.com/watch?v=BAW3rcjJ7qw
I also tried a 25fps version:
http://www.youtube.com/watch?v=vb9rAta7eWA