17

I need a raw YUV file for research purposes. Neither the size nor the content is critical. Any ideas on where such files exist?

Bob Morris
  • 189
  • 1
  • 1
  • 3

4 Answers4

11

You can find all kinds of YUV files with different formats: here.

Mayur Birari
  • 5,837
  • 8
  • 34
  • 61
Richard
  • 119
  • 1
  • 3
4

You can use ffmpeg to convert any other video type to raw YUV. Your source could be from a DVD home movie, for instance, or perhaps a digital video camera.

Zach
  • 7,730
  • 3
  • 21
  • 26
3

HI try this link

http://trace.eas.asu.edu/yuv/

I also have some YUV files but there is no option to upload.

garima
  • 5,154
  • 11
  • 46
  • 77
1

You can convert anything to YUV using mencoder:

mencoder.exe -of rawvideo clock.avi -o clock.yuv -nosound -ovc raw

You may add -vf swapuv to swap the U and V components if the colrs aren't correct.

Serafeim
  • 14,962
  • 14
  • 91
  • 133