vote up 2 vote down star

I'm looking for an order of magnitude estimate for expected on-disk file size for 1 hour of H.264 encoded HD video transcoded from HDV (HD on a MiniDV tape). I want to archive approximately 100 hours of such content and want to figure out whether I'm looking at a big hard drive, a multi-drive unit like a Drobo, or an enterprise-level storage system.

Edit

To clarify from several good comments, I am developing the software that will use this archived video and will also manage the transcoding from HDV to compressed format (using QuickTime on OS X). This question is for gathering hardware requirements. The video is from HDV and the transcoding does not have to happen in real time. I will not be streaming the video, so I'm looking for compression that maintains as much information as possible form the HDV content. The original HDV video is interlaced, but I can deinterlace it if that would help either file size or quality of the H264 compressed output.

flag

Depends completely ont he bit rate. AVCHD, which is h.264, goes up to 24mbps. Find out the bitrate of the compression stream, and you have your answer. – Adam Davis Mar 31 at 16:58

5 Answers

vote up 3 vote down check

You need to know the bitrate.. Then it's simply bitrate (bits per second) multiplied by number of seconds..

HDV is 25Mb/s, so non-transcoded it would be (I think)..

25 mbits * 3600 sec = 3.125 MB * 3600 sec = 11250 MB*hr ~ 11 GB per hour

The same applies with h.264 footage, although the above might not be as accurate (being variable bitrate and such)

I want to archive approximately 100 hours of such content and want to figure out whether I'm looking at a big hard drive, a multi-drive unit like a Drobo, or an enterprise-level storage system.

First, do not buy an "enterprise-level" storage system (you almost certainly don't need things like hot-swap drives and the same level of support - given the costs)..

I would suggest buying two big drives.. One would be your main drive, another in a USB enclosure, and would be connected daily and mirror the primary system (as a backup)

Drives are incredibly cheap, using the above calculation of ~11 GB/hour, that's only 1.1TB of data (for 100 hours, uncompressed).. and you can buy 2TB drives now..

Drobo, or a machine with a few drives and software RAID is an option, but a single large drive plus backups would be simpler.

Storage is almost a non-issue now, but encode time can still be an issue. Encoding h.264 is very resource-intensive. On a quad-core ~2.5GHz Xeon, I think I got around 60fps encoding standard-def (DVD) to h.264 (compared to around 300fps with mpeg4). I suppose that's only about 50 hours, but it's something worth considering. Also, assuming the HDV is on tapes, it's a 1:1 capture time, so that's 150 hours of straight processing, never mind things like changing tapes, entering metadata, and general delays (sleep) and errors ("opps, wrong tape")

link|flag
9000 megabits gives 1125 megabytes. – joelr Mar 31 at 17:52
Opps, thanks joelr/Barry – dbr Mar 31 at 18:05
thanks, the HDV information is where I should've started. – Barry Wark Mar 31 at 18:06
The math is a bit wrong. 25 mbits * 3600 sec = 3.125 MB * 3600 sec = 11250 MB*hr ~ 11 GB per hour. Uncompressed, as you say. – evilpenguin Mar 31 at 21:33
Another small tip: if you're buying a machine for processing video, go for Intel Core i7. I've compared a PC with i7 to a Mac with quad-core Xeon and the i7 is definitely faster. And I think it's cheaper. – evilpenguin Mar 31 at 21:45
show 1 more comment
vote up 2 vote down

Around 4gb/hr is quite common.

link|flag
vote up 2 vote down

For a good quality x264 encoding of 1060i, done by a computer, not a mobile device, not in real time, you could use a bitrate at about 5 MBps. That means 2250 MB/hour of encoded material. Recommend you deinterlace the footage and compress as progressive.

link|flag
1060i? I think you've combined 1080i60 (1920x1080 pixels, 30fps interlaced, giving 60 fields per second).. although I couldn't agree more with "deinterlace the footage" - interlacing must die.. – dbr Mar 31 at 17:04
Oh, just noticed the question mentioned 1060i first! – dbr Mar 31 at 17:06
If the footage is deinterlaced, would the filesize decrease or is deinterlacing just for quality of the image? – Barry Wark Mar 31 at 17:48
Depends on the framerate. If the framerate is the same, interlaced footage displays half the info that progressive footage does. Interlacing works by refreshing odd and even lines alternatively, that's why most interlaced cameras that produce good quality have twice the fps of progressive ones. – evilpenguin Mar 31 at 21:35
But interlacing is a result of the way old TV CRTs display information. On a computer display, be it LCD, plasma or modern CRT, interlaced footage looks really jagged and bad. Most media players like VLC deinterlace automatically at playback if they detect interlaced footage. – evilpenguin Mar 31 at 21:39
show 2 more comments
vote up 3 vote down

It is whatever size you want it to be, the only thing that changes is quality. If you intend it to be played back on a non-PC device (or a slow PC), you may need to respect a certain profile (standardized set of compression settings that ensure a fixed device can play back the content).

You can see the main H.264 profiles at Wikipedia

While it is highly subjective (and highly dependent on the content being compressed), it is claimed that H.264 can achieve the same quality as DVD MPEG2 using half the bitrate.

link|flag
vote up 3 vote down

It would be a couple of gigs per hour.

MPEG-4 (of which H.264 is a sub-part) define high quality as around 4Mbps. which would be 1.8GB per hour.

This can vary depending on the type of video and the type of compression used.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.