iEDeaL is an EDL parser designed to extract music track names and their timestamps from Adobe Premiere Pro projects. It analyzes an EDL file and produces a clean list of all music cues used in the timeline.
- C++ compiler (C++11 or later)
- CMake (for generating build files)
- (Optional) Qt or other libraries
Clone the repository and build using CMake:
git clone https://github.com/trippymajo/iEDeaL.git
cd iEDeaL
mkdir build
cd build
cmake ..
cmake --build . # or: cmake --build . --config ReleaseThis will produce an executable (iEDeaL or iEDeaL.exe) inside the build directory.
- Open -> Export
- Pick EDL extension
- Checkbox only audio, uncheck all other
- Pick tracks where audio included
- Click Ok!
- File -> Export
- Pick EDL file
The parser will:
- Read the EDL
- Extract music tracks
- Output timestamps, durations, and clip source data in Text box
This is useful for editors who need to quickly generate a soundtrack list from their Premiere timeline.