Computer Science Canada Calling videos in turing 4.1 |
Author: | chalcids [ Tue Nov 29, 2011 11:02 am ] |
Post subject: | Calling videos in turing 4.1 |
I want to know how to call up videos in my Turing program |
Author: | Raknarg [ Tue Nov 29, 2011 12:44 pm ] |
Post subject: | RE:Calling videos in turing 4.1 |
Turing doesnt support that, I don't think |
Author: | DemonWasp [ Tue Nov 29, 2011 1:40 pm ] |
Post subject: | RE:Calling videos in turing 4.1 |
Turing has no built-in support for video files, and is probably too slow, even with modern computers, to display video at reasonable quality (assuming you were to write the video-handling bits yourself). You could use Sys.Exec to call up the default video player for a given movie file, but it won't be under the control of your Turing program. |
Author: | mirhagk [ Tue Nov 29, 2011 1:43 pm ] |
Post subject: | RE:Calling videos in turing 4.1 |
Although calling the default video player shouldn't be too much of an issue I think. You could even make a batch file that will open up the video file with a specific player, that is called by sys.exec |
Author: | chalcids [ Thu Dec 01, 2011 5:28 pm ] |
Post subject: | Re: Calling videos in turing 4.1 |
can it call up any videos at all |
Author: | mirhagk [ Thu Dec 01, 2011 5:37 pm ] |
Post subject: | RE:Calling videos in turing 4.1 |
like we said.... you can use Sys.Exec to run some media player that will play the video. |