Скрипт для Vegas Pro, переводит видеодорожку с названием TEXT и аудиодорожку с названием MIC в режим Solo:
Код: Выделить всё
/*
This script will the https://www.vodkomotornik.ru/forum/viewtopic.php?t=6826
This script is only supported by Vegas version 17.0c and above.
Last Modified: July 04, 2024.
*/
using System;
using ScriptPortal.Vegas;
public class EntryPoint {
public void FromVegas(Vegas vegas) {
Track textTrack = null;
Track micTrack = null;
foreach (Track track in vegas.Project.Tracks) {
if (track.Name == "TEXT" && track.IsVideo()) {
textTrack = track;
}
if (track.Name == "MIC" && track.IsAudio()) {
micTrack = track;
}
}
if (textTrack != null) {
textTrack.Solo = true; // Перевод видеодорожки в режим Solo
}
if (micTrack != null) {
micTrack.Solo = true; // Перевод аудиодорожки в режим Solo
}
}
}