if you know please help me[font=][/font][color=][/color]
This forum is now archived!
- Welcome to the archive!
News:
The 3DRad community can be found at classdev.net.
- 3D Rad - Free 3D game maker - Forum >
- General Category >
- 3D Rad - Optimization Tips >
- why 3d rad can't play video?
Author Topic: why 3d rad can't play video? (Read 2725 times)
Use sprites that are animated there's a tutorial in the projects somewhere and a monster truck crashes using the animated sprites,
If you get that done somehow cause I'm not good with videos and stuff add a sound effect of the speech of the video and presto your done
Ask someone else about the video and getting the sprites from it
If you get that done somehow cause I'm not good with videos and stuff add a sound effect of the speech of the video and presto your done
Ask someone else about the video and getting the sprites from it
sure 3D RAD can play a video... why do you say it can't...
i'll explain this one, since it's not too obvious...
you'll need two things...
first...
write a text file and save it as a batch file in your 3DRAD folder... i saved mine as playMovie.bat...
(for those who do not know what a batch file is, it's a text file with a series of commands that you'd type out if you were in the command prompt)
the file will look like this...
second...
open up 3DRAD and add a script object to an empty project...
add this line of script...
run it and open up the popcorn...
if you want the movie to play fullscreen, modify your batch file to look like this...
you can pretty much do this for most external programs that can be run from the command prompt...
have fun...
--Mike
i'll explain this one, since it's not too obvious...
you'll need two things...
first...
write a text file and save it as a batch file in your 3DRAD folder... i saved mine as playMovie.bat...
(for those who do not know what a batch file is, it's a text file with a series of commands that you'd type out if you were in the command prompt)
the file will look like this...
Code: [Select]
"c:\program files\windows media player\wmplayer" "c:\users\mike hense\videos\0003.wmv"
second...
open up 3DRAD and add a script object to an empty project...
add this line of script...
Code: [Select]
void Main()
{
if(iInitializing())iCommand("playMovie.bat");
}
run it and open up the popcorn...
if you want the movie to play fullscreen, modify your batch file to look like this...
Code: [Select]
"c:\program files\windows media player\wmplayer" /fullscreen "c:\users\mike hense\videos\0003.wmv"
you can pretty much do this for most external programs that can be run from the command prompt...
have fun...
--Mike
how do you run it, and where abouts in the 3drad folder do you save the bat?
does it only work when compiled?
does it only work when compiled?
save it in the 3dRad ROOT folder. thats C:\3D Rad
and you run it by running the project. it works in compiled, and uncompiled.
i don't thik i have to tell you to change the directory to your video.
and you run it by running the project. it works in compiled, and uncompiled.
i don't thik i have to tell you to change the directory to your video.
sure 3D RAD can play a video... why do you say it can't...your method working only uncompiled project
i'll explain this one, since it's not too obvious...
you'll need two things...
first...
write a text file and save it as a batch file in your 3DRAD folder... i saved mine as playMovie.bat...
(for those who do not know what a batch file is, it's a text file with a series of commands that you'd type out if you were in the command prompt)
the file will look like this...Code: [Select]"c:\program files\windows media player\wmplayer" "c:\users\mike hense\videos\0003.wmv"
second...
open up 3DRAD and add a script object to an empty project...
add this line of script...Code: [Select]void Main()
{
if(iInitializing())iCommand("playMovie.bat");
}
run it and open up the popcorn...
if you want the movie to play fullscreen, modify your batch file to look like this...Code: [Select]"c:\program files\windows media player\wmplayer" /fullscreen "c:\users\mike hense\videos\0003.wmv"
you can pretty much do this for most external programs that can be run from the command prompt...
have fun...
--Mike
no. you have to convert your video to 100 frames of pictures and then saved them
here take a look http://www.3drad.com/forum/index.php?topic=8202.
here take a look http://www.3drad.com/forum/index.php?topic=8202.
Pages: [1] 2