I'm doing some testing on multiple radeon cards.
I've test so far a X1950. I've seen problem on multi-head, I'm trying to get a video now ...
Here's some log file:
Home | About | Tags | Archives |
Thursday, September 10 2009
By Kyzh on Thursday, September 10 2009, 10:01
I'm doing some testing on multiple radeon cards.
I've test so far a X1950. I've seen problem on multi-head, I'm trying to get a video now ...
Here's some log file:
Monday, June 22 2009
By Kyzh on Monday, June 22 2009, 22:55 - ruby
A bit of Ruby code :P
Just a taste on how to resyncronize a srt file...
Here we just put it 0.2 sec forward
source, destination, shift = "unsyncronize.srt", "willbesyncronize.srt", 0.2 File.open(destination, "w") do |f| File.new(source).each_line do |line| line.gsub!(/\d\d:\d\d:\d\d/) do |str| t = Time.mktime(0, 1, 2, *str.split(':')) + shift "%02d:%02d:%02d" % [t.hour, t.min, t.sec] end f << line end end
Sunday, June 21 2009
By Kyzh on Sunday, June 21 2009, 19:06