Click here to Skip to main content
Licence CPOL
First Posted 20 Nov 2006
Views 35,240
Downloads 762
Bookmarked 32 times

Repair RealMedia Files

By | 3 Jan 2007 | Article
Check and fix errors, rebuild index chunks, cut real media files.
Sample Image - RealMedia.png

Introduction

I have encountered too many erroneous real media files. For a long time I searched RM fixing tools on the Web, but the fixed results are not always good. Finally, when I found RealMedia File Format Reference, I decided to make such a tool by myself.

Read and Write Real Media Files

The RealMedia File Format is defined in the Format.xml file. It is deserialized into a Format object, which contain RecordDefs and FieldDefs. Then some generalized methods are used to read and write real media files according to its format definition.

Check and Fix Errors

There are some common errors in a real media file.

Problem: Some Portion of the File Can't be Played

  • Cause: There are bad packets in the DATA chunk.
  • Symptom: There are decoding errors.
  • Cause: The DATA chunk's size value is not correct.
  • Symptom: The chunk that follows DATA chunk is not an INDX chunk.
  • Cause: The DATA chunk's num_packets value is not correct.
  • Symptom: DATA chunk's size value and calculated size mismatch.

Fix: Recover all media packets.

Problem: Player Can't Seek in the File

  • Cause: The INDX chunks are corrupted or nonexistent.
  • Symptom: The number of INDX chunks is less than the number of MDPR chunks.

Fix: Rebuild index chunks.

The operations also apply to RMVB files.

Using the following steps:

  1. Recover all packets
  2. Remove invalid chunks if there are any
  3. Rebuild index chunks

It is possible to give a maximum fix for all fixable real media files.

The Algorithm of Recovering all Media Packets

The pseudo-code is as follows:

read a packet
if(the packet is good)
{
    collect the packet
}
else
{
    remember the bad point
    find synchronized points using INDX chunks
    backtrack to some recoverable point
    search packets between bad point and recoverable point
    go on reading from recoverable point
}

History

  • 2006-11-17
    • Load and list chunks and their fields
  • 2006-11-18
    • Load and list media packets and index records
  • 2006-11-19
    • Check and fix errors
  • 2006-11-20
    • Show MDPR chunk's type_specific_data
    • Cut out a portion of the media file. Not perfect, need help!
  • 2006-11-21
    • Fixed some bugs
  • 2006-11-22
    • Recover all media packets
  • 2006-11-23
    • Improved the efficiency of backtracking in recovery
    • Search packets in corrupted area to recover more
  • 2006-11-25
    • Remove dummy packets
    • Search packets if synchronized point is not found
  • 2006-12-23
    • Read packets only when needed, open file is now fast
    • Recover Index Chunk before recovering packets
  • 2007-01-04
    • Use temporary file to store recovered packets, memory usage is greatly reduced

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)

About the Author

Liu Junfeng

Software Developer

China China

Member



Sign Up to vote   Poor Excellent
Add a reason or comment to your vote: x
Votes of 3 or less require a comment

Comments and Discussions

 
You must Sign In to use this message board. (secure sign-in)
 
Search this forum  
 FAQ
    Noise  Layout  Per page   
  Refresh
QuestionReal Media Decoding Encoding Pinmemberalionline22:51 24 Jan '07  
Generaldisk i/o rather memory manipulation PinmemberUnruled Boy16:52 27 Nov '06  
GeneralRe: disk i/o rather memory manipulation Pinmemberdfer0:15 28 Nov '06  
NewsRe: disk i/o rather memory manipulation PinmemberLiu Junfeng1:24 4 Jan '07  
OK, finished.
GeneralRe: disk i/o rather memory manipulation Pinmemberdfer10:48 6 Jan '07  
JokeShaFa..of course cool stuff.. Pinmemberdfer10:54 24 Nov '06  

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.

Permalink | Advertise | Privacy | Mobile
Web01 | 2.5.120529.1 | Last Updated 4 Jan 2007
Article Copyright 2006 by Liu Junfeng
Everything else Copyright © CodeProject, 1999-2012
Terms of Use
Layout: fixed | fluid