[Tutor] Parse MPL files

2011-01-07 Thread PyProg PyProg
Hi all, I'm looking for a way to parse MPL files (.MPL or .mpl extension). These files are contained in the tree of some cameras that support the AVCHD ... and some cameras filming with a stream mpeg-ts. I know a person who seeks to recover the data contained in these files. MPL (or .mpl). The da

Re: [Tutor] Parse MPL files

2011-01-07 Thread Corey Richardson
On 01/07/2011 05:16 PM, PyProg PyProg wrote: > Hi all, > > I'm looking for a way to parse MPL files (.MPL or .mpl extension). > These files are contained in the tree of some cameras that support the > AVCHD ... and some cameras filming with a stream mpeg-ts. > > I know a person who seeks to reco

Re: [Tutor] Parse MPL files

2011-01-07 Thread Corey Richardson
On 01/07/2011 06:29 PM, PyProg PyProg wrote: > 2011/1/7 Corey Richardson : > > Hi, > > Thanks for your response. > >> A google search yields no results for one. If you know the structure of >> the MPL file, you can write your own parser. Look through the file with >> a hex editor like Bless firs

Re: [Tutor] Parse MPL files

2011-01-08 Thread Alan Gauld
Parts of the data is inaccessible (very large parts in fact).The structure is like that: It is binary data so you need to open the file with a b flag (rb or wb) and you will probably need to use the struct module to convert the binary data into normal Pyython data types. Search the internet

Re: [Tutor] Parse MPL files

2011-01-08 Thread Walter Prins
On 7 January 2011 22:16, PyProg PyProg wrote: > Hi all, > > I'm looking for a way to parse MPL files (.MPL or .mpl extension). > These files are contained in the tree of some cameras that support the > AVCHD ... and some cameras filming with a stream mpeg-ts. > I've only been able to locate this

Re: [Tutor] Parse MPL files

2011-01-08 Thread Alan Gauld
"Walter Prins" wrote I'm looking for a way to parse MPL files (.MPL or .mpl extension). These files are contained in the tree of some cameras that support the AVCHD ... and some cameras filming with a stream mpeg-ts. Try this for a starter for 10 http://eiman.tv/misc/flashdump.txt I