Changing (reducing) the quality of an ogg file?Issues with metadata converting mp3->oggHow to convert ogg to aac music format?convert video file to .oggConvert mp3 to ogg?Normalize .ogg audio files with the command lineConvert .mp4 to .ogg keeping only the audio, with Ubuntu 14.04 and avconvConvert OGG (And other formats) to MIDI?How do I convert WAV to FLAC and FLAC to OGG?Convert mp3 to Ogg Vorbis with SoundConverterSmaller file size for Audio-Record Ogg profile?
Help rendering a complicated sum/product formula
Using Past-Perfect interchangeably with the Past Continuous
Synchronized implementation of a bank account in Java
What should I install to correct "ld: cannot find -lgbm and -linput" so that I can compile a Rust program?
Suggestions on how to spend Shaabath (constructively) alone
A Ri-diddley-iley Riddle
Worshiping one God at a time?
Do I need to be arrogant to get ahead?
Can other pieces capture a threatening piece and prevent a checkmate?
What are substitutions for coconut in curry?
Generic TVP tradeoffs?
What if (if any) the reason to buy in small local stores?
Existance of a celestial body big enough for early civilization to be thought of as a second moon
Is it insecure to send a password in a `curl` command?
What favor did Moody owe Dumbledore?
Print a physical multiplication table
Probably overheated black color SMD pads
Asserting that Atheism and Theism are both faith based positions
Naive Monte Carlo, MCMC and their use in Bayesian Theory
Geography in 3D perspective
What does Deadpool mean by "left the house in that shirt"?
How to generate binary array whose elements with values 1 are randomly drawn
I got the following comment from a reputed math journal. What does it mean?
If "dar" means "to give", what does "daros" mean?
Changing (reducing) the quality of an ogg file?
Issues with metadata converting mp3->oggHow to convert ogg to aac music format?convert video file to .oggConvert mp3 to ogg?Normalize .ogg audio files with the command lineConvert .mp4 to .ogg keeping only the audio, with Ubuntu 14.04 and avconvConvert OGG (And other formats) to MIDI?How do I convert WAV to FLAC and FLAC to OGG?Convert mp3 to Ogg Vorbis with SoundConverterSmaller file size for Audio-Record Ogg profile?
I have an .ogg file (containing speech) with 192kbps quality that i'd like to reduce to 32kbps (to save space)
How can i do this?
So far i've tried this:
ffmpeg -i filename.ogg -ab 32k -f ogg new-filename.ogg
But i get this error:
[libvorbis @ 0x56157365ab60] encoder setup failed
Error initializing output stream 0:0 -- Error while opening encoder for output stream #0:0 - maybe incorrect parameters such as bit_rate, rate, width or height
Conversion failed!
Am i using the wrong command? Is there a better approach i can take to save space? Please note that i only have access to the 192kbps file (not the original)
Grateful for help!
ffmpeg convert conversion ogg-vorbis
add a comment |
I have an .ogg file (containing speech) with 192kbps quality that i'd like to reduce to 32kbps (to save space)
How can i do this?
So far i've tried this:
ffmpeg -i filename.ogg -ab 32k -f ogg new-filename.ogg
But i get this error:
[libvorbis @ 0x56157365ab60] encoder setup failed
Error initializing output stream 0:0 -- Error while opening encoder for output stream #0:0 - maybe incorrect parameters such as bit_rate, rate, width or height
Conversion failed!
Am i using the wrong command? Is there a better approach i can take to save space? Please note that i only have access to the 192kbps file (not the original)
Grateful for help!
ffmpeg convert conversion ogg-vorbis
The error message indicates you have the encoding parameters wrong.
– vanadium
Feb 17 at 16:02
add a comment |
I have an .ogg file (containing speech) with 192kbps quality that i'd like to reduce to 32kbps (to save space)
How can i do this?
So far i've tried this:
ffmpeg -i filename.ogg -ab 32k -f ogg new-filename.ogg
But i get this error:
[libvorbis @ 0x56157365ab60] encoder setup failed
Error initializing output stream 0:0 -- Error while opening encoder for output stream #0:0 - maybe incorrect parameters such as bit_rate, rate, width or height
Conversion failed!
Am i using the wrong command? Is there a better approach i can take to save space? Please note that i only have access to the 192kbps file (not the original)
Grateful for help!
ffmpeg convert conversion ogg-vorbis
I have an .ogg file (containing speech) with 192kbps quality that i'd like to reduce to 32kbps (to save space)
How can i do this?
So far i've tried this:
ffmpeg -i filename.ogg -ab 32k -f ogg new-filename.ogg
But i get this error:
[libvorbis @ 0x56157365ab60] encoder setup failed
Error initializing output stream 0:0 -- Error while opening encoder for output stream #0:0 - maybe incorrect parameters such as bit_rate, rate, width or height
Conversion failed!
Am i using the wrong command? Is there a better approach i can take to save space? Please note that i only have access to the 192kbps file (not the original)
Grateful for help!
ffmpeg convert conversion ogg-vorbis
ffmpeg convert conversion ogg-vorbis
edited Feb 17 at 10:52
sunyata
asked Feb 17 at 10:47
sunyatasunyata
14410
14410
The error message indicates you have the encoding parameters wrong.
– vanadium
Feb 17 at 16:02
add a comment |
The error message indicates you have the encoding parameters wrong.
– vanadium
Feb 17 at 16:02
The error message indicates you have the encoding parameters wrong.
– vanadium
Feb 17 at 16:02
The error message indicates you have the encoding parameters wrong.
– vanadium
Feb 17 at 16:02
add a comment |
3 Answers
3
active
oldest
votes
There are two excellent choices here:
- Adjust your FFmpeg command line to produce a smaller Ogg Vorbis file
- Use FFmpeg to create a small file using libopus
Details of both are below:
1. Adjust your FFmpeg command line...
The key issue is that FFmpeg will not automagically change the audio sampling rate to appropriately match your selected bitrate. But then FFmpeg usually does not do a lot of hand holding I guess!
Bear in mind that an Audio CD will normally have a sampling rate of 44100 Hz while simple telephony would normally have a sampling rate of slightly greater than 8000 Hz. So you have a choice to make for the best sampling rate for your 32k Ogg Vorbis audio. The following are some guidelines:
44100 Hz: Typical Audio CD sample rate. Rejected by FFmpeg for a 32k file.
32000 Hz: Adequate for speech and also adequate for other audio files where a smaller file size is required with an expected small loss of quality. Rejected by FFmpeg for a 32k file.
22050 Hz: Adequate for speech and usable for other audio with the expectation that there will be audio quality loss. Accepted by FFmpeg for a 32k file.
11025 Hz: Very poor sound quality. Accepted by FFmpeg for a 32k file.
8000 Hz: Slightly lower sampling rate than a modern telephony system, not recommended for most recording tasks. Accepted by FFmpeg for a 32k file.
With this in mind my own testing suggests that you would be best to use a sampling rate of 22050 Hz, note that this should be perfectly adequate for speech, and thus your command line should be:
ffmpeg -i filename.ogg -c:a libvorbis -ab 32k -ar 22050 new-filename.ogg
And this produced a quite reasonable outcome on my own setup...
2. Use FFmpeg to create a small file using libopus...
If you are perhaps not all that set on using Ogg Vorbis an excellent alternative is to use Opus, which in my tests shaved a reasonable number of kilobytes off each file in comparison to the Ogg Vorbis 32k encode. Try something like the following which has been tailored for your speech files:
ffmpeg -i filename.ogg
-c:a libopus -b:a 16k -ar 16000 -ac 1 -application voip
new-filename.ogg
You will be pleasantly surprised by both the resulting output file size and audio quality. I have included a link to a great HydrogenAudio resource in the 'References' which should guide to an even better command line for Opus...
References:
Sample Rates: A nice page from the Audacity developers that demonstrates the best settings for audio sample rates.Speech encoding quality: The definitive HydrogenAudio page to guide Opus settings for speech.
15.8 libopus: FFmpeg options for use with libopus encoding. Note the
-application voip
setting that I used above and which does not have an equivalent with opusenc (unlike the other settings).
Thank you! I ended up using opus like this:ffmpeg -i filename.ogg -c:a libopus -ar 16k -ac 1 -b:a 16k -vbr on -compression_level 10 new_filename.ogg
– sunyata
Feb 18 at 20:45
@sunyata-compression_level 10
is the default for this encoder so you can remove that.
– llogan
Feb 19 at 18:44
add a comment |
This low bitrate is not supported with the default sampling rate of the file. You must specify a lower sampling rate before you can lower the bitrate. Add the option -ar 8000 for your option -b:a 32k to be accepted.
add a comment |
Opus does not allow any sampling rates of the output other than 48000hz. The -ar option is redundant.
New contributor
add a comment |
Your Answer
StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "89"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);
else
createEditor();
);
function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);
);
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f1118939%2fchanging-reducing-the-quality-of-an-ogg-file%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
3 Answers
3
active
oldest
votes
3 Answers
3
active
oldest
votes
active
oldest
votes
active
oldest
votes
There are two excellent choices here:
- Adjust your FFmpeg command line to produce a smaller Ogg Vorbis file
- Use FFmpeg to create a small file using libopus
Details of both are below:
1. Adjust your FFmpeg command line...
The key issue is that FFmpeg will not automagically change the audio sampling rate to appropriately match your selected bitrate. But then FFmpeg usually does not do a lot of hand holding I guess!
Bear in mind that an Audio CD will normally have a sampling rate of 44100 Hz while simple telephony would normally have a sampling rate of slightly greater than 8000 Hz. So you have a choice to make for the best sampling rate for your 32k Ogg Vorbis audio. The following are some guidelines:
44100 Hz: Typical Audio CD sample rate. Rejected by FFmpeg for a 32k file.
32000 Hz: Adequate for speech and also adequate for other audio files where a smaller file size is required with an expected small loss of quality. Rejected by FFmpeg for a 32k file.
22050 Hz: Adequate for speech and usable for other audio with the expectation that there will be audio quality loss. Accepted by FFmpeg for a 32k file.
11025 Hz: Very poor sound quality. Accepted by FFmpeg for a 32k file.
8000 Hz: Slightly lower sampling rate than a modern telephony system, not recommended for most recording tasks. Accepted by FFmpeg for a 32k file.
With this in mind my own testing suggests that you would be best to use a sampling rate of 22050 Hz, note that this should be perfectly adequate for speech, and thus your command line should be:
ffmpeg -i filename.ogg -c:a libvorbis -ab 32k -ar 22050 new-filename.ogg
And this produced a quite reasonable outcome on my own setup...
2. Use FFmpeg to create a small file using libopus...
If you are perhaps not all that set on using Ogg Vorbis an excellent alternative is to use Opus, which in my tests shaved a reasonable number of kilobytes off each file in comparison to the Ogg Vorbis 32k encode. Try something like the following which has been tailored for your speech files:
ffmpeg -i filename.ogg
-c:a libopus -b:a 16k -ar 16000 -ac 1 -application voip
new-filename.ogg
You will be pleasantly surprised by both the resulting output file size and audio quality. I have included a link to a great HydrogenAudio resource in the 'References' which should guide to an even better command line for Opus...
References:
Sample Rates: A nice page from the Audacity developers that demonstrates the best settings for audio sample rates.Speech encoding quality: The definitive HydrogenAudio page to guide Opus settings for speech.
15.8 libopus: FFmpeg options for use with libopus encoding. Note the
-application voip
setting that I used above and which does not have an equivalent with opusenc (unlike the other settings).
Thank you! I ended up using opus like this:ffmpeg -i filename.ogg -c:a libopus -ar 16k -ac 1 -b:a 16k -vbr on -compression_level 10 new_filename.ogg
– sunyata
Feb 18 at 20:45
@sunyata-compression_level 10
is the default for this encoder so you can remove that.
– llogan
Feb 19 at 18:44
add a comment |
There are two excellent choices here:
- Adjust your FFmpeg command line to produce a smaller Ogg Vorbis file
- Use FFmpeg to create a small file using libopus
Details of both are below:
1. Adjust your FFmpeg command line...
The key issue is that FFmpeg will not automagically change the audio sampling rate to appropriately match your selected bitrate. But then FFmpeg usually does not do a lot of hand holding I guess!
Bear in mind that an Audio CD will normally have a sampling rate of 44100 Hz while simple telephony would normally have a sampling rate of slightly greater than 8000 Hz. So you have a choice to make for the best sampling rate for your 32k Ogg Vorbis audio. The following are some guidelines:
44100 Hz: Typical Audio CD sample rate. Rejected by FFmpeg for a 32k file.
32000 Hz: Adequate for speech and also adequate for other audio files where a smaller file size is required with an expected small loss of quality. Rejected by FFmpeg for a 32k file.
22050 Hz: Adequate for speech and usable for other audio with the expectation that there will be audio quality loss. Accepted by FFmpeg for a 32k file.
11025 Hz: Very poor sound quality. Accepted by FFmpeg for a 32k file.
8000 Hz: Slightly lower sampling rate than a modern telephony system, not recommended for most recording tasks. Accepted by FFmpeg for a 32k file.
With this in mind my own testing suggests that you would be best to use a sampling rate of 22050 Hz, note that this should be perfectly adequate for speech, and thus your command line should be:
ffmpeg -i filename.ogg -c:a libvorbis -ab 32k -ar 22050 new-filename.ogg
And this produced a quite reasonable outcome on my own setup...
2. Use FFmpeg to create a small file using libopus...
If you are perhaps not all that set on using Ogg Vorbis an excellent alternative is to use Opus, which in my tests shaved a reasonable number of kilobytes off each file in comparison to the Ogg Vorbis 32k encode. Try something like the following which has been tailored for your speech files:
ffmpeg -i filename.ogg
-c:a libopus -b:a 16k -ar 16000 -ac 1 -application voip
new-filename.ogg
You will be pleasantly surprised by both the resulting output file size and audio quality. I have included a link to a great HydrogenAudio resource in the 'References' which should guide to an even better command line for Opus...
References:
Sample Rates: A nice page from the Audacity developers that demonstrates the best settings for audio sample rates.Speech encoding quality: The definitive HydrogenAudio page to guide Opus settings for speech.
15.8 libopus: FFmpeg options for use with libopus encoding. Note the
-application voip
setting that I used above and which does not have an equivalent with opusenc (unlike the other settings).
Thank you! I ended up using opus like this:ffmpeg -i filename.ogg -c:a libopus -ar 16k -ac 1 -b:a 16k -vbr on -compression_level 10 new_filename.ogg
– sunyata
Feb 18 at 20:45
@sunyata-compression_level 10
is the default for this encoder so you can remove that.
– llogan
Feb 19 at 18:44
add a comment |
There are two excellent choices here:
- Adjust your FFmpeg command line to produce a smaller Ogg Vorbis file
- Use FFmpeg to create a small file using libopus
Details of both are below:
1. Adjust your FFmpeg command line...
The key issue is that FFmpeg will not automagically change the audio sampling rate to appropriately match your selected bitrate. But then FFmpeg usually does not do a lot of hand holding I guess!
Bear in mind that an Audio CD will normally have a sampling rate of 44100 Hz while simple telephony would normally have a sampling rate of slightly greater than 8000 Hz. So you have a choice to make for the best sampling rate for your 32k Ogg Vorbis audio. The following are some guidelines:
44100 Hz: Typical Audio CD sample rate. Rejected by FFmpeg for a 32k file.
32000 Hz: Adequate for speech and also adequate for other audio files where a smaller file size is required with an expected small loss of quality. Rejected by FFmpeg for a 32k file.
22050 Hz: Adequate for speech and usable for other audio with the expectation that there will be audio quality loss. Accepted by FFmpeg for a 32k file.
11025 Hz: Very poor sound quality. Accepted by FFmpeg for a 32k file.
8000 Hz: Slightly lower sampling rate than a modern telephony system, not recommended for most recording tasks. Accepted by FFmpeg for a 32k file.
With this in mind my own testing suggests that you would be best to use a sampling rate of 22050 Hz, note that this should be perfectly adequate for speech, and thus your command line should be:
ffmpeg -i filename.ogg -c:a libvorbis -ab 32k -ar 22050 new-filename.ogg
And this produced a quite reasonable outcome on my own setup...
2. Use FFmpeg to create a small file using libopus...
If you are perhaps not all that set on using Ogg Vorbis an excellent alternative is to use Opus, which in my tests shaved a reasonable number of kilobytes off each file in comparison to the Ogg Vorbis 32k encode. Try something like the following which has been tailored for your speech files:
ffmpeg -i filename.ogg
-c:a libopus -b:a 16k -ar 16000 -ac 1 -application voip
new-filename.ogg
You will be pleasantly surprised by both the resulting output file size and audio quality. I have included a link to a great HydrogenAudio resource in the 'References' which should guide to an even better command line for Opus...
References:
Sample Rates: A nice page from the Audacity developers that demonstrates the best settings for audio sample rates.Speech encoding quality: The definitive HydrogenAudio page to guide Opus settings for speech.
15.8 libopus: FFmpeg options for use with libopus encoding. Note the
-application voip
setting that I used above and which does not have an equivalent with opusenc (unlike the other settings).
There are two excellent choices here:
- Adjust your FFmpeg command line to produce a smaller Ogg Vorbis file
- Use FFmpeg to create a small file using libopus
Details of both are below:
1. Adjust your FFmpeg command line...
The key issue is that FFmpeg will not automagically change the audio sampling rate to appropriately match your selected bitrate. But then FFmpeg usually does not do a lot of hand holding I guess!
Bear in mind that an Audio CD will normally have a sampling rate of 44100 Hz while simple telephony would normally have a sampling rate of slightly greater than 8000 Hz. So you have a choice to make for the best sampling rate for your 32k Ogg Vorbis audio. The following are some guidelines:
44100 Hz: Typical Audio CD sample rate. Rejected by FFmpeg for a 32k file.
32000 Hz: Adequate for speech and also adequate for other audio files where a smaller file size is required with an expected small loss of quality. Rejected by FFmpeg for a 32k file.
22050 Hz: Adequate for speech and usable for other audio with the expectation that there will be audio quality loss. Accepted by FFmpeg for a 32k file.
11025 Hz: Very poor sound quality. Accepted by FFmpeg for a 32k file.
8000 Hz: Slightly lower sampling rate than a modern telephony system, not recommended for most recording tasks. Accepted by FFmpeg for a 32k file.
With this in mind my own testing suggests that you would be best to use a sampling rate of 22050 Hz, note that this should be perfectly adequate for speech, and thus your command line should be:
ffmpeg -i filename.ogg -c:a libvorbis -ab 32k -ar 22050 new-filename.ogg
And this produced a quite reasonable outcome on my own setup...
2. Use FFmpeg to create a small file using libopus...
If you are perhaps not all that set on using Ogg Vorbis an excellent alternative is to use Opus, which in my tests shaved a reasonable number of kilobytes off each file in comparison to the Ogg Vorbis 32k encode. Try something like the following which has been tailored for your speech files:
ffmpeg -i filename.ogg
-c:a libopus -b:a 16k -ar 16000 -ac 1 -application voip
new-filename.ogg
You will be pleasantly surprised by both the resulting output file size and audio quality. I have included a link to a great HydrogenAudio resource in the 'References' which should guide to an even better command line for Opus...
References:
Sample Rates: A nice page from the Audacity developers that demonstrates the best settings for audio sample rates.Speech encoding quality: The definitive HydrogenAudio page to guide Opus settings for speech.
15.8 libopus: FFmpeg options for use with libopus encoding. Note the
-application voip
setting that I used above and which does not have an equivalent with opusenc (unlike the other settings).
edited Feb 19 at 1:30
answered Feb 18 at 6:57
andrew.46andrew.46
22.1k1469150
22.1k1469150
Thank you! I ended up using opus like this:ffmpeg -i filename.ogg -c:a libopus -ar 16k -ac 1 -b:a 16k -vbr on -compression_level 10 new_filename.ogg
– sunyata
Feb 18 at 20:45
@sunyata-compression_level 10
is the default for this encoder so you can remove that.
– llogan
Feb 19 at 18:44
add a comment |
Thank you! I ended up using opus like this:ffmpeg -i filename.ogg -c:a libopus -ar 16k -ac 1 -b:a 16k -vbr on -compression_level 10 new_filename.ogg
– sunyata
Feb 18 at 20:45
@sunyata-compression_level 10
is the default for this encoder so you can remove that.
– llogan
Feb 19 at 18:44
Thank you! I ended up using opus like this:
ffmpeg -i filename.ogg -c:a libopus -ar 16k -ac 1 -b:a 16k -vbr on -compression_level 10 new_filename.ogg
– sunyata
Feb 18 at 20:45
Thank you! I ended up using opus like this:
ffmpeg -i filename.ogg -c:a libopus -ar 16k -ac 1 -b:a 16k -vbr on -compression_level 10 new_filename.ogg
– sunyata
Feb 18 at 20:45
@sunyata
-compression_level 10
is the default for this encoder so you can remove that.– llogan
Feb 19 at 18:44
@sunyata
-compression_level 10
is the default for this encoder so you can remove that.– llogan
Feb 19 at 18:44
add a comment |
This low bitrate is not supported with the default sampling rate of the file. You must specify a lower sampling rate before you can lower the bitrate. Add the option -ar 8000 for your option -b:a 32k to be accepted.
add a comment |
This low bitrate is not supported with the default sampling rate of the file. You must specify a lower sampling rate before you can lower the bitrate. Add the option -ar 8000 for your option -b:a 32k to be accepted.
add a comment |
This low bitrate is not supported with the default sampling rate of the file. You must specify a lower sampling rate before you can lower the bitrate. Add the option -ar 8000 for your option -b:a 32k to be accepted.
This low bitrate is not supported with the default sampling rate of the file. You must specify a lower sampling rate before you can lower the bitrate. Add the option -ar 8000 for your option -b:a 32k to be accepted.
answered Feb 17 at 16:16
vanadiumvanadium
6,71611431
6,71611431
add a comment |
add a comment |
Opus does not allow any sampling rates of the output other than 48000hz. The -ar option is redundant.
New contributor
add a comment |
Opus does not allow any sampling rates of the output other than 48000hz. The -ar option is redundant.
New contributor
add a comment |
Opus does not allow any sampling rates of the output other than 48000hz. The -ar option is redundant.
New contributor
Opus does not allow any sampling rates of the output other than 48000hz. The -ar option is redundant.
New contributor
New contributor
answered 11 mins ago
SdsSds
1
1
New contributor
New contributor
add a comment |
add a comment |
Thanks for contributing an answer to Ask Ubuntu!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f1118939%2fchanging-reducing-the-quality-of-an-ogg-file%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
The error message indicates you have the encoding parameters wrong.
– vanadium
Feb 17 at 16:02