หน่วยความจำของวิดีโอมีจำนวนหน่วยความจำเท่าไร [ปิด]


3

ขนาดเฉลี่ยของไฟล์วิดีโอความละเอียด 480p 1 ชั่วโมงคือเท่าไร แล้วประมาณ 720p หรือ 1080p ล่ะ ทำไมขนาดของไฟล์เหล่านี้ถึงเพิ่มขึ้นอย่างรวดเร็ว?

ฉันอยากรู้ว่าคุณสามารถคำนวณขนาดได้มีสูตรบางอย่างไหม

การเข้ารหัสมีผลกับขนาดไฟล์อย่างไร


3
เมื่อคุณพูดว่า "memory" คุณหมายถึง "storage" หรือไม่
Dennis Williamson

คำตอบ:


8

คำถามนี้คลุมเครืออย่างไม่น่าเชื่อเมื่อพิจารณาว่ามีตัวแปรหลายตัว อย่างไรก็ตามนี่คือสิ่งที่ฉันพบในเว็บไซต์เกี่ยวกับวิดีโอ Iphone ที่บันทึกมาตรฐาน 1280x720p และ 640x480p (ฉันรู้ว่า NTSC มาตรฐานคือ 720x480 แต่เขาสามารถแทนที่ 640 ด้วย 720 และสูตรจะยังคงทำงานอยู่)

ขึ้นอยู่กับ:

Frame size K = ( [Pixel Width x Pixel Height x Bit Depth] / 8 ) / 1024
Where 8 represents an 8-bit byte, and 1024 equals the number of bytes per kilobytes.

To determine the file size of one second of uncompressed video, multiply the image size by the number of frames per second (fps).

To determine how compression affects file size, divide the file size by the compression ratio.

480P น่าจะเป็น:

( [640 x 480 x 24] / 8 ) / 1024 = 900 KB / frame

900KB/frame x 30 frames/sec = 27000 KB/sec

27000 KB/sec  / 40 compression ratio = 675 KB/sec compressed

675 KB/sec * 250 min * 60 s / min * 1 MB / 1024 KB  * 1GB / 1024 MB = 9.66 GB (39 MB / min)

720P น่าจะเป็น:

( [1280 x 720 x 24] / 8 ) / 1024 = 2700 KB / frame
2700 KB/frame x 30 frames/sec = 81000 KB/sec

81000 KB/sec  /  40 compression ratio = 2025 KB/s compressed

2025 KB/sec compressed * 250 min * 60 s / min * 1 MB / 1024 KB  * 1GB / 1024 MB = 28.97 GB (118 MB / min)

If a higher 60:1 compression ratio is used by the more powerfull iPhone 4: 79 MB / min

แหล่งที่มาฉันจะโพสต์มากขึ้นถ้าฉันพบสิ่งใดใน 1080P หรือคุณสามารถใช้สูตรข้างต้นดูเหมือนว่าจะค่อนข้างแข็ง

โดยการใช้ไซต์ของเรา หมายความว่าคุณได้อ่านและทำความเข้าใจนโยบายคุกกี้และนโยบายความเป็นส่วนตัวของเราแล้ว
Licensed under cc by-sa 3.0 with attribution required.