Code: Select all
avconv \
-f x11grab -r 30 -s hd1080 -i :0.0 \
-f alsa -ac 2 -i pulse \
-vcodec libx264 -vf 'scale=-1:720' -pre:v lossless_ultrafast \
-acodec libmp3lame \
-y out.avi
Code: Select all
avconv \
-f x11grab -r 30 -s hd1080 -i :0.0 \
-f alsa -ac 2 -i pulse \
-vcodec libx264 -vf 'scale=-1:720' -pre:v lossless_ultrafast \
-acodec libmp3lame \
-y out.avi
Can I ask how you recorded that? I get the same flawless performance in-game, but cannot seem to record it proper (choppy video and out-of-sync soundJ V wrote:http://www.youtube.com/watch?v=-g6smwwtSEo - 10 minutes of linux gameplay (With commentary)
Perfect. Flawless. Fantastic.
Nuff said.
Code: Select all
#!/bin/bash
avconv \
-f x11grab -r 30 -s hd1080 -i :0.0 \
-f alsa -ac 2 -i pulse \
-f alsa -ac 2 -i hw:0,0 \
-map 0:0 -map 1:0 -map 2:0 \
-vcodec libx264 -vf 'scale=-1:720' -pre:v lossless_ultrafast \
-acodec libmp3lame \
-y $@
Code: Select all
avconv \
# start the program
-f x11grab -r 30 -s hd1080 -i :0.0 \
# Create input type "x11grab" framerate 30 size 1080p (Lots of options and manual available there) input from :0.0 server
-f alsa -ac 2 -i pulse \
# Create audio input type "alsa" with 2 channels from "pulse" (Set default pulse input to "Monitor of internal audio" or set it manually in recording tab after starting recorder)
-f alsa -ac 2 -i hw:0,0 \
# Record audio from mic in a separate track (Makes editing a breeze)
# You can find which audio device this is with arecord -l
-map 0:0 -map 1:0 -map 2:0 \
# Just map them out so that it actually uses both audio tracks not just the one
-vcodec libx264 -vf 'scale=-1:720' -pre:v lossless_ultrafast \
# encode with libx264, automatically scale to 720p on the fly (something is bottlenecking me at 26fps if I record full 1080p and I'd rather have a smaller 30fps)
# Video preset is "lossless_ultrafast" - creates a huge file but does it quickly, you can slim it down later.
-acodec libmp3lame \
# mp3 audio codec
-y $@
# Automatically overwrite and put the script options at the end (For manual tweaking and choosing which file to record to)
This is a know problem happening to loads of my windows-using guildies as well so should not be wine-related.virion wrote:Could you confirm if Trade Post / Gem Store working for you?
I only saw blank pages/ tabs.
Someone mentioned that this could be related to wine or server problems during BWE.
http://forum.winehq.org/viewtopic.php?t=15121
Thanks
Code: Select all
sudo apt-get install xosd-bin
Code: Select all
cd ~/Documents/GW2
Code: Select all
WINEDEBUG=+fps wine Gw2.exe 2>&1 | tee /dev/stderr | grep --line-buffered "^trace:fps:" | osd_cat --font="-sony-*-medium-*-*-*-20-*-*-*-*-*-jisx0201.1976-*" --lines="2"
I don't know what your system/setting are like, but I have no problem getting beautiful snow/smoke/fire etc effects.Astohan wrote:Don't worry Tristanlogd, I have the same issue, and it's normal: Wine just can't render correctly weather effects ingame, such as rain, snow, smog. The Norn area is the most concerned by this issue though.
You have to use the Catalyst drivers for your ATI video card. Thekevin89, the AMD/Ati drivers are generally poorly implemented in Linux and suffer from many problems.
In your case, it all depends on the model of your card and the driver you're using (the one from your distro or the official
from the Ati site ?).