You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
An AAF File (Advanced Authoring Format) is a media and data interchange file format for film and video post production (More here)
The reason it might be relevant here is that it's a file format that 'is basically a FAT32 filesystem in a file and AAF uses “directories” as classes and “files” to store property metadata.' (Source)
Not totally familiar with the technical particulars of FAT32 but I wonder the possibility of using node-fat32 to look at an .aaf file similar to how you might work with, for instance /dev/disk2?
The text was updated successfully, but these errors were encountered:
Hi @communque, sounds like it should be possible.
I've not had much time the past weeks, and prob. won't have much time in the coming weeks either, so I'm afraid the only thing I can offer is advice.
So, this module is somewhat far from a working FAT32/16/12 driver – I've been planning to rewrite a bunch of this, with an API equivalent to node-exfat. That would allow you to easily implement your own "device" to read the FAT fs inside the AAF, if I understand the file format correctly.
But since this module is in a rather desolate state atm, I wouldn't recommend trying it with this, unless you want to invest a bit of time into it (PRs are welcome!).
There should be more functional FAT32 drivers on npm, maybe natevw/fatfs could do the trick (it also lets you define your own block device driver as far as I know).
Well your advice is already pretty enlightening. Looking at natvw/fatfs now. Hopefully it'll start making sense. Thank you for the followup. Looking forward to seeing what you come up with.
An AAF File (Advanced Authoring Format) is a media and data interchange file format for film and video post production (More here)
The reason it might be relevant here is that it's a file format that 'is basically a FAT32 filesystem in a file and AAF uses “directories” as classes and “files” to store property metadata.' (Source)
Not totally familiar with the technical particulars of FAT32 but I wonder the possibility of using node-fat32 to look at an .aaf file similar to how you might work with, for instance /dev/disk2?
The text was updated successfully, but these errors were encountered: