|
Has anyone tried to create a video from the rendered output in Unity. I would like to be able to create replays of my game, and upload the replay to youtube or another video sharing site. I guess i can use EncodeToPNG and friends to get one frame, but has anyone tried to actually create a movie on the fly from the extracted screenshots?
(comments are locked)
|
|
Hi! There's another option.. We've written a fast capture plugin that integrates directly into Unity to allow you to make captures in the editor or in a build. The plugin is called AVPro Movie Capture can you can download a demo and view the documentation on the webpage. -Andrew I've spent too little time on unity answers lately, and didn't see this until now, but it is exactly what I was looking for back in 2010. Don't need it right now though, but I'll keep it in mind :)
Jul 24 '12 at 06:16 AM
KvanteTore
(comments are locked)
|
|
Use Screenflow, Screenflick, Snapz Pro, etc. if you're using OS X, or some equivalent app if you're on Windows. You can use this script on the wiki, but that's not really appropriate for standard gameplay since it changes the timescale to get a perfectly even framerate. I was thinking more along the lines to have it integrated in the game so that it can be done effortlessly by players
Apr 08 '10 at 10:02 AM
KvanteTore
Auto-export from the game would be cool. For video capture, fraps is the best "equivalent app ... on Windows" that I was able to find.
Jan 01 '11 at 06:11 PM
yoyo
(comments are locked)
|
|
If you are doing your scripting in c# you probably want to do something similar to this: http://stackoverflow.com/questions/397754/record-video-of-screen-using-net-technologies Yep, looks promising, although it doesn't actually provide a solution :)
Apr 22 '10 at 10:09 AM
KvanteTore
(comments are locked)
|
|
Sorry but Fraps will not "see" games that run in Unity. I am currently testing a browser-based Unity game and neither Screenshots or Movies work using Fraps. Fraps works fine in everything else though...go figure. I need it to take screenshots & movies for bug reporting back to the developers. TQQdles™, Dolnor Numbwit Eternal Testing Newbie You can always set up Fraps to use the DWM-Interface, which makes Fraps record everything shown on the Windows Vista / Windows 7-Desktop.
Dec 04 '12 at 09:28 PM
Gruni
(comments are locked)
|
1 2 next page »

That'd be great! I was hoping it would be possible to throw the unity video output directly into a stream, like VLC can do either to a unencoded video, encoded video, used as a video input to recording devices or to any receiving video stream host. Too bad no answers on this even up to today!
I ended up making an in-game record/playback functionality for the replay functionality in our game. Being a free webgame it kind of makes sense, as it would mean anyone watching a replay would already be in the game, ready to play :)
Hi, could I ask you if you found any other way to create replays and to upload the unity video output directly ? Making it easier for players to publish their achievements.. Thanks in advance.
@Vini, no. I ended up making an in-game replay system instead.