Unterschiede

Hier werden die Unterschiede zwischen zwei Versionen angezeigt.

Link zu dieser Vergleichsansicht

Beide Seiten der vorigen Revision Vorhergehende Überarbeitung
Nächste Überarbeitung
Vorhergehende Überarbeitung
en:vegas_python_faq [2018/10/27 15:54]
hlinke
en:vegas_python_faq [2020/03/14 16:07] (aktuell)
hlinke [Section 1: General]
Zeile 7: Zeile 7:
  
  
-=== Section 1: General ===+==== Section 1: General ====
  
-== What is VEGASPython Scripting? ==+=== What is VEGASPython Scripting? ===
  
 When we speak of scripting in VEGAS, we're not referring to what may first come to mind for many of you, a written description of the scenes and dialog in a video production. Rather, we're referring to programmatic access to the internal data structures in VEGAS projects that allows you to automate things that you might normally do via the GUI. This may help you perform repetitive tasks, integrate with external applications, and implement customized features. When we speak of scripting in VEGAS, we're not referring to what may first come to mind for many of you, a written description of the scenes and dialog in a video production. Rather, we're referring to programmatic access to the internal data structures in VEGAS projects that allows you to automate things that you might normally do via the GUI. This may help you perform repetitive tasks, integrate with external applications, and implement customized features.
  
-== Which scripting languages does VEGAS use? ==+=== Which scripting languages does VEGAS use? ===
  
 VEGAS uses the .NET framework to provide its scripting interface. VEGAS can execute C#, JScript, and Visual Basic script files directly. You do not need to compile them first. VEGAS can also execute scripts written in other .NET languages but those scripts must be compiled first. VEGAS uses the .NET framework to provide its scripting interface. VEGAS can execute C#, JScript, and Visual Basic script files directly. You do not need to compile them first. VEGAS can also execute scripts written in other .NET languages but those scripts must be compiled first.
Zeile 23: Zeile 23:
 With the VEGASPython extension Vegas can now also execute Scripts programmed in Python. With the VEGASPython extension Vegas can now also execute Scripts programmed in Python.
  
-== Do I need to be a programmer to write scripts? ==+=== Do I need to be a programmer to write scripts? ===
  
 With VEGASPython and the possibility to use the Python Programing language for VEGAS scripting the hurdle for creating VEGAS scripts is getting much lower. Python is designed to be easy to learn and to use.   With VEGASPython and the possibility to use the Python Programing language for VEGAS scripting the hurdle for creating VEGAS scripts is getting much lower. Python is designed to be easy to learn and to use.  
  
-== How do I create a script for VEGAS? ==+=== How do I create a script for VEGAS? ===
  
 All Python scripts are plain text. You can use the interactive VEGASPython editor or any other text editor. If you want to debug longer scripts you can use the free version of Microsoft Visual Studio 2017 as editor and debugger. All Python scripts are plain text. You can use the interactive VEGASPython editor or any other text editor. If you want to debug longer scripts you can use the free version of Microsoft Visual Studio 2017 as editor and debugger.
 +In the following we assume that you use the interactive VEGASPython editor if nothing else is defined.
  
-== How do I write a simple "hello world" script? ==+=== How do I write a simple "hello world" script? ===
  
-VEGAS uses several .NET script engine technologies to execute scripts. By default, VSA compilers are used for JScript and Visual Basic. Perhaps the simplest "Hello World" script is written in JScript: +Enter the following text in the interactive VEGASPython editor:
-LanguageJScript+
  
-import System.Windows.Forms; +<code Python> 
-import ScriptPortal.Vegas;+print("hello world"
 +</code>
  
-MessageBox.Show("hello world");+Click in the manu on "Execute Script".
  
-When VEGAS executes Visual Basic scripts using the VSA script engine, it begins with the Main subroutine in the MainModule module: +You will see in the output window the text "hello world".
-Language: Visual Basic+
  
-imports System.Windows.Forms +Very simple.
-imports ScriptPortal.Vegas+
  
-Public Module MainModule +Remember the example provided in the original FAQ for C#
-Sub Main +
-  MessageBox.Show("hello world"+
-End Sub +
-End Module +
- +
-The VSA script engines were made obsolete with the introduction of .NET 2.0 and the introduction of new CodeDOM compilers. VEGAS uses a CodeDOM compiler for C# scripts and, optionally, also for JScript and Visual Basic. VEGAS requires a special entry point for CodeDOM scripts, a method named FromVegas in a class named EntryPoint: +
-Language: C#+
  
 +<code C#>
 using System.Windows.Forms; using System.Windows.Forms;
 using ScriptPortal.Vegas; using ScriptPortal.Vegas;
Zeile 64: Zeile 57:
     }     }
 } }
 +</code>
  
-At some point in the future, you can expect VEGAS to stop supporting VSA scripts since the .NET Framework will eventually drop the VSA engines. Most of the sample code in this document is written in C#.+You see the difference ?
  
-1.6: How do I use a script that has been posted on the web as a .txt file?+=== How do I use a script that has been posted on the web as a .txt file? ===
  
-You can copy the entire contents of the script file from your browser window and paste it into a new document in your text editorUsing Notepad, you can "Save As" to specify the script file name. You can name it anything you want but make sure to name the file with the .cs, .js, or .vb extension depending on the programming language used in the script. Also make sure to choose "All Files" as the "Save as type", otherwise Notepad will append a .txt extension to the file.+You can copy the entire contents of the script file from your browser window and paste it into a the interactive VEGASPython EditorWith "Save As" you can specify the script file name. You can name it anything you want but make sure to name the file with the .py extension. 
  
-An nice alternative to using copy and paste is to right click in the browser window and choose "View Source" which will launch Notepad with the contents of the script. Then just "Save As" as directed above. 
  
-1.7: Do scripts pose a security risk to my computer?+=== Do scripts pose a security risk to my computer? ===
  
 Yes, scripts can be a security risk to your computer. A script run by VEGAS has the power to do almost anything: delete files, read files, write files, execute programs, access the Internet, access files on your local network, etc. You should always examine the contents of a script before running it and, if you don't understand what it is really doing, you should not run it unless it comes from a trusted source. In general, you should take the same precautions for scripts that you would take for any executable program you download. Yes, scripts can be a security risk to your computer. A script run by VEGAS has the power to do almost anything: delete files, read files, write files, execute programs, access the Internet, access files on your local network, etc. You should always examine the contents of a script before running it and, if you don't understand what it is really doing, you should not run it unless it comes from a trusted source. In general, you should take the same precautions for scripts that you would take for any executable program you download.
  
