I've just finished a little encoding set and the following happened: 22Khz resampled, q-0.4 encode = ~38kbs = one error at the beginning only. 22Khz resampled, q-0.5 encode = ~37kbs = 6 to 7 sleep errors in the first second or so, nothing after that. 22Khz resampled, q-0.6 encode = ~35kbs = 14 to 15 sleep errors then nothing. 22Khz resampled, q-0.8 encode = ~33kbs = Many sleep errors. --- Geoff Shang <gshang@uq.net.au> wrote:> hmmmm. so is there a difference between the one > that works and the one > that doesn't? Bitrate, maybe? > Geoff.__________________________________________________ Do you Yahoo!? Yahoo! Mail Plus - Powerful. Affordable. Sign up now. mailplus.yahoo.com --- >8 ---- List archives: xiph.org/archives icecast project homepage: icecast.org To unsubscribe from this list, send a message to 'icecast-request@xiph.org' containing only the word 'unsubscribe' in the body. No subject is needed. Unsubscribe messages sent to the list will be ignored/filtered.
That seems to have done the trick, Karl. Thanks a lot. :-) M. --- Karl Heyes <karl@pts.tele2.co.uk> wrote:> Will you try something to get you going. In the > ices/src/input.c file >*snipped code fragments - SwiftBiscuit*> > This will give it a 5 sec tollerance instead of 1 > second. > I believe it's to do with the amount of data in an > ogg page. > > Check the log file for more of the Extended sleep > messages > > karl.<p>__________________________________________________ Do you Yahoo!? Yahoo! Mail Plus - Powerful. Affordable. Sign up now. mailplus.yahoo.com --- >8 ---- List archives: xiph.org/archives icecast project homepage: icecast.org To unsubscribe from this list, send a message to 'icecast-request@xiph.org' containing only the word 'unsubscribe' in the body. No subject is needed. Unsubscribe messages sent to the list will be ignored/filtered.
On 2002.12.02 16:08 SwiftBiscuit wrote:> I've just finished a little encoding set and the > following happened: > > 22Khz resampled, q-0.4 encode = ~38kbs = one error at > the beginning only. > > 22Khz resampled, q-0.5 encode = ~37kbs = 6 to 7 sleep > errors in the first second or so, nothing after that. > > 22Khz resampled, q-0.6 encode = ~35kbs = 14 to 15 > sleep errors then nothing. > > 22Khz resampled, q-0.8 encode = ~33kbs = Many sleep > errors.Will you try something to get you going. In the ices/src/input.c file goto line 92, you should see if(sleep > 1000) { LOG_WARN1("Extended sleep requested (%ld ms), sleeping for one second", sleep); timing_sleep(1000); } change to the following if(sleep > 5000) { LOG_WARN1("Extended sleep requested (%ld ms), sleeping for 5 seconds", sleep); timing_sleep(5000); } <p>This will give it a 5 sec tollerance instead of 1 second. I believe it's to do with the amount of data in an ogg page. Check the log file for more of the Extended sleep messages karl. --- >8 ---- List archives: xiph.org/archives icecast project homepage: icecast.org To unsubscribe from this list, send a message to 'icecast-request@xiph.org' containing only the word 'unsubscribe' in the body. No subject is needed. Unsubscribe messages sent to the list will be ignored/filtered.