VideoSource_FileOrURL
property
property VideoSource_FileOrURL: string read GetVideoSource_FileOrURL write SetVideoSource_FileOrURL;
__property System::UnicodeString VideoSource_FileOrURL = {read=GetVideoSource_FileOrURL, write=SetVideoSource_FileOrURL};
public string VideoSource_FileOrURL { get; set; }
Public Property VideoSource_FileOrURL As String
wchar_t *GetVideoSource_FileOrURL ();
void SetVideoSource_FileOrURL (wchar_t *Value);
Specifies the source video clip to use as live source (instead of a video capture device or a web cam) when VideoSource = vs_VideoFileOrURL
Can be:
-
a file located on a local drive, a network drive
-
or a streaming video clip specified by its URL
-
a playlist.
E.g. to record a video file:
videograbber.VideoSourceVidGrab.TVideoGrabber.VideoSource = vs_VideoFileOrURLvideograbber.VideoSource_FileOrURL = 'myclip.avi'videograbber.StartRecordingVidGrab.TVideoGrabber.StartRecording()E.g. to record a playlist:videograbber.PlaylistVidGrab.TVideoGrabber.Playlist (pl_Clear, '')videograbber.Playlist (pl_Add, 'vg000004.avi')videograbber.Playlist (pl_Add, 'vg000002.avi')videograbber.Playlist (pl_Add, ... videograbber.Playlist (pl_Add, ... videograbber.VideoSourceVidGrab.TVideoGrabber.VideoSource = vs_VideoFileOrURLvideograbber.VideoSource_FileOrURL = 'PLAYLIST'videograbber.StartRecordingVidGrab.TVideoGrabber.StartRecording()- alternatively you can invoke StartPreview instead of StartRecording to just play the clip (without trackbar handing, if you need the trackbar handling use the Player features)
- look at the Recording methods and properties chapter for information about the recording settings