[SLE] KAudioCreator - Ogg quality
Hi I'm trying to find an option to set the quality/bitrate foe Ogg encoding in KAudiocreator, but I can't find anything, can somebody advise please ? TIA Mike -- Check the headers for your unsubscription address For additional commands send e-mail to suse-linux-e-help@suse.com Also check the archives at http://lists.suse.com Please read the FAQs: suse-linux-e-faq@suse.com
On 31/07/06 10:58 +0100, michael norman wrote:
I'm trying to find an option to set the quality/bitrate foe Ogg encoding in KAudiocreator, but I can't find anything, can somebody advise please ?
Settings->Configure KAudioCreator->Encoder->OggEnc->Configure Then you can select the command line options you'd like to use. man 1 oggenc will provide you with available options, including bitrate. hth craig -- Check the headers for your unsubscription address For additional commands send e-mail to suse-linux-e-help@suse.com Also check the archives at http://lists.suse.com Please read the FAQs: suse-linux-e-faq@suse.com
On Monday 31 July 2006 11:48, Craig Millar wrote:
On 31/07/06 10:58 +0100, michael norman wrote:
I'm trying to find an option to set the quality/bitrate foe Ogg encoding in KAudiocreator, but I can't find anything, can somebody advise please ?
Settings->Configure KAudioCreator->Encoder->OggEnc->Configure
Then you can select the command line options you'd like to use. man 1 oggenc will provide you with available options, including bitrate. hth
This is what's there at the moment. oggenc -o %o --artist %{artist} --album %{albumtitle} --title %{title} --date %{year} --tracknum %{number} --genre %{genre} %f I know i need to add -q and a value say -q6, but I'm not sure where in the line to add it. -- Check the headers for your unsubscription address For additional commands send e-mail to suse-linux-e-help@suse.com Also check the archives at http://lists.suse.com Please read the FAQs: suse-linux-e-faq@suse.com
On Monday 31 July 2006 08:28, michael norman wrote:
On Monday 31 July 2006 11:48, Craig Millar wrote:
On 31/07/06 10:58 +0100, michael norman wrote:
I'm trying to find an option to set the quality/bitrate foe Ogg encoding in KAudiocreator, but I can't find anything, can somebody advise please ?
Settings->Configure KAudioCreator->Encoder->OggEnc->Configure
Then you can select the command line options you'd like to use. man 1 oggenc will provide you with available options, including bitrate. hth
This is what's there at the moment.
oggenc -o %o --artist %{artist} --album %{albumtitle} --title %{title} --date %{year} --tracknum %{number} --genre %{genre} %f
I know i need to add -q and a value say -q6, but I'm not sure where in the line to add it.
Essentially anywhere as long as you don't insert it in the *middle* of some other option setting. like either *before* the "-o %o" or after that. -- Check the headers for your unsubscription address For additional commands send e-mail to suse-linux-e-help@suse.com Also check the archives at http://lists.suse.com Please read the FAQs: suse-linux-e-faq@suse.com
I know i need to add -q and a value say -q6, but I'm not sure where in the line to add it.
Essentially anywhere as long as you don't insert it in the *middle* of some other option setting.
like either *before* the "-o %o" or after that.
That's what I thought, so I tried this oggenc -q6 -o %o --artist %{artist} --album %{albumtitle} --title %{title} --date %{year} --tracknum %{number} --genre %{genre} %f and encoding failed with Cannot place file, unable to make directories. Then I tried oggenc -o %o --artist %{artist} --album %{albumtitle} --title %{title} --date %{year} --tracknum %{number} --genre %{genre} %f -q6 and got the same error. Have I got the q option wrong ? -- Check the headers for your unsubscription address For additional commands send e-mail to suse-linux-e-help@suse.com Also check the archives at http://lists.suse.com Please read the FAQs: suse-linux-e-faq@suse.com
michael norman wrote:
Cannot place file, unable to make directories.
Read your error message! It can't make the directories. Try checking the directory permissions where the files are being put. Raoul. -- Check the headers for your unsubscription address For additional commands send e-mail to suse-linux-e-help@suse.com Also check the archives at http://lists.suse.com Please read the FAQs: suse-linux-e-faq@suse.com
On Monday 31 July 2006 14:50, Raoul Snyman wrote:
michael norman wrote:
Cannot place file, unable to make directories.
Read your error message! It can't make the directories. Try checking the directory permissions where the files are being put.
Raoul.
Thank you. I see now what happened, when I tried to add the q option I must have messed up some of the other settings. So I restored the default ogg settings without any additions. That worked so I then added --quality=6 to the end and I can now encode to ogg in the quality I want, Thanks to you and Bruce Marshall for your help. Mike -- Check the headers for your unsubscription address For additional commands send e-mail to suse-linux-e-help@suse.com Also check the archives at http://lists.suse.com Please read the FAQs: suse-linux-e-faq@suse.com
On Monday 31 July 2006 09:42, michael norman wrote:
I know i need to add -q and a value say -q6, but I'm not sure where in the line to add it.
Essentially anywhere as long as you don't insert it in the *middle* of some other option setting.
like either *before* the "-o %o" or after that.
That's what I thought, so I tried this
oggenc -q6 -o %o --artist %{artist} --album %{albumtitle} --title %{title} --date %{year} --tracknum %{number} --genre %{genre} %f
and encoding failed with
Cannot place file, unable to make directories.
Then I tried
oggenc -o %o --artist %{artist} --album %{albumtitle} --title %{title} --date %{year} --tracknum %{number} --genre %{genre} %f -q6
and got the same error.
Have I got the q option wrong ?
Try a blank after the -q or try --quality=6 see 'man oggenc' From the examples: Specifying quality rather than bitrate (to a very high quality mode) oggenc infile.wav -q 6 out.ogg -- Check the headers for your unsubscription address For additional commands send e-mail to suse-linux-e-help@suse.com Also check the archives at http://lists.suse.com Please read the FAQs: suse-linux-e-faq@suse.com
participants (4)
-
Bruce Marshall
-
Craig Millar
-
michael norman
-
Raoul Snyman