VideoFile.loadFile Method¶
Module: VideoFile
Definition¶
Loads a video file from the specified file path.
This function initializes the video file for playback.
load_file(self, filename_path: str) -> None
Parameters
filename_path
strin The path to the video file to be loaded.
Exceptions
An error has occurred during Devices Library execution.
void loadFile(String? filenamePath)
Parameters
filenamePath
Stringin The path to the video file to be loaded.
Exceptions
An error has occurred during Devices Library execution.
public void LoadFile(string filenamePath)
Parameters
filenamePath
stringin The path to the video file to be loaded.
Exceptions
An error has occurred during Devices Library execution.
public void loadFile(String filenamePath) throws DevicesException
Parameters
filenamePath
Stringin The path to the video file to be loaded.
Exceptions
An error has occurred during Devices Library execution.
int id3DevicesVideoFile_LoadFile (
ID3_DEVICES_VIDEO_FILE hVideoFile,
const char * filenamePath)
Parameters
hVideoFile
ID3_DEVICES_VIDEO_FILEin Handle to the VideoFile object.filenamePath
const char *in The path to the video file to be loaded.
Returns