16fb29d576
Vaporgate: special case content creation
...
This allows to change behavior to match some other notable DAW
which can only send automation events at cycle boundaries.
2024-03-12 17:43:38 +01:00
0fff58f905
Remove outdated adm import scripts
2024-03-12 17:39:32 +01:00
f2d938914d
Fix loading session by relative path
...
Previously (since bc91ea3c4
) that would create a new session
even if -N was not specified.
This also uses Glib API to test for absolute path, rather
than a custom hack.
2024-03-12 04:29:33 +01:00
2f61071974
Update Lua Action scripts from local file when possible
2024-03-12 04:24:58 +01:00
682f4dafd3
Vapor: add additional options for ADM export
2024-03-12 00:32:35 +01:00
35017245d9
Fix typo
2024-03-12 00:31:32 +01:00
5d60c2668c
Add Lua bindings to set session range
2024-03-11 22:07:07 +01:00
b783e3eab1
Vapor: add additional export constraint
2024-03-11 20:52:53 +01:00
e467e0c014
in the case of nudging (1) CP, locate the phead so we can see its position
2024-03-11 14:45:07 -05:00
46a8b547fa
Half-baked automation-point nudge
...
There are currently combined constraints when moving multiple
points like ContiguousControlPoints::move enforces, but otherwise
it works fine.
2024-03-11 19:18:27 +01:00
c012ab19e0
Fix AAF compilation with clang (macOS)
2024-03-11 18:52:45 +01:00
f873f9f621
typos: "ADM/BWM" -> "ADM BWF"
2024-03-11 09:14:44 -05:00
310e7f2279
make a distinction between total channels with or without the embedded bed chans
2024-03-11 08:29:56 -05:00
agfline
d03cdf86e1
Update AAF import UI
2024-03-10 22:11:58 +01:00
agfline
bd937366fd
Update libaaf to v1.0-1-gdef35bf
2024-03-10 22:11:47 +01:00
agfline
2b1349ffc2
Update libAAF import tool
2024-03-10 21:53:36 +01:00
5e2f027ee9
NO-OP: whitespace
2024-03-09 23:35:39 +01:00
258b22c9f1
remove signal emission from run() func
2024-03-08 11:48:16 -06:00
e907aad05c
ObjectCount signal should include the count
2024-03-08 11:31:44 -06:00
7ad5278bfd
fix typos: ADM BWF
2024-03-08 11:22:33 -06:00
43c08dd2f5
Do not automatically bind ADM import script
2024-03-08 16:15:13 +01:00
8a8a1b9fb9
Vapor: export file timecode must be < 24h
2024-03-07 17:24:12 +01:00
13383b11a7
Set correct Timecode widget name
2024-03-07 14:29:50 +01:00
24b18c889b
allow SurroundReturn to publish the number of channels in use
2024-03-06 18:34:33 -06:00
42dc033636
Vapor: work-around stem export alignment
...
This is a somewhat fragile solution to ensure that
processor reset happens in the same cycle in which
the actual data arrives at the start of the cycle.
2024-03-07 01:28:22 +01:00
77e7470270
Vapor: handle export abort
2024-03-06 18:35:08 +01:00
922ad14217
Gap-less overwrite_existing_audio
...
AudioPlaylist::read first clears the buffer passed to it, in
order to sum all layered regions into the buffer.
This cleared data in the ringbuffer that is concurrently being
used for playback.
2024-03-06 02:33:39 +01:00
6df34a307d
Match surround panner automation line convention
...
move to the left -> automation line moves upwards
move to the front -> automation line moves upwards
2024-03-05 14:59:26 +01:00
3a6171428a
Do not include hidden plugin in plugin-list
2024-03-05 00:56:42 +01:00
bf7d4f895e
Fix jump to next/prev bar
...
Previously this only located to the prev/next bar if the
playhead was not already on a bar boundary
2024-03-04 20:25:41 +01:00
517d82a6f2
Vapor: add script to perform live rendering tests
2024-03-04 17:00:00 +01:00
53b951f6a9
Vapor: Properly name sync&aling API
2024-03-04 16:53:33 +01:00
GianfrancoCostamagna
338cd09a4a
Work around itstools bug #9648
...
Forwarded from debian.
Having stderr output inside the returned command tricks the system
to fail in detecting the version.
Ignoring stderr output looks fine to make it build properly:
```
itstool --version
/usr/bin/itstool:239: SyntaxWarning: invalid escape sequence '\s'
if re.sub('\s+', ' ', text).strip() != '':
/usr/bin/itstool:337: SyntaxWarning: invalid escape sequence '\s'
message = re.sub('\s+', ' ', message).strip()
/usr/bin/itstool:475: SyntaxWarning: invalid escape sequence '\s'
return re.sub('\s+', ' ', self.locnote).strip()
/usr/bin/itstool:477: SyntaxWarning: invalid escape sequence '\s'
return '(itstool) link: ' + re.sub('\s+', ' ', self.locnoteref).strip()
/usr/bin/itstool:891: SyntaxWarning: invalid escape sequence '\<'
regex = re.compile('(.*) \<(.*)\>, (.*)')
/usr/bin/itstool:926: SyntaxWarning: invalid escape sequence '\s'
if re.sub('\s+', '', prevtext) == '':
/usr/bin/itstool:1452: SyntaxWarning: invalid escape sequence '\.'
_locale_pattern = re.compile('([a-zA-Z0-9-]+)(_[A-Za-z0-9]+)?(@[A-Za-z0-9]+)?(\.[A-Za-z0-9]+)?')
itstool 2.0.6
```
2024-03-04 14:27:23 +01:00
37d130f6e1
Fix Aux-send gain automation latency compensation
2024-03-03 01:08:07 +01:00
ed98ff97b2
Fix adding new route in front ( #9651 )
...
When adding a new route using "Front", its presentation info
order is set to 1, after the master-bus which has PI order 0.
(see Session::ensure_route_presentation_info_gap).
Mixer_UI::add_stripables, looks up the insert iterator:
"after the route with order 0", but since the master bus is
not in mixer's track-model, the insert-iterator is left "at end".
A later call to `sync_presentation_info_from_treeview` then updated
the new track's order key to be at the end.
2024-03-02 14:55:58 +01:00
bansaghi
256d3b1d52
add control names to General MIDI drums
2024-03-01 17:45:52 +01:00
2c858deae4
Allow to stem-export Surround Master
2024-02-29 16:15:50 +01:00
2fe22eeab5
Fix header include, potential fix for #9649
2024-02-29 03:09:00 +01:00
jean-emmanuel
83f5d40280
grid/snap: disable broken septuplet option
2024-02-27 23:28:41 +01:00
jean-emmanuel
af023cc516
snap: fix quintuplets and septuplets 2x factor
...
grid: fix quintuplets 2x factor (septuplets still don't draw properly)
2024-02-27 23:21:33 +01:00
jean-emmanuel
f190493e32
grid: display grid lines for triplets/quintuplets/septuplets
2024-02-27 23:21:33 +01:00
jean-emmanuel
81bd75e7ae
ui: editor: add missing h-separator after last track header
2024-02-27 23:19:12 +01:00
8d0704dda2
Vapor: add option to sync processing to a 512 sample cycle
2024-02-27 23:16:54 +01:00
3c61d1150b
Vapor: ADM/BWF meta-data is not to be interpolated
2024-02-27 17:41:23 +01:00
734d365949
Add additional Lua bindings for interpolation
2024-02-27 17:05:10 +01:00
eb4af10745
Amend 5880e51e92
, ADM script only works on Unix Systems
2024-02-27 00:30:03 +01:00
6c1f503cda
Vapor: check for master_info tool
2024-02-27 00:27:43 +01:00
0ea0b656b8
Return Lua system-exec exit status
2024-02-27 00:23:49 +01:00
301d2954c5
Vapor: pass program meta-data to plugin
2024-02-27 00:01:49 +01:00
80098c6a86
Vapor: prevent export when there are more than 128 channels
2024-02-26 22:15:11 +01:00