Actions
Bug #886
closed.mp4 videos load but can only hear audio track
Start date:
01/14/2022
Due date:
% Done:
0%
Estimated time:
Affected version:
Description
Currently if you use the below cmds, it plays the video but only the sound track can be heard.
Must be some codec issue. Same current issue in previewer or fullscreen.
Load Asset "myvideo.mp4","video"
Play Video "video"
Updated by malcolm harvey almost 3 years ago
- Status changed from New to Closed
As updated with notes from Baptiste, you have to also use other cmds to display the video as they are stored in a buffer.
eg:
//Displays the video image on the screen (equivalent to Paste Bob)
Play Video "video"
Draw Video "video", 100, 100, 640, 480
or
// Stores the image of the video in the bank image at index 255
Video Bob "video", 255
Bob 1, 100,100,255
Actions