~ubuntu-branches/ubuntu/wily/mkvtoolnix/wily

« back to all changes in this revision

Viewing changes to tests/test-033timecode_scale.rb

  • Committer: Bazaar Package Importer
  • Author(s): Clément Stenac
  • Date: 2005-09-07 19:54:42 UTC
  • Revision ID: james.westby@ubuntu.com-20050907195442-funmigmy8ua340hq
Tags: upstream-1.5.6
Import upstream version 1.5.6

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#!/usr/bin/ruby -w
 
2
 
 
3
class T_033timecode_scale < Test
 
4
  def description
 
5
    return "mkvmerge / timecode scale / in(AVI,MP3)"
 
6
  end
 
7
 
 
8
  def run
 
9
    merge("--timecode-scale 1000000 data/simple/v.mp3")
 
10
    hash = hash_tmp
 
11
    merge("--timecode-scale -1 data/avi/v.avi")
 
12
    return hash + "-" + hash_tmp
 
13
  end
 
14
end
 
15