|
|
The Inn A place to gather around and chat about almost any subject |
|
Thread Tools | Display Modes |
11-02-2011, 03:18 PM | #11 | |
Initiate
Join Date: Mar 2008
Location: country that invents hockey
Posts: 223
|
Quote:
|
|
11-02-2011, 03:36 PM | #12 |
Count
Join Date: Oct 2008
Location: Sofia, Bulgaria
Posts: 1,374
|
@Scias can you put a little more info on GLC and what params you pass to it. At least to get a starting point and not reinvent the hot water.
__________________
RA | Ignis | Lilla My | Conjurer | EVIL IGNIS ROCK Horus | Syrtis | ieti | Conjurer | INQUISITION | LONG GONE |
11-02-2011, 03:53 PM | #13 |
Banned
Join Date: Nov 2010
Location: The Netherlands
Posts: 172
|
Thank you for this vid, I really enjoyed it.
|
11-02-2011, 04:10 PM | #14 |
Banned
Join Date: Mar 2011
Posts: 342
|
|
11-02-2011, 04:14 PM | #15 |
Banned
Join Date: Nov 2010
Location: The Netherlands
Posts: 172
|
|
11-02-2011, 05:50 PM | #16 | |||
Baron
Join Date: Aug 2009
Location: /dev/null
Posts: 766
|
Quote:
I have seen it's possible to create a sort of virtual input in .asoundrc that records all the sound from the computer (sort of virtual stereo mix), but can't get info about it atm. Quote:
But what I don't like about ffmpeg is that it grabs the X11 output, which means any window or notification going over RO will be recorded. Also it's technically slower than grabbing the opengl output from the video framebuffer like glc does. Whatever, both approaches work anyways. I just have a personal preference for GLC because it's as simple and powerful as fraps and isn't as stressful as ffmpeg while recording. I convert the GLC videos with mencoder and the option "-oac copy" that makes a h264 avi file with the same lossless quality and no artifacts at all. Quote:
Code:
(from RO's directory) $> glc-capture -o "outputfile.glc" ./rolauncher This is the simple way to record with it. There's a lot of more or less useful parameters, like "-b back -i" that will draw an indicator when you are recording, "--disable-audio" to disable audio, etc rtfm... Then once you recorded, you get a very heavy raw lossless yuv video file only playable with glc-play, so you have to encode it if you want to play it on other players or edit it. I have a script that does the job for me Code:
#!/bin/bash for arg do FILE=$arg; done if [ "$FILE" == "" ]; then exit 1 fi glc-play "${FILE}" -o - -y 1 | mencoder -demuxer y4m - -oac copy -ovc x264 -of avi -o "${FILE}".avi # glc-play "${FILE}" -a 1 -o -| lame -hV2 - tmp.mp3 # glc-play "${FILE}" -o - -y 1 | mencoder -demuxer y4m - -audiofile tmp.mp3 -oac copy -ovc x264 -of avi -o "${FILE}".avi # rm -f tmp.mp3 So what I do is just ./encode.sh file.glc and I get a shiny lossless avi file. Well if you need more info or help just pm me.
__________________
|
|||
11-04-2011, 01:17 AM | #17 |
Banned
Join Date: Dec 2008
Posts: 326
|
|
|
|