~ubuntu-branches/ubuntu/oneiric/oggconvert/oneiric

« back to all changes in this revision

Viewing changes to OggConvert/ocv_constants.py

  • Committer: Bazaar Package Importer
  • Author(s): Luca Falavigna
  • Date: 2008-01-19 17:52:14 UTC
  • mfrom: (1.1.3 upstream)
  • Revision ID: james.westby@ubuntu.com-20080119175214-w91ytv04bs0w9cuu
Tags: 0.3.1-1ubuntu1
* Merge from debian unstable. Fix LP: #175770
  Remaining changes:
  - Suggest gstreamer multiverse plugins

Show diffs side-by-side

added added

removed removed

Lines of Context:
32
32
# schroenc doesn't exist will cause problems if you try to encode to Dirac
33
33
HAVE_SCHRO = None
34
34
 
 
35
# Leave this set to None to have OggConvert detect whether you've got the
 
36
# Matroska muxer installed. The answer is almost certainly yes, but we check
 
37
# anyway so as not to depend on gst-plugins-good. Set this to False if you want
 
38
# to disable choosing an alternative container format
 
39
HAVE_MATROSKA = None
 
40
 
35
41
FORMATS = ["THEORA", "SCHRO"]
36
42
 
37
43
 
47
53
                        , 10: 63}
48
54
 
49
55
THEORA_OPTS = {"sharpness" : 1}
50
 
 
 
56
 
 
57
SCHRO_QUALITY_MAPPING = {1 : 0
 
58
                        , 2 : 5
 
59
                        , 3 : 10
 
60
                        , 4 : 15
 
61
                        , 5 : 20
 
62
                        , 6 : 25 
 
63
                        , 7 : 30
 
64
                        , 8 : 35
 
65
                        , 9 : 40
 
66
                        , 10: 45}
 
67
 
51
68
SCHRO_OPTS = {}
52
69
 
53
70
VORBIS_QUALITY_MAPPING = {1 : 0.1