-
Notifications
You must be signed in to change notification settings - Fork 36
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
How to preserve link to source files after downloading an aaf from the server? #111
Comments
The AAF Edit Protocol says relative paths are supported. If pro tools supports them is another story. I'm not entirely sure the syntax, the spec says to follow RFC 2396. Unfortunately I don't have access to pro tools to test. |
Hi, I try to necro-bump this issue, but I'm facing the same "problem". I also hate that Logic Pro is exporting all the wav files in a directory called "Audio Files" (let's start hating the use of the space...). Two songs exported? The second is "Audio Files 2". Completely idiot... So I wrote a pyaaf2 script to change the AAF file to change this path. It took a while but I managed to make it work (so now I can move and rename the dir with the wav files where I like) but I ended not being able to "relativify" the paths... None of the commented ones are working:
There's something I miss in how I write the path? Script attached (I had to add .txt...) and full code copied below if someone would need it. Matteo
|
Just for reference.
|
This may be a basic question. I'm pretty new to aaf files in general and am having trouble understanding this part.
We're building an aaf file server-side, from WAV files. We then let the user download a zip that includes the aaf, and corresponding wav files. The problem is, once the user downloads it, the link is wrong. For example, a SourceMob has a locator object, with a urlstring pointing to the absolute path of the wav file on the server. Is there a way to set that locator to a path, relative to the aaf file? (Ex.
./source-wav-1.wav
) Or is there another solution to this problem that I'm missing?Logic Pro seems to handle it best, prompting the user to select the location of files it can't find. Pro Tools just gives an error.
The text was updated successfully, but these errors were encountered: