logic2ableton 1.0.1__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- logic2ableton-1.0.1/LICENSE +21 -0
- logic2ableton-1.0.1/PKG-INFO +146 -0
- logic2ableton-1.0.1/README.md +122 -0
- logic2ableton-1.0.1/logic2ableton/__init__.py +1 -0
- logic2ableton-1.0.1/logic2ableton/__main__.py +4 -0
- logic2ableton-1.0.1/logic2ableton/ableton_generator.py +558 -0
- logic2ableton-1.0.1/logic2ableton/cli.py +174 -0
- logic2ableton-1.0.1/logic2ableton/data/DefaultLiveSet.als +0 -0
- logic2ableton-1.0.1/logic2ableton/logic_parser.py +404 -0
- logic2ableton-1.0.1/logic2ableton/models.py +90 -0
- logic2ableton-1.0.1/logic2ableton/plugin_database.py +307 -0
- logic2ableton-1.0.1/logic2ableton/plugin_matcher.py +77 -0
- logic2ableton-1.0.1/logic2ableton/report.py +97 -0
- logic2ableton-1.0.1/logic2ableton/vst3_scanner.py +231 -0
- logic2ableton-1.0.1/logic2ableton.egg-info/PKG-INFO +146 -0
- logic2ableton-1.0.1/logic2ableton.egg-info/SOURCES.txt +27 -0
- logic2ableton-1.0.1/logic2ableton.egg-info/dependency_links.txt +1 -0
- logic2ableton-1.0.1/logic2ableton.egg-info/entry_points.txt +2 -0
- logic2ableton-1.0.1/logic2ableton.egg-info/top_level.txt +1 -0
- logic2ableton-1.0.1/pyproject.toml +45 -0
- logic2ableton-1.0.1/setup.cfg +4 -0
- logic2ableton-1.0.1/tests/test_ableton_generator.py +404 -0
- logic2ableton-1.0.1/tests/test_cli.py +156 -0
- logic2ableton-1.0.1/tests/test_logic_parser.py +199 -0
- logic2ableton-1.0.1/tests/test_models.py +164 -0
- logic2ableton-1.0.1/tests/test_plugin_database.py +112 -0
- logic2ableton-1.0.1/tests/test_plugin_matcher.py +79 -0
- logic2ableton-1.0.1/tests/test_report.py +46 -0
- logic2ableton-1.0.1/tests/test_vst3_scanner.py +40 -0
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2025 Tyler Eveland
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
+
SOFTWARE.
|
|
@@ -0,0 +1,146 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: logic2ableton
|
|
3
|
+
Version: 1.0.1
|
|
4
|
+
Summary: Convert Logic Pro .logicx projects to Ableton Live .als files
|
|
5
|
+
Author-email: Tyler Eveland <j.tyler.eveland@gmail.com>
|
|
6
|
+
License-Expression: MIT
|
|
7
|
+
Project-URL: Homepage, https://github.com/Evilander/logic2ableton
|
|
8
|
+
Project-URL: Repository, https://github.com/Evilander/logic2ableton
|
|
9
|
+
Project-URL: Issues, https://github.com/Evilander/logic2ableton/issues
|
|
10
|
+
Keywords: logic-pro,ableton,daw,converter,music-production
|
|
11
|
+
Classifier: Development Status :: 4 - Beta
|
|
12
|
+
Classifier: Environment :: Console
|
|
13
|
+
Classifier: Intended Audience :: End Users/Desktop
|
|
14
|
+
Classifier: Operating System :: Microsoft :: Windows
|
|
15
|
+
Classifier: Operating System :: MacOS
|
|
16
|
+
Classifier: Programming Language :: Python :: 3.11
|
|
17
|
+
Classifier: Programming Language :: Python :: 3.12
|
|
18
|
+
Classifier: Programming Language :: Python :: 3.13
|
|
19
|
+
Classifier: Topic :: Multimedia :: Sound/Audio
|
|
20
|
+
Requires-Python: >=3.11
|
|
21
|
+
Description-Content-Type: text/markdown
|
|
22
|
+
License-File: LICENSE
|
|
23
|
+
Dynamic: license-file
|
|
24
|
+
|
|
25
|
+
# logic2ableton
|
|
26
|
+
|
|
27
|
+
Convert Logic Pro `.logicx` projects into Ableton Live `.als` sets — preserving audio arrangement, timeline positions, track structure, tempo, and time signature. Includes a desktop GUI and command-line interface.
|
|
28
|
+
|
|
29
|
+
**[Download the latest release](https://github.com/Evilander/logic2ableton/releases/latest)** — available for Windows and macOS. No Python or Ableton installation required.
|
|
30
|
+
|
|
31
|
+
> This is a v1.0 release. If you try it out, please [open an issue](https://github.com/Evilander/logic2ableton/issues) with feedback, bug reports, or feature requests. Especially interested in hearing from people converting real-world sessions.
|
|
32
|
+
|
|
33
|
+
## Download
|
|
34
|
+
|
|
35
|
+
| Platform | File | Description |
|
|
36
|
+
|----------|------|-------------|
|
|
37
|
+
| Windows | [Installer](https://github.com/Evilander/logic2ableton/releases/latest) | Standard Windows installer |
|
|
38
|
+
| Windows | [Portable](https://github.com/Evilander/logic2ableton/releases/latest) | Single exe, no install needed |
|
|
39
|
+
| macOS (Apple Silicon) | [DMG (arm64)](https://github.com/Evilander/logic2ableton/releases/latest) | For M1/M2/M3/M4 Macs |
|
|
40
|
+
| macOS (Intel) | [DMG (x64)](https://github.com/Evilander/logic2ableton/releases/latest) | For Intel Macs |
|
|
41
|
+
|
|
42
|
+
### Desktop App
|
|
43
|
+
|
|
44
|
+
The desktop app provides drag-and-drop project selection, a project preview with track/clip/plugin counts, real-time conversion progress, and a history sidebar. Just drop your `.logicx` folder and convert.
|
|
45
|
+
|
|
46
|
+
### CLI
|
|
47
|
+
|
|
48
|
+
Also available as a command-line tool when installed from source:
|
|
49
|
+
|
|
50
|
+
```bash
|
|
51
|
+
git clone https://github.com/Evilander/logic2ableton.git
|
|
52
|
+
cd logic2ableton
|
|
53
|
+
pip install -e .
|
|
54
|
+
logic2ableton "path/to/MySong.logicx" --output ./output
|
|
55
|
+
```
|
|
56
|
+
|
|
57
|
+
## What It Transfers
|
|
58
|
+
|
|
59
|
+
- Audio tracks and clips into Ableton Arrangement View
|
|
60
|
+
- Timeline positions from embedded WAV (BWF bext) and AIFF (MARK chunk) timestamps
|
|
61
|
+
- Clip overlap resolution: comp > bounce-in-place > latest take
|
|
62
|
+
- Mixer state (volume, pan, mute, solo) via JSON overrides
|
|
63
|
+
- Tempo and time signature
|
|
64
|
+
- Plugin identification with VST3 match suggestions
|
|
65
|
+
|
|
66
|
+
## What It Does Not Transfer Yet
|
|
67
|
+
|
|
68
|
+
- Automation curves
|
|
69
|
+
- MIDI notes and instrument tracks
|
|
70
|
+
- Bus/send routing
|
|
71
|
+
- Plugin parameters
|
|
72
|
+
- Folder/grouping
|
|
73
|
+
|
|
74
|
+
## CLI Reference
|
|
75
|
+
|
|
76
|
+
```text
|
|
77
|
+
logic2ableton <input.logicx> [options]
|
|
78
|
+
```
|
|
79
|
+
|
|
80
|
+
| Option | Description |
|
|
81
|
+
|--------|-------------|
|
|
82
|
+
| `--version`, `-V` | Show version |
|
|
83
|
+
| `--output`, `-o` | Output directory (default `.`) |
|
|
84
|
+
| `--report-only` | Print conversion report only |
|
|
85
|
+
| `--no-copy` | Don't copy audio files |
|
|
86
|
+
| `--template` | Path to Ableton `DefaultLiveSet.als` template (bundled by default) |
|
|
87
|
+
| `--vst3-path` | VST3 directory for suggestion scanning |
|
|
88
|
+
| `--mixer` | Path to `mixer_overrides.json` |
|
|
89
|
+
| `--generate-mixer-template` | Generate editable mixer JSON for all tracks |
|
|
90
|
+
| `--json-progress` | Machine-readable JSON progress output |
|
|
91
|
+
|
|
92
|
+
## Mixer Override Workflow
|
|
93
|
+
|
|
94
|
+
1. Generate a template:
|
|
95
|
+
```bash
|
|
96
|
+
logic2ableton "MySong.logicx" -o ./output --generate-mixer-template --report-only
|
|
97
|
+
```
|
|
98
|
+
|
|
99
|
+
2. Edit `output/mixer_overrides.json` with your volume/pan/mute/solo values.
|
|
100
|
+
|
|
101
|
+
3. Apply during conversion:
|
|
102
|
+
```bash
|
|
103
|
+
logic2ableton "MySong.logicx" -o ./output --mixer ./output/mixer_overrides.json
|
|
104
|
+
```
|
|
105
|
+
|
|
106
|
+
## Output Structure
|
|
107
|
+
|
|
108
|
+
```text
|
|
109
|
+
output/
|
|
110
|
+
MySong Project/
|
|
111
|
+
MySong.als
|
|
112
|
+
Samples/
|
|
113
|
+
Imported/
|
|
114
|
+
*.wav / *.aif / *.aiff
|
|
115
|
+
MySong_conversion_report.txt
|
|
116
|
+
```
|
|
117
|
+
|
|
118
|
+
## Building from Source
|
|
119
|
+
|
|
120
|
+
```bash
|
|
121
|
+
git clone https://github.com/Evilander/logic2ableton.git
|
|
122
|
+
cd logic2ableton
|
|
123
|
+
pip install -e .
|
|
124
|
+
python -m pytest tests -q
|
|
125
|
+
```
|
|
126
|
+
|
|
127
|
+
No third-party Python dependencies. The Ableton template is bundled — no Ableton installation needed.
|
|
128
|
+
|
|
129
|
+
### Desktop App Development
|
|
130
|
+
|
|
131
|
+
```bash
|
|
132
|
+
cd app
|
|
133
|
+
npm install
|
|
134
|
+
npm run dev
|
|
135
|
+
```
|
|
136
|
+
|
|
137
|
+
## Contributing
|
|
138
|
+
|
|
139
|
+
1. Fork and create a branch from `master`
|
|
140
|
+
2. Make changes with test coverage
|
|
141
|
+
3. Run `python -m pytest tests -q`
|
|
142
|
+
4. Open a pull request
|
|
143
|
+
|
|
144
|
+
## License
|
|
145
|
+
|
|
146
|
+
MIT
|
|
@@ -0,0 +1,122 @@
|
|
|
1
|
+
# logic2ableton
|
|
2
|
+
|
|
3
|
+
Convert Logic Pro `.logicx` projects into Ableton Live `.als` sets — preserving audio arrangement, timeline positions, track structure, tempo, and time signature. Includes a desktop GUI and command-line interface.
|
|
4
|
+
|
|
5
|
+
**[Download the latest release](https://github.com/Evilander/logic2ableton/releases/latest)** — available for Windows and macOS. No Python or Ableton installation required.
|
|
6
|
+
|
|
7
|
+
> This is a v1.0 release. If you try it out, please [open an issue](https://github.com/Evilander/logic2ableton/issues) with feedback, bug reports, or feature requests. Especially interested in hearing from people converting real-world sessions.
|
|
8
|
+
|
|
9
|
+
## Download
|
|
10
|
+
|
|
11
|
+
| Platform | File | Description |
|
|
12
|
+
|----------|------|-------------|
|
|
13
|
+
| Windows | [Installer](https://github.com/Evilander/logic2ableton/releases/latest) | Standard Windows installer |
|
|
14
|
+
| Windows | [Portable](https://github.com/Evilander/logic2ableton/releases/latest) | Single exe, no install needed |
|
|
15
|
+
| macOS (Apple Silicon) | [DMG (arm64)](https://github.com/Evilander/logic2ableton/releases/latest) | For M1/M2/M3/M4 Macs |
|
|
16
|
+
| macOS (Intel) | [DMG (x64)](https://github.com/Evilander/logic2ableton/releases/latest) | For Intel Macs |
|
|
17
|
+
|
|
18
|
+
### Desktop App
|
|
19
|
+
|
|
20
|
+
The desktop app provides drag-and-drop project selection, a project preview with track/clip/plugin counts, real-time conversion progress, and a history sidebar. Just drop your `.logicx` folder and convert.
|
|
21
|
+
|
|
22
|
+
### CLI
|
|
23
|
+
|
|
24
|
+
Also available as a command-line tool when installed from source:
|
|
25
|
+
|
|
26
|
+
```bash
|
|
27
|
+
git clone https://github.com/Evilander/logic2ableton.git
|
|
28
|
+
cd logic2ableton
|
|
29
|
+
pip install -e .
|
|
30
|
+
logic2ableton "path/to/MySong.logicx" --output ./output
|
|
31
|
+
```
|
|
32
|
+
|
|
33
|
+
## What It Transfers
|
|
34
|
+
|
|
35
|
+
- Audio tracks and clips into Ableton Arrangement View
|
|
36
|
+
- Timeline positions from embedded WAV (BWF bext) and AIFF (MARK chunk) timestamps
|
|
37
|
+
- Clip overlap resolution: comp > bounce-in-place > latest take
|
|
38
|
+
- Mixer state (volume, pan, mute, solo) via JSON overrides
|
|
39
|
+
- Tempo and time signature
|
|
40
|
+
- Plugin identification with VST3 match suggestions
|
|
41
|
+
|
|
42
|
+
## What It Does Not Transfer Yet
|
|
43
|
+
|
|
44
|
+
- Automation curves
|
|
45
|
+
- MIDI notes and instrument tracks
|
|
46
|
+
- Bus/send routing
|
|
47
|
+
- Plugin parameters
|
|
48
|
+
- Folder/grouping
|
|
49
|
+
|
|
50
|
+
## CLI Reference
|
|
51
|
+
|
|
52
|
+
```text
|
|
53
|
+
logic2ableton <input.logicx> [options]
|
|
54
|
+
```
|
|
55
|
+
|
|
56
|
+
| Option | Description |
|
|
57
|
+
|--------|-------------|
|
|
58
|
+
| `--version`, `-V` | Show version |
|
|
59
|
+
| `--output`, `-o` | Output directory (default `.`) |
|
|
60
|
+
| `--report-only` | Print conversion report only |
|
|
61
|
+
| `--no-copy` | Don't copy audio files |
|
|
62
|
+
| `--template` | Path to Ableton `DefaultLiveSet.als` template (bundled by default) |
|
|
63
|
+
| `--vst3-path` | VST3 directory for suggestion scanning |
|
|
64
|
+
| `--mixer` | Path to `mixer_overrides.json` |
|
|
65
|
+
| `--generate-mixer-template` | Generate editable mixer JSON for all tracks |
|
|
66
|
+
| `--json-progress` | Machine-readable JSON progress output |
|
|
67
|
+
|
|
68
|
+
## Mixer Override Workflow
|
|
69
|
+
|
|
70
|
+
1. Generate a template:
|
|
71
|
+
```bash
|
|
72
|
+
logic2ableton "MySong.logicx" -o ./output --generate-mixer-template --report-only
|
|
73
|
+
```
|
|
74
|
+
|
|
75
|
+
2. Edit `output/mixer_overrides.json` with your volume/pan/mute/solo values.
|
|
76
|
+
|
|
77
|
+
3. Apply during conversion:
|
|
78
|
+
```bash
|
|
79
|
+
logic2ableton "MySong.logicx" -o ./output --mixer ./output/mixer_overrides.json
|
|
80
|
+
```
|
|
81
|
+
|
|
82
|
+
## Output Structure
|
|
83
|
+
|
|
84
|
+
```text
|
|
85
|
+
output/
|
|
86
|
+
MySong Project/
|
|
87
|
+
MySong.als
|
|
88
|
+
Samples/
|
|
89
|
+
Imported/
|
|
90
|
+
*.wav / *.aif / *.aiff
|
|
91
|
+
MySong_conversion_report.txt
|
|
92
|
+
```
|
|
93
|
+
|
|
94
|
+
## Building from Source
|
|
95
|
+
|
|
96
|
+
```bash
|
|
97
|
+
git clone https://github.com/Evilander/logic2ableton.git
|
|
98
|
+
cd logic2ableton
|
|
99
|
+
pip install -e .
|
|
100
|
+
python -m pytest tests -q
|
|
101
|
+
```
|
|
102
|
+
|
|
103
|
+
No third-party Python dependencies. The Ableton template is bundled — no Ableton installation needed.
|
|
104
|
+
|
|
105
|
+
### Desktop App Development
|
|
106
|
+
|
|
107
|
+
```bash
|
|
108
|
+
cd app
|
|
109
|
+
npm install
|
|
110
|
+
npm run dev
|
|
111
|
+
```
|
|
112
|
+
|
|
113
|
+
## Contributing
|
|
114
|
+
|
|
115
|
+
1. Fork and create a branch from `master`
|
|
116
|
+
2. Make changes with test coverage
|
|
117
|
+
3. Run `python -m pytest tests -q`
|
|
118
|
+
4. Open a pull request
|
|
119
|
+
|
|
120
|
+
## License
|
|
121
|
+
|
|
122
|
+
MIT
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
__version__ = "1.0.0"
|