-1.8: How do I use my own .NET assembly from within a script?+=== How do I use my own or other .NET assemblies from within a script? ===
  
-By default, VEGAS loads the following assemblies for every script that it runs:+VEGASPython is based on IRONPython. IRONPython allows to easily access .NET assemblies in the Python script:
  
-    mscorlib.dll +Here is an example for System.QWindows.Forms and ScriptPortal.Vegas.
-    System.dll +
-    System.Drawing.dll +
-    System.Windows.Forms.dll +
-    System.Xml.dll+
  
-These assemblies cover most of the classes that scripts will useHowever, occasionally a script will need to use classes that are not defined in the assemblies above including ones you've written yourselfIn these cases, scripts must have a configuration file that tells VEGAS which extra assemblies to load.+<code Python> 
 +import clr 
 +clr.AddReference('System.Windows.Forms'
 +import System.Windows.Forms as WinForms 
 +clr.AddReference('ScriptPortal.Vegas'
 +import ScriptPortal.Vegas as VEGAS 
 +from ScriptPortal.Vegas import * 
 +</code>
  
-Each script can have configuration file that specifies extra .NET assemblies used by the script. The configuration file is an XML file with the same file name as the script except it has the '.config' extension appended. For example, if your script is named "MyScript.cs", its configuration file should be named "MyScript.cs.config". The configuration file must be in the same directory as the script.+=== How do I use my own or other Python Modules from within a script? ===
  
-The following provides an example of a configuration file for a script that references several extra assemblies: +In VEGASPython you can import Python modules using the standard Python syntax:
-Language: XML+
  
-<?xml version="1.0" encoding="UTF-8" ?+<code Python
-<ScriptSettings> +import sys 
-  <AssemblyReference>System.Data.dll</AssemblyReference> +import os 
-  <AssemblyReference resolver="local">LocalUtilities.dll</AssemblyReference> +from sys import * 
-  <AssemblyReference>C:\MyAssemblies\VegasHelpers.dll</AssemblyReference> +</code>
-</ScriptSettings>+
  
-The root XML element of the configuration file is named ScriptSettings. This element can contain any number of AssemblyReference elements. The inner text of each AssemblyReference element contains the file name of an assembly DLL. For assemblies that are in the GAC (Global Assembly Cache... this includes most assemblies that ship with the .NET Framework), a full path is not required. The resolver attribute, when set to "local", tells VEGAS to look for the referenced assembly in the same directory as the scriptOtherwise, you should specify the full path to the assemblyThe local resolver attribute allows you to distribute your script, its configuration file, and helper assemblies without hard coding any paths. You just need to keep them in the same directory.+As VEGASPython is based on IRONPython and on .NET it is not possible to import Python modules that are programmed using CMost of the common modules are ported to IRONPython but some special modules may not workPlease check the IRONPython webpage for details.
  
-One problem in the current release of VEGAS is that VB scripts can not access assemblies in that are not either in the GAC or in the same directory as the VEGAS executable. It is possible, however, to add your assembly to the GAC by using the gacutil program (See the .NET Framework documentation for more details). Alternatively, you can place a copy of your assembly in the VEGAS install directory and use an AssemblyReference element similar to one that refers to an assembly in the GAC.+=== Is there a way to determine the path of currently running script? ===
  
-1.9: Is there way to determine the path of currently running script?+Yes, the filename including the complete path is available in the variable sys.argv. In Python sys.argv is string list containing the script filename and all commandline arguments. The script filename is the first string in the list.
  
-Yes, the global variable ScriptPortal.Vegas.Script.File contains the full path of the currently executing script. So if your script needs access to a helper file that resides in the same directory, your code might look like this: +So if your script needs access to a helper file that resides in the same directory, your code might look like this:
-Language: C#+
  
-String scriptDirectory = Path.GetDirectoryName(ScriptPortal.Vegas.Script.File); +<code Python> 
-String helperFile = Path.Combine(scriptDirectory, "HelperFile.ext");+clr.AddReference("System.IO") // we need System.IO for Path.GetDirectoryName and Path.Combine 
 +import System.IO 
 +from System.IO import * 
 +import sys 
 +scriptDirectory = Path.GetDirectoryName(sys.argv[0]
 +helperFile = Path.Combine(scriptDirectory, "HelperFile.ext") 
 +</code>
  
-1.10: How do I add a script to the Scripting menu?+=== How do I start a script from the commandline===
  
-You can add a script to the Scripting menu (under Vegas' Tools menu) by placing the script in one of the following directories:+Pythonscripts can be started from the commandline together with VEGAS and commandline parameters can be passed to the script.
  
-C:\Users\<username>\Documents\Vegas Script Menu\  +Example
-C:\Users\<username>\AppData\Local\Vegas Pro\14.0\Script Menu\ +<code
-C:\Users\<username>\AppData\Roaming\Vegas Pro\14.0\Script Menu\ +C:\Program Files\VEGAS\VEGAS Pro 16.0\vegas160.exe /SCRIPTARGS pythonscriptfilename /SCRIPTARGS arg1 /SCRIPTARGS arg2 
-C:\ProgramData\Vegas Pro\14.0\Script Menu\ +</code>
-C:\Users\<username>\AppData\Local\Vegas Pro\Script Menu\ +
-C:\Users\<username>\AppData\Roaming\Vegas Pro\Script Menu\ +
-C:\ProgramData\Vegas Pro\Script Menu\+
  
-Different systems and users will have different paths to the various documents and settings directories but VEGAS and installer programs should find them based on standard Windows APIs. Typically, you will manage the 'Vegas Script Menu' in 'Documents' yourself. Installers will use one of the other directories depending on the script's version compatibility, whether the script should appear for all users, etc. After you place the script in one of these directories, it will appear in the Scripts menu the next time you launch VEGAS or after you select the "Rescan Script Menu Folder" menu item.+  * pythonscriptfilename: path and filename of the pythonscriptfile to be executed 
 +  * arg1: any text string as argument1 
 +  * arg2: any text string as argument2
  
-1.11: How do I add a script to the toolbar?+The number of arguments is not limited.
  
-To add a script to the toolbar, first it must be located in one of the Scripting menu folders detailed above. Once added to the Scripting menu, you can add a script to the toolbar using the 'Customize Toolbar' dialog in VEGAS' Options menu. The available scripts are listed at the bottom of of the available toolbar button list.+The first /SCRIPTARGS must be the script filename.
  
-1.12How do I assign a keyboard shortcut to a script?+Example: 
 +<code> 
 +C:\Program Files\VEGAS\VEGAS Pro 16.0\vegas160.exe /SCRIPTARGS "D:\pythonfile\test.py" /SCRIPTARGS arg1 /SCRIPTARGS arg2 
 +</code>
  
-To assign a keyboard shortcut to scriptfirst it must be located in one of the Scripting menu folders detailed aboveOnce added to the Scripting menu, you can create a keyboard shortcut for the script using the 'Customize Keyboard' dialog in VEGAS' Options menu. The available scripts begin with the 'Script' keyword and are available under any context.+If the filename or parameter include blanksthen the parameter must be enclosed in ´""´ 
 +The pythonscript can access the commandline arguments as it is standard in Python via the variable sys.argv. 
 +This variable contains a list of strings with each argument as a separate string item in the list. 
 +The first item is the scriptfilename.
  
-1.13: How do I make a custom icon appear for a script in the Scripting menu or toolbar?+The python script:
  
-You can make a custom icon appear for a script you've added to the Scripting menu or toolbar by placing a PNG image in the same folder that contains the script. The PNG file must have the same name as the script with the '.png' extension appended. For example, if the script is named "My Script.cs", the toolbar image should be named "My Script.cs.png". The image must be 16 X 16 pixels and must have 32-bit color depth with an alpha channel for transparency.+<code python> 
 +for arg in sys.argv: 
 +    print (arg) 
 +</code>
  
-Alternatively, you can use the script's configuration file to specify the script's icon. In the configuration file, an IconFile element contains the name of the PNG file to use. For example: +gives as output:
-Language: XML+
  
-<?xml version="1.0" encoding="UTF-8" ?> +["D:\pythonfile\test.py","arg1","arg2"]
-<ScriptSettings> +
-  <IconFile>C:\Icons\Icon1.png</IconFile> +
-</ScriptSettings>+
  
-The inner text of the IconFile element is either full path or a file name in the same directory as the script.+=== How do I add script to the Scripting menu? ===
  
-1.14: How do create and debug a script using a Visual Studio?+You can add a script to the Extension menu (under Vegas' Tools menu) by placing the script in one of the following directories:
  
-You must create a compiled script to debug it using a Visual StudioTo create a Visual Studio project for a VEGAS script, you will typically follow these steps (for Visual Studio 2012... other versions will have similar steps):+  * C:\Users\<username>\Documents\Vegas Application Extensions\VEGASPython_PN\  
 +  * C:\Users\<username>\AppData\Local\VEGAS Pro\14.0\Application Extensions\VEGASPython_PN\   
 +  * C:\Users\<username>\AppData\Roaming\VEGAS Pro\14.0\Application Extensions\VEGASPython_PN\  
 +  * C:\ProgramData\Vegas Pro\14.0\Application Extensions\VEGASPython_PN\    
 +  * C:\Users\<username>\AppData\Local\Vegas Pro\Application Extensions\VEGASPython_PN\  
 +  * C:\Users\<username>\AppData\Local\Vegas Pro\Application Extensions\VEGASPython_PN\  
 +  * C:\ProgramData\Vegas Pro\Application Extensions\VEGASPython_PN\ 
  
-    In Visual Studio, select the 'File.New.Project...' menu item. +You must use the subdirectoy VEGASPYTHON in the same directory where you installed the VEGASPYTHON.dll.
-    In the New Project dialog, select the Class Library template under the Visual C# / Windows project type. +
-    Name your new project, choose its location, and click OK to dismiss the New Project dialog. For this example, we will name our project "SampleScript1" +
-    Select the 'Project.Add Reference...' menu item. +
-    Select the Browse tab and select ScriptPortal.Vegas.dll which is located in the VEGAS install directory (typically in C:\Program Files\VEGAS\Vegas Pro...). +
-    Add references for any other assemblies your script will use. For example, the System.Windows.Forms assembly (located in the .NET tab of the Add Reference dialog) is frequently used. +
-    Edit your script. Typically, you will change the name of the auto-generated class (Class1) to EntryPoint.+
  
-At this point, you should get your script be ready to build (compile). For example, the following code provides a very simple example. +=== How do I add a script to the toolbar? ===
-Language: C#+
  
-using System; +To add a script to the toolbar, first it must be located in the VEGASPython Scripting folders detailed aboveOnce added to the Extensionmenu, you can add a script to the toolbar using the 'Customize Toolbar' dialog in VEGAS' Options menuThe available scripts are listed at the bottom of of the available toolbar button list.
-using System.Collections.Generic; +
-using System.Text; +
-using System.Windows.Forms; +
-using ScriptPortal.Vegas;+
  
-namespace SampleScript1 +=== How do I assign a keyboard shortcut to a script? ===
-+
-    public class EntryPoint +
-    { +
-        public void FromVegas(Vegas vegas) +
-        { +
-            MessageBox.Show(vegas.Version); +
-        } +
-    } +
-}+
  
-The following steps describe how to debug your script.+To assign a keyboard shortcut to script, first it must be located in the VEGASPython Scripting folders detailed above. Once added to the Extension menu, you can create a keyboard shortcut for the script using the 'Customize Keyboard' dialog in VEGAS' Options menu. The available scripts begin with the 'Script' keyword and are available under any context.
  
-    First build the solution in Visual Studio ('Build.Build Solution' menu item). If needed, fix any compiler errors and rebuild. +=== How do I make a custom icon appear for a script in the Scripting menu or toolbar? ===
-    Open the project properties using the 'Project.ProjectName Properties' menu item. +
-    In the Debug tab of the project properties, set the Start Action to 'Start external program'. Select vegas140.exe in the VEGAS install directory. +
-    Save the project. +
-    Set your breakpoints in your script. +
-    Start debugging (select the 'Debug.Start Debugging' menu item). VEGAS should start. +
-    In VEGAS, select the 'Tools.Run Script...' menu item. Select the assembly that was created when you built your Visual Studio project. It will be in the directory that Visual Studio created for your project. It is not the .cs file you've been editing. You need to select the .dll file that Visual Studio created. It is located in the bin/Debug subdirectory and, for this example, is named SampleScript1.dll.+
  
-When you run your precompiled script assembly in the VEGAS application that was started by the Visual Studio debuggeryour break points will be hit.+You can make a custom icon appear for a script you've added to the Scripting menu or toolbar by placing a PNG image in the same folder that contains the script. The PNG file must have the same name as the script with the '.png' extension appended. For exampleif the script is named "My Script.cs", the toolbar image should be named "My Script.py.png". The image must be 16 X 16 pixels and must have 32-bit color depth with an alpha channel for transparency.
  
-1.15: How do I print debug messages from my script?+=== How do I create and debug script using a Visual Studio===
  
-You can print debug messages using the System.Diagnostics.Debug.WriteLine method. These messages are visible in your debugger's output window. This works automatically for precompiled scripts built in Visual Studio (using your project's Dubug configuration)However, for scripts that VEGAS compiles, you must add some compiler options to your script config file to enable debug output+You can debug VEGASPython scripts usuing Microsoft Visual Studio 2017 as Editor and DebuggerYou do not have to compile the script or do any fancy stuff
-LanguageXML+Please see the page [[en:debugging_of_scripts_with_visual_studio_2017|debugging_of_scripts_with_visual_studio_2017]]
  
-<?xml version="1.0" encoding="UTF-8" ?> 
-<ScriptSettings> 
-  <CompilerOptions>-debug -D:DEBUG</CompilerOptions> 
-</ScriptSettings> 
  
-The compiler options required for debug output depend on which language you are using to write your script. The example provided will work for C# scripts.+=== How do I print debug messages from my script? ===
  
-1.16: How do I prevent debugger failures when my script accesses Cineform templates?+You can print debug messages using the Python print() function. These messages are visible in the output window.
  
-This problem is caused by the Cineform codec dll. You will need to quit VEGAS, find the file named CFHD.DLL (located either in the VEGAS install directory or the WINDOWS\system32 directoryand temporarily rename it to something like CFHD.DLL.BAK.+<code Python> 
 +print("Debugmessage") 
 +</code>
  
-1.17: My question is not answered in the FAQ, where can I get more help?+=== My question is not answered in the FAQ, where can I get more help? ===
  
 The Scripting Forum is a good place to ask questions. The forum is frequently monitored by VEGAS staff and friendly VEGAS users who have considerable skills and experience. Questions posted in the forum occasionally make their way into this FAQ. The Scripting Forum is a good place to ask questions. The forum is frequently monitored by VEGAS staff and friendly VEGAS users who have considerable skills and experience. Questions posted in the forum occasionally make their way into this FAQ.
  
-1.18: Where can I get updates to the scripting SDK?+=== Where can I get updates to VEGASPython===
  
-The VEGAS Pro Scripting SDK web page will have a link to download the latest scripting SDK. Updates to the SDK may be posted when we release new versions of VEGAS.+You can get the latest VEGASPython version here: [[en:vegas_python_download|VEGASPython]]
  
-Section 2: Tracks and Events+==== Section 2: Tracks and Events ====
  
-2.1: How do I find the currently selected track or event?+=== How do I access the VEGAS attributes? === 
 +VEGASPython provides a variable pyVEGAS which is of the type VEGAS and provides the interface to all VEGAS internal data structuresYou can find details of the data structures in the VEGAS Scripting API. 
 + 
 +Example: 
 +<code Python> 
 +print (pyVEGAS.Version) 
 +</code> 
 + 
 +=== How do I find the currently selected track or event? ===
  
 You can find the currently selected track or event by iterating through each track and event and examining the Selected property. The following functions provide an example of this: You can find the currently selected track or event by iterating through each track and event and examining the Selected property. The following functions provide an example of this:
-Language: C# 
  
-Track FindSelectedTrack(Project project) { +<code Python> 
-    foreach (Track track in project.Tracks) { +def FindSelectedTrack(project): 
-        if (track.Selected) { +    for track in project.Tracks): 
-            return track+        if track.Selected: 
-        } +            return track
-    }+
     return null;     return null;
-}+     
 +print(FindSelectedTrack(pyVEGAS.Project))     
 +</code>
  
 +<code Python>
 +def FindSelectedEvents(project):
 +    selectedEvents = []
 +    for track in project.Tracks:
 +        for trackEvent in track.Events:
 +            if trackEvent.Selected:
 +                selectedEvents.Add(trackEvent)
 +    return selectedEvents
  
-TrackEvent[] FindSelectedEvents(Project project{ +print(FindSelectedEvents(pyVEGAS.Project)) 
-    List<TrackEventselectedEvents = new List<TrackEvent>(); +</code>
-    foreach (Track track in project.Tracks) { +
-        foreach (TrackEvent trackEvent in track.Events) { +
-            if (trackEvent.Selected) { +
-                selectedEvents.Add(trackEvent); +
-            } +
-        } +
-    } +
-    return selectedEvents.ToArray(); +
-}+
  
-Note that multiple tracks and events selected at the same time. The first function returns only the first selected track while the second function returns all of the selected events. Events can be selected in tracks that are not selected.+Note that multiple tracks and events can be selected at the same time. The first function returns only the first selected track while the second function returns all of the selected events. Events can be selected in tracks that are not selected.
  
-2.2: How do I set the fade type (curve) for an event?+=== How do I set the fade type (curve) for an event? ===
  
 Every TrackEvent object has FadeIn and FadeOut properties which give you objects that control the event's ASR and (in the case of VideoEvents) transition effects. The Fade object has a Curve property which can be set to one of the CurveType enumeration values. The following example gives an event fade in curve the fast type. Every TrackEvent object has FadeIn and FadeOut properties which give you objects that control the event's ASR and (in the case of VideoEvents) transition effects. The Fade object has a Curve property which can be set to one of the CurveType enumeration values. The following example gives an event fade in curve the fast type.
-Language: C# 
  
-evnt.FadeIn.Curve = CurveType.Fast;+ 
 +<code Python> 
 +evnt.FadeIn.Curve = CurveType.Fast 
 +</code>
  
 One tricky aspect of fades comes into play when two events overlap on the same track. In this case, only the trailing event's FadeIn really matters and, to designate the type of fade curve for the leading event, you actually must set the trailing event's ReciprocalCurve property. The following code snippet makes a slow curved fade transition between an event (trailingEvent) and any event on the same track that overlaps its leading edge: One tricky aspect of fades comes into play when two events overlap on the same track. In this case, only the trailing event's FadeIn really matters and, to designate the type of fade curve for the leading event, you actually must set the trailing event's ReciprocalCurve property. The following code snippet makes a slow curved fade transition between an event (trailingEvent) and any event on the same track that overlaps its leading edge:
-Language: C# 
  
-trailingEvent.FadeIn.Curve = CurveType.Slow; +<code Python> 
-trailingEvent.FadeIn.ReciprocalCurve = CurveType.Slow; +trailingEvent.FadeIn.Curve = CurveType.Slow 
- +trailingEvent.FadeIn.ReciprocalCurve = CurveType.Slow 
-2.3: How do I make a one second dissolve at the beginning and end of a video event?+</code> 
 +=== How do I make a one second dissolve at the beginning and end of a video event? ===
  
 You can add a dissolve (or any transition) to an event using its FadeIn and FadeOut properties. First you can set the length of the transition to the desired amount: You can add a dissolve (or any transition) to an event using its FadeIn and FadeOut properties. First you can set the length of the transition to the desired amount:
-Language: C# 
  
-videoEvent.FadeIn.Length = Timecode.FromSeconds(1); +<code Python> 
- +videoEvent.FadeIn.Length = Timecode.FromSeconds(1) 
-or +</code>
-Language: C# +
- +
-videoEvent.FadeOut.Length = Timecode.FromSeconds(1);+
  
 For video events, you can use a transition effect by creating a new instance of an Effect object using a transition PlugInNode then assign it to the Transition property of the appropriate Fade. To create a new transition effect, you must first find the appropriate PlugInNode. To find a transition node by name, use the GetChildByName method of the Transitions root node. The following function creates a new transition effect given its plug-in name: For video events, you can use a transition effect by creating a new instance of an Effect object using a transition PlugInNode then assign it to the Transition property of the appropriate Fade. To create a new transition effect, you must first find the appropriate PlugInNode. To find a transition node by name, use the GetChildByName method of the Transitions root node. The following function creates a new transition effect given its plug-in name:
-Language: C# 
  
-Effect CreateTransitionEffect(VEGAS vegas, String plugInName)  { +<code Python> 
-    PlugInNode plugIn = vegas.Transitions.GetChildByName(plugInName); +def CreateTransitionEffect(plugInName): 
-    if (null == plugIn) +    plugIn = pyVEGAS.Transitions.GetChildByName(plugInName) 
-        throw new ApplicationException(String.Format("Failed to find plug-in: '{0}'", plugInName)); +    if plugIn==None: 
-    return new Effect(plugIn); +        print("Failed to find plug-in:", plugInName) 
-}+    return Effect(plugIn) 
 +</code>
  
 Now you can set the event fade transitions and assign their preset: Now you can set the event fade transitions and assign their preset:
-Language: C# 
- 
-Effect fadeInTx = CreateTransitionEffect("VEGAS Dissolve"); 
-videoEvent.FadeIn.Transition = fadeInTx; 
-fadeInTx.Preset = "Additive Dissolve"; 
-Effect fadeOutTx = CreateTransitionEffect("VEGAS Slide"); 
-videoEvent.FadeOut.Transition = fadeOutTx; 
-fadeOutTx.Preset = "Additive Dissolve"; 
  
 +<code Python>
 +Effect fadeInTx = CreateTransitionEffect("VEGAS Dissolve")
 +videoEvent.FadeIn.Transition = fadeInTx
 +fadeInTx.Preset = "Additive Dissolve"
 +Effect fadeOutTx = CreateTransitionEffect("VEGAS Slide")
 +videoEvent.FadeOut.Transition = fadeOutTx
 +fadeOutTx.Preset = "Additive Dissolve"
 +</code>
 You must pass the full name of the plug-in to the GetChildByName method. The Plug-In Manager window shows the full name of each plug-in. Most built-in plug-ins begin with "VEGAS". You must pass the full name of the plug-in to the GetChildByName method. The Plug-In Manager window shows the full name of each plug-in. Most built-in plug-ins begin with "VEGAS".
  
-2.4: How do I add media to the timeline?+=== How do I add media to the timeline? ===
  
 You can use the OpenFile method of the VEGAS object to add a media file to the selected track at the current cursor position. The OpenFile method works much like the 'File.Open' menu command and will insert tracks if necessary. You can set the cursor position using the CursorPosition of the Vegas object's Transport property. The following method demonstrates how to insert a media file at a specific position on a specific track using the OpenFile method. You can use the OpenFile method of the VEGAS object to add a media file to the selected track at the current cursor position. The OpenFile method works much like the 'File.Open' menu command and will insert tracks if necessary. You can set the cursor position using the CursorPosition of the Vegas object's Transport property. The following method demonstrates how to insert a media file at a specific position on a specific track using the OpenFile method.
-Language: C# 
  
-void InsertFileAt(Vegas vegas, String fileName, int trackIndex, Timecode cursorPosition) {+<code Python> 
 +def InsertFileAt(fileName, trackIndex, cursorPosition):
     // first clear all track selections     // first clear all track selections
-    foreach (Track track in vegas.Project.Tracks) { +    for track in pyVEGAS.Project.Tracks: 
-        track.Selected = false+        track.Selected = false
-    }+
     // select the desired track     // select the desired track
-    vegas.Project.Tracks[trackIndex].Selected = true;+    pyVegas.Project.Tracks[trackIndex].Selected = True
     // set the cursor position     // set the cursor position
-    vegas.Transport.CursorPosition = cursorPosition; +    pyVEGAS.Transport.CursorPosition = cursorPosition 
-    vegas.OpenFile(fileName); +    pyVEGAS.OpenFile(fileName) 
-}+</code>
  
 Sometimes you need more control of how you add media to the project. You can build events on the timeline by constructing media, tracks, events, and take objects individually: Sometimes you need more control of how you add media to the project. You can build events on the timeline by constructing media, tracks, events, and take objects individually:
-Language: C# 
  
-VideoEvent AddVideoEvent(Vegas vegas, String mediaFile, Timecode start, Timecode length) +<code Python> 
-{ +def AddVideoEvent(mediaFile, start, length): 
-    Media media = new Media(mediaFile); +    media = Media(mediaFile) 
-    VideoTrack track = vegas.Project.AddVideoTrack(); +    track = pyVegas.Project.AddVideoTrack() 
-    VideoEvent videoEvent = track.AddVideoEvent(start, length); +    videoEvent = track.AddVideoEvent(start, length) 
-    Take take = videoEvent.AddTake(media.GetVideoStreamByIndex(0)); +    take = videoEvent.AddTake(media.GetVideoStreamByIndex(0)) 
-    return videoEvent; +    return videoEvent 
-}+</code>
  
-2.5: How do I add a text event to the timeline?+=== How do I add a text event to the timeline? ===
  
 You can add a text event to the timeline by constructing a Media object from the text generator effect and adding the video event and take to the track. You can add a text event to the timeline by constructing a Media object from the text generator effect and adding the video event and take to the track.
-Language: C# 
  
-VideoEvent AddTextEvent(Vegas vegas, VideoTrack track, Timecode start, Timecode length) +<code Python> 
-{+def AddTextEvent(track, start, length):
     // find the text generator plug-in     // find the text generator plug-in
-    PlugInNode plugIn = vegas.Generators.GetChildByName("Titler");+    plugIn = pyVEGAS.Generators.GetChildByName("Titler")
     // create a media object with the generator plug-in     // create a media object with the generator plug-in
-    Media media = new Media(plugIn);+    media = Media(plugIn)
     // set the generator preset     // set the generator preset
-    media.Generator.Preset = "centered";+    media.Generator.Preset = "centered"
     // add the video event     // add the video event
-    VideoEvent videoEvent = track.AddVideoEvent(start, length);+    videoEvent = track.AddVideoEvent(start, length)
     // add the take using the generated video stream     // add the take using the generated video stream
-    Take take = videoEvent.AddTake(media.GetVideoStreamByIndex(0)); +    take = videoEvent.AddTake(media.GetVideoStreamByIndex(0)) 
-    return videoEvent; +    return videoEvent 
-}+</code>
  
-2.6: How to I make a script modify the text string in a text event?+=== How do I make a script modify the text string in a text event? ===
  
 You can't. Currently, one major shortcoming of the scripting API in VEGAS is that specific parameters of video effects are not accessible to scripts. The text string of text generators are one such parameter. Scripts can only set presets values for a given key frame. You can't. Currently, one major shortcoming of the scripting API in VEGAS is that specific parameters of video effects are not accessible to scripts. The text string of text generators are one such parameter. Scripts can only set presets values for a given key frame.
  
-2.7: How do I modify the pan/crop settings of a video event from a script?+=== How do I modify the pan/crop settings of a video event from a script? ===
  
 Pan and crop settings can be manipulated using the VideoEvent's VideoMotion property. The VideoMotion object has a Keyframes collection that contains VideoMotionKeyframe objects. Each keyframe has a Position in time relative to the start of the event. Keyframes also have a Bounds polygon representing the four corners of the view-port onto the source media. The best way to manipulate this bounds rectangle is to use the keyframe's MoveBy, ScaleBy, and RotateBy methods. The keyframe's Center defines the point at the center of rotation. Pan and crop settings can be manipulated using the VideoEvent's VideoMotion property. The VideoMotion object has a Keyframes collection that contains VideoMotionKeyframe objects. Each keyframe has a Position in time relative to the start of the event. Keyframes also have a Bounds polygon representing the four corners of the view-port onto the source media. The best way to manipulate this bounds rectangle is to use the keyframe's MoveBy, ScaleBy, and RotateBy methods. The keyframe's Center defines the point at the center of rotation.
  
 The following function moves a video event into view from a position off screen over a two second period. The following function moves a video event into view from a position off screen over a two second period.
-Language: C# 
  
-void PanFromLeft(Vegas vegas, VideoEvent videoEvent) +<code Python> 
-{+def PanFromLeft(VideoEvent videoEvent):
     // create a new keyframe at 2 seconds.     // create a new keyframe at 2 seconds.
-    VideoMotionKeyframe key1 = new VideoMotionKeyframe(Timecode.FromSeconds(2));+    key1 = VideoMotionKeyframe(Timecode.FromSeconds(2))
     // add the new keyframe     // add the new keyframe
-    videoEvent.VideoMotion.Keyframes.Add(key1);+    videoEvent.VideoMotion.Keyframes.Add(key1)
     // get the first keyframe     // get the first keyframe
-    VideoMotionKeyframe key0 = videoEvent.VideoMotion.Keyframes[0];+    VideoMotionKeyframe key0 = videoEvent.VideoMotion.Keyframes[0]
     // get the width of the project     // get the width of the project
-    int videoWidth = vegas.Project.Video.Width;+    videoWidth = pyVEGAS.Project.Video.Width
     // move the first keyframe just off screen     // move the first keyframe just off screen
-    key0.MoveBy(new VideoMotionVertex(videoWidth, 0)); +    key0.MoveBy(VideoMotionVertex(videoWidth, 0)) 
-}+</code>
  
-2.8: How do I set the opacity of a video track or event?+=== How do I set the opacity of a video track or event? ===
  
 You can to set the CompositeLevel property of a VideoTrack object to effect the entire track's opacity trim level. You can to set the CompositeLevel property of a VideoTrack object to effect the entire track's opacity trim level.
-Language: C# 
  
-videoTrack.CompositeLevel = 0.5f;+<code Python> 
 +videoTrack.CompositeLevel = 0.
 +</code>
  
 You can also add a composite level envelope to the video track (described below) if you need to the opacity to change over time. You can also add a composite level envelope to the video track (described below) if you need to the opacity to change over time.
  
 Individual event opacity can be set using the Gain property of the video event's FadeIn object: Individual event opacity can be set using the Gain property of the video event's FadeIn object:
-Language: C# 
  
-videoEvent.FadeIn.Gain = 0.5;+<code Python> 
 +videoEvent.FadeIn.Gain = 0.5 
 +</code>
  
-Section 3: Envelopes+==== Section 3: Envelopes ====
  
-3.1: How do I find a particular envelope for a given track or event?+=== How do I find a particular envelope for a given track or event? ===
  
 To find an envelope by type, you can use the FindByType method of the appropriate Envelopes collection. To find an envelope by type, you can use the FindByType method of the appropriate Envelopes collection.
 Language: C# Language: C#
  
-Envelope pan = audioTrack.Envelopes.FindByType(EnvelopeType.Pan);+<code Python> 
 +pan = audioTrack.Envelopes.FindByType(EnvelopeType.Pan) 
 +</code>
  
 All Track objects (AudioTrack and VideoTrack) have an Envelopes collection. So do all BusTrack objects and VideoEvent objects. Envelopes collections also have a HasEnvelope method that allows you to quickly determine whether it contains an envelope of a particular type. All Track objects (AudioTrack and VideoTrack) have an Envelopes collection. So do all BusTrack objects and VideoEvent objects. Envelopes collections also have a HasEnvelope method that allows you to quickly determine whether it contains an envelope of a particular type.
  
 If you want to find an automation envelope on an audio track, you will need to find it by name. This means you need to iterate through the Envelopes collection and compare each envelope's name to the name you're looking for. If you want to find an automation envelope on an audio track, you will need to find it by name. This means you need to iterate through the Envelopes collection and compare each envelope's name to the name you're looking for.
-Language: C# 
  
-Envelope FindEnvelopeByName(Envelopes envelopes, String envelopeName) { +<code Python> 
-    foreach (Envelope envelope in envelopes) { +def FindEnvelopeByName(envelopes, envelopeName): 
-        if (envelope.Name == envelopeName) { +    for envelope in envelopes: 
-            return envelope+        if envelope.Name == envelopeName: 
-        } +            return envelope
-    }+
     return null;     return null;
-}+</code>
  
 Automation envelopes are named by both effect name and parameter name. For example an automation envelope for the delay parameter of the chorus effect is named "Chorus: Delay". Automation envelopes are named by both effect name and parameter name. For example an automation envelope for the delay parameter of the chorus effect is named "Chorus: Delay".
  
-3.2: How do I add an envelope to a track or event?+=== How do I add an envelope to a track or event? ===
  
 The first step to add an envelope to a track or event is to create a new envelope of the desired type. The Envelope class constructor can take any of the values in the EnvelopeType enumeration. The next step is to add the new envelope to the appropriate Envelopes collection. The first step to add an envelope to a track or event is to create a new envelope of the desired type. The Envelope class constructor can take any of the values in the EnvelopeType enumeration. The next step is to add the new envelope to the appropriate Envelopes collection.
-Language: C# 
  
-Envelope volumeEnvelope = new Envelope(EnvelopeType.Volume); +<code Python> 
-audioTrack.Envelopes.Add(volumeEnvelope);+volumeEnvelope = Envelope(EnvelopeType.Volume) 
 +audioTrack.Envelopes.Add(volumeEnvelope) 
 +</code>
  
 In this case, audioTrack can be any audio track that does not already have a volume envelope. Certain envelope types can only be added to a specific context. For example, you cannot add a volume envelope to a video event. It is currently not possible for a script to add an audio effect automation envelope to an audio track or bus track. In this case, audioTrack can be any audio track that does not already have a volume envelope. Certain envelope types can only be added to a specific context. For example, you cannot add a volume envelope to a video event. It is currently not possible for a script to add an audio effect automation envelope to an audio track or bus track.
  
-3.3: How do I add points to an envelope?+=== How do I add points to an envelope? ===
  
 You can add points to an envelope in much the same way you add envelopes to a track or event. The first step is to create an EnvelopePoint object then just add it to the envelope's Points collection. You can add points to an envelope in much the same way you add envelopes to a track or event. The first step is to create an EnvelopePoint object then just add it to the envelope's Points collection.
-Language: C# 
  
-EnvelopePoint envelopePoint = new EnvelopePoint(Timecode.FromSeconds(1), 2.0, CurveType.Sharp); +<code Python> 
-envelope.Points.Add(envelopePoint);+envelopePoint = EnvelopePoint(Timecode.FromSeconds(1), 2.0, CurveType.Sharp) 
 +envelope.Points.Add(envelopePoint) 
 +</code>
  
 The code fragment above creates a new envelope point positioned one second after the start of the envelope. The first argument to the EnvelopePoint constructor is its position. The position represents the point's x-coordinate on the timeline. The second argument is the envelope point's value at the given position. This value must lie somewhere between the envelope's Min and Max properties. Envelopes also have a Neutral property which defines the default or middle value for envelope points. The third argument is one of the CurveType enumeration values which represents how the curve following the point should ascend or descend to reach the next point in the envelope. The code fragment above creates a new envelope point positioned one second after the start of the envelope. The first argument to the EnvelopePoint constructor is its position. The position represents the point's x-coordinate on the timeline. The second argument is the envelope point's value at the given position. This value must lie somewhere between the envelope's Min and Max properties. Envelopes also have a Neutral property which defines the default or middle value for envelope points. The third argument is one of the CurveType enumeration values which represents how the curve following the point should ascend or descend to reach the next point in the envelope.
  
 One rule to keep in mind when adding envelope points is that no two points can have the same position. An exception is thrown if you attempt to add a point with the same position as another. It is illegal to set a point's position to a negative value or, in the case of event envelopes, to a time beyond the end of the event. It is also illegal to set a point's value outside the envelope's min/max range. One rule to keep in mind when adding envelope points is that no two points can have the same position. An exception is thrown if you attempt to add a point with the same position as another. It is illegal to set a point's position to a negative value or, in the case of event envelopes, to a time beyond the end of the event. It is also illegal to set a point's value outside the envelope's min/max range.
- 
-Section 4: Application Extensions 
- 
-4.1: What are application extensions? 
- 
-Application extensions are an advanced form of script that are loaded when VEGAS starts and remain active as long as VEGAS is running. Application extensions can add commands to the Extensions menus under VEGAS' Edit, View, and Tools menus. As with scripts, you can add these commands to VEGAS' toolbar and create keyboard shortcuts for them. 
- 
-Applicaton extensions can have greater levels of interactivity than scripts. They can monitor the changes you make to your project and react accordingly. They can create windows that you can dock along side VEGAS' built-in windows. They can also interactivly control playback. 
- 
-Unlike scripts, application extensions must be compiled and installed in specific locations before VEGAS can use them. As with scripts (or any program you run on your computer), make sure you trust the source of any application extension you install on your system. 
- 
-4.2: How do I install an application extension? 
- 
-Application extensions are contained in .NET assemblies which are program libraries for the .NET runtime that have a '.dll' file extension. Application extensions are generally meant to be installed by an installer program but in some cases you may need to add or remove them manually. When VEGAS starts, it looks in the following locations for application extensions. 
- 
-C:\Users\<username>\Documents\Vegas Application Extensions\   
-C:\Users\<username>\AppData\Local\VEGAS Pro\14.0\Application Extensions\  
-C:\Users\<username>\AppData\Roaming\VEGAS Pro\14.0\Application Extensions\  
-C:\ProgramData\Vegas Pro\14.0\Application Extensions\   
-C:\Users\<username>\AppData\Local\Vegas Pro\Application Extensions\ 
-C:\Users\<username>\AppData\Local\Vegas Pro\Application Extensions\ 
-C:\ProgramData\Vegas Pro\Application Extensions\ 
- 
-Different systems and users will have different paths to the various directories but VEGAS and installer programs should find them based on standard Windows APIs. Typically you will manage the 'Vegas Application Extensions' directory in your 'Documents' directory yourself and intaller programs will add extensions to the 'ProgramData' directories. 
- 
-4.3: How do I write a simple "hello world" application extension? 
- 
-An application extension starts with a class that implements the ICustomCommandModule interface. This interface has two methods, InitializeModule and GetCustomCommands. VEGAS calls InitializeModule after it creates the module object. After initialization, VEGAS calls the GetCustomCommands method. You should return a collection of the CustomCommand objects your module implements. This is typically an array of CustomCommand objects but any collection that implements the ICollection interface will work. Each CustomCommand object has an Invoked event which occurs when the user selects the command from the menu, toolbar, or keyboard shortcut. 
-Language: C# 
- 
-using System; 
-using System.Collections; 
-using System.Windows.Forms; 
-using ScriptPortal.Vegas; 
- 
-public class SampleModule : ICustomCommandModule { 
- 
-    public void InitializeModule(Vegas vegas) { } 
- 
-    public ICollection GetCustomCommands() { 
-        CustomCommand cmd = new CustomCommand(CommandCategory.Tools, "SampleToolCommand"); 
-        cmd.DisplayName = "Hello World"; 
-        cmd.Invoked += this.HandleInvoked; 
-        return new CustomCommand[] { cmd }; 
-    } 
- 
-    void HandleInvoked(Object sender, EventArgs args) { 
-        MessageBox.Show("hello world"); 
-    } 
-} 
- 
-Most command modules hold a reference to the Vegas object passed to the InitializeModule method and use it to access VEGAS' project data when the user invokes the commands. The CommandCategory value passed to the CustomCommand constructor determines which Extensions menu contains the command. The second argument to the CustomCommand constructor is its unique name which VEGAS uses to identify the command. You should never change this name because VEGAS uses it to restore the user's toolbar and keyboard binding preferences. This name must be unique so try to pick a name that other application extension authors probably won't use. If VEGAS loads a command with the same name before yours, your command will be ignored. 
- 
-The DispalyName property of your CustomCommand appears in the Extension menu item for your command, in the tool-tip text for the toolbar button assigned to your command, and various other user interfaces. 
- 
-4.4: How do I create a window that can be docked in VEGAS' user interface? 
- 
-The DockableControl class is special type of UserControl that can be docked in VEGAS' user interface. Typically, you will associate a DockableControl with a CustomCommand that appears in VEGAS' View.Extensions menu. When this command is invoked, your module will create a DockableControl and pass it to the Vegas object's LoadDockView method. 
-Language: C# 
- 
-using System; 
-using System.Drawing; 
-using System.Collections; 
-using System.Windows.Forms; 
-using ScriptPortal.Vegas; 
- 
-public class SampleModule : ICustomCommandModule { 
-    protected Vegas myVegas = null; 
-     
-    public void InitializeModule(Vegas vegas) 
-    { 
-        myVegas = vegas; 
-    } 
- 
-    CustomCommand myViewCommand = new CustomCommand(CommandCategory.View, "mySampleViewCommand"); 
- 
-    public ICollection GetCustomCommands() { 
-        myViewCommand.DisplayName = "Hello World View"; 
-        myViewCommand.Invoked += this.HandleInvoked; 
-        myViewCommand.MenuPopup += this.HandleMenuPopup; 
-        return new CustomCommand[] { myViewCommand }; 
-    } 
- 
-    void HandleInvoked(Object sender, EventArgs args) { 
-        if (!myVegas.ActivateDockView("HellowWorldView")) 
-        { 
-            DockableControl dockView = new DockableControl("HellowWorldView"); 
-            Label label = new Label(); 
-            label.Dock = DockStyle.Fill; 
-            label.Text = "hello world"; 
-            label.TextAlign = ContentAlignment.MiddleCenter; 
-            dockView.Controls.Add(label); 
-            myVegas.LoadDockView(dockView); 
-        } 
-    } 
- 
-    void HandleMenuPopup(Object sender, EventArgs args) 
-    { 
-        myViewCommand.Checked = myVegas.FindDockView("HellowWorldView"); 
-    } 
-     
-} 
- 
-The DockableControl is constructed with a unique name string which can be used to activate the window using the ActivateDockView method. If this method returns true, the control has been loaded and VEGAS will bring it to the front of other docked windows. If ActivateDockView returns false, you should construct a new DockableControl and pass it to LoadDockView. 
- 
-The MenuPopup event of your CustomCommand occurs when VEGAS shows the Extensions menu that contains the command. This is your opportunity to check if your DockableControl is loaded. You can set the Checked property of your command to indicate whether VEGAS should draw a box around your command's icon in the Extensions menu. 
  

Andere Sprachen
QR-Code
QR-Code en:vegas_python_faq (erstellt für aktuelle Seite)