Add a default export format to prevent dialog from crashing when used for first time

git-svn-id: svn://localhost/ardour2/branches/3.0@8084 d708f5d6-7413-0410-9779-e7cbd77b26cf
This commit is contained in:
Sakari Bergen 2010-11-25 14:32:46 +00:00
parent 49ce9ba634
commit ba2c3baa99
2 changed files with 33 additions and 0 deletions

View File

@ -0,0 +1,30 @@
<?xml version="1.0" encoding="UTF-8"?>
<ExportFormatSpecification name="CD" id="888228ba-4863-4906-a059-7bc01023c113">
<Encoding id="F_WAV" type="T_Sndfile" extension="wav" name="WAV" has-sample-format="true" channel-limit="256"/>
<SampleRate rate="44100"/>
<SRCQuality quality="SRC_SincBest"/>
<EncodingOptions>
<Option name="sample-format" value="SF_16"/>
<Option name="dithering" value="D_Shaped"/>
<Option name="tag-metadata" value="false"/>
<Option name="tag-support" value="false"/>
<Option name="broadcast-info" value="false"/>
</EncodingOptions>
<Processing>
<Normalize enabled="true" target="-0"/>
<Silence>
<Start>
<Trim enabled="false"/>
<Add enabled="false">
<Duration format="Timecode" hours="0" minutes="0" seconds="0" frames="0"/>
</Add>
</Start>
<End>
<Trim enabled="false"/>
<Add enabled="false">
<Duration format="Timecode" hours="0" minutes="0" seconds="0" frames="0"/>
</Add>
</End>
</Silence>
</Processing>
</ExportFormatSpecification>

View File

@ -470,6 +470,9 @@ def build(bld):
# Default UI configuration
bld.install_files('${CONFIGDIR}/ardour3', 'ardour3_ui_default.conf')
# Default export stuff
bld.install_files('${CONFIGDIR}/ardour3/export', 'export/*.format')
# i18n
if bld.env['ENABLE_NLS']: