I'm looking for information on the detailed structure/format of a
ProTools session file. I'm trying to develop software that would take a
session, rip it apart and put it back together in a specific way. I do
audio post production and am trying to automate some of it.
"Jim Cline" <jcline@timberwolfpress.com> wrote in message
news:jcline-5027E3.11463616062005@newssvr30-ext.news.prodigy.com...
> I'm looking for information on the detailed structure/format of a
> ProTools session file. I'm trying to develop software that would take a
> session, rip it apart and put it back together in a specific way. I do
> audio post production and am trying to automate some of it.
>
> Thanks for any information or suggestions.
>
> - Jim Cline
In article <jcline-5027E3.11463616062005@newssvr30-ext.news.prodigy.com> jcline@timberwolfpress.com writes:
> I'm looking for information on the detailed structure/format of a
> ProTools session file.
I suspect that if this was easily obtained information, there would be
a lot of programs that could import and export ProTools session files.
It's "secrets" like this that keep DAW projects from being completely
transportable from one system to another.
I'm sure that you can do a certain amount of reverse engineering to
find out how chunks of audio are numbered and arranged in time, but
there's more to it than that.
Why don't you call Digidesign and ask for the documentation? <g>
--
I'm really Mike Rivers (mrivers@d-and-d.com)
However, until the spam goes away or Hell freezes over,
lots of IP addresses are blocked from this system. If
you e-mail me and it bounces, use your secret decoder ring
and reach me here: double-m-eleven-double-zero at yahoo
Rail Jon Rogut wrote:
> Since 5.1.1 the session file is encrypted.
>
> Rail
> --
> Recording Engineer/Software Developer
> Rail Jon Rogut Software
> http://www.railjonrogut.com > mailto:rail@railjonrogut.com
>
Very nice indeed...
Can we do it on a mac????
"Rail Jon Rogut" <railro@earthlink.net> wrote in message
news:U6mse.5718$VK4.3991@newsread1.news.atl.earthlink.net...
> Since 5.1.1 the session file is encrypted.
Yes.. but here is the decryption code...
byte d = pBuffer[19] * 39;
byte s = pBuffer[19] * 29;
pBuffer[19] = 0;
for (DWORD i=20; i<dwSize; i++)
{
d += s;
pBuffer[i] ^= d;
}
You are about to answer a thread that has been inactive for more than 6 months. If you still wish to proceed, please ensure that your posting is original and does not duplicate or overlap any prior responses to this thread.