Can I import all the source file sections with scripting in Studio One ?
I have all the source file names, tempo, start position, end position in source file, source position in project and pitch shift amount in a text file.
Studio One Import Items with Scripting
-
crossovercable crossovercable https://www.kvraudio.com/forum/memberlist.php?mode=viewprofile&u=329708
- KVRian
- 576 posts since 26 May, 2014
You do not have the required permissions to view the files attached to this post.
-
crossovercable crossovercable https://www.kvraudio.com/forum/memberlist.php?mode=viewprofile&u=329708
- KVRian
- Topic Starter
- 576 posts since 26 May, 2014
No answers ? That's why I use Reaper scripting.
-
crossovercable crossovercable https://www.kvraudio.com/forum/memberlist.php?mode=viewprofile&u=329708
- KVRian
- Topic Starter
- 576 posts since 26 May, 2014
With Reaper I use
reaper.InsertMedia( source_file, 0 )
then set
reaper.SetMediaItemTakeInfo_Value( sel_take, "D_PITCH", pitch )
reaper.SetMediaItemTakeInfo_Value( sel_take, "D_STARTOFFS", source_time_pos )
reaper.SetMediaItemInfo_Value( sel_item, "D_POSITION", track_time_pos )
reaper.SetMediaItemLength(sel_item, source_time_length, true)
So I want to do the same with Studio One.
reaper.InsertMedia( source_file, 0 )
then set
reaper.SetMediaItemTakeInfo_Value( sel_take, "D_PITCH", pitch )
reaper.SetMediaItemTakeInfo_Value( sel_take, "D_STARTOFFS", source_time_pos )
reaper.SetMediaItemInfo_Value( sel_item, "D_POSITION", track_time_pos )
reaper.SetMediaItemLength(sel_item, source_time_length, true)
So I want to do the same with Studio One.