Keyword

MP3s sound like chipmunks!

  • directtech
  • directtech's Avatar Topic Author
  • Offline
  • New Member
More
16 years 11 months ago #2202 by directtech
MP3s sound like chipmunks! was created by directtech
I have successfully used this plugin on many sites, but I have a client who is having MP3 issues. The MP3 will load and play, but it sounds like chipmunks. Can you tell me why this is happening?? THanks.

Please Log in or Create an account to join the conversation.

More
16 years 11 months ago #2203 by michel12
Replied by michel12 on topic Re: MP3s sound like chipmunks!
I have the same problem, when mp3 is coded by Lame everything is ok. But when coded by Fraunhofer the mp3 play's at double speed, i hope there will be a bug fix for this problem.

Besides that, AllVideos Plugin is really cool!

Greetings, Michel

Please Log in or Create an account to join the conversation.

More
16 years 11 months ago #2204 by JoomlaWorks
Replied by JoomlaWorks on topic Re: MP3s sound like chipmunks!
The problem is not with the codec used. The MP3s must NOT be encoded in Variable Bit Rate (VBR). They SHOYLD be encoded in Constant Bit Rate (CBR) mode.  ;)

BTW, LAME is the best codec out there :)

Fotis / JoomlaWorks Support Team
---
Please search the forum before posting a new topic :)

Please Log in or Create an account to join the conversation.

  • directtech
  • directtech's Avatar Topic Author
  • Offline
  • New Member
More
16 years 11 months ago #2205 by directtech
Replied by directtech on topic Re: MP3s sound like chipmunks!
The client is using WavePad, importing CD track, converting to MP3 16bit mono constant bit rate.  NOT using VBR.  Any other ideas?

Please Log in or Create an account to join the conversation.

More
16 years 11 months ago #2206 by michel12
Replied by michel12 on topic Re: MP3s sound like chipmunks!
Thanx for you're reaction, I'll try to not encode in VBR  :)

Greetings, Michel

Please Log in or Create an account to join the conversation.

More
16 years 11 months ago #2207 by JoomlaWorks
Replied by JoomlaWorks on topic Re: MP3s sound like chipmunks!

The client is using WavePad, importing CD track, converting to MP3 16bit mono constant bit rate.  NOT using VBR.  Any other ideas?


What bitrate are they using? Is it too high?

Fotis / JoomlaWorks Support Team
---
Please search the forum before posting a new topic :)

Please Log in or Create an account to join the conversation.

  • directtech
  • directtech's Avatar Topic Author
  • Offline
  • New Member
More
16 years 11 months ago #2208 by directtech
Replied by directtech on topic Re: MP3s sound like chipmunks!
He used 16kbps to keep the file size down.  It is just talking, no music.  Could it be too low??

Please Log in or Create an account to join the conversation.

More
16 years 11 months ago #2209 by JoomlaWorks
Replied by JoomlaWorks on topic Re: MP3s sound like chipmunks!
Hmm, perhaps. Try 36 or 48 at least.

Fotis / JoomlaWorks Support Team
---
Please search the forum before posting a new topic :)

Please Log in or Create an account to join the conversation.

  • directtech
  • directtech's Avatar Topic Author
  • Offline
  • New Member
More
16 years 11 months ago #2210 by directtech
Replied by directtech on topic Re: MP3s sound like chipmunks!
Re-encoded at 36bit and it works fine.  Tried another one at 16 and it did the chipmunks again.  I'll have the client stick with 36kbps.  Now we know :)  Thanks for your help.

Please Log in or Create an account to join the conversation.

More
16 years 11 months ago #2211 by michel12
Replied by michel12 on topic Re: MP3s sound like chipmunks!
Hi, i've tested some different bitrates (Lame). Some of the bitrates are playing to fast (like chipmunks), most of them play ok. I hope there will be a bugfix for this problem in the future.

Here are the results:

#!/bin/bash

#Source file
SF=./test.wav

# -r    Assume  the  input  file  is  raw  pcm
# -m j  Joint-stereo
# -m m  Mono
# -a    Mix the stereo input file to mono
# -b xx  Bitrate
# --abr  Average bitrate


lame -a  -b 16    $SF test-b16-a.mp3 //ok
lame -m m --abr 16 $SF test-abr16-m.mp3 //ok
lame -a  --abr 16 $SF test-abr16-a.mp3 //ok

lame -a  --abr 24 $SF test-abr24-a.mp3 //plays to fast

lame      -b 32    $SF test-b32.mp3 //ok
lame      --abr 32 $SF test-abr32.mp3 //ok
lame -a  --abr 32 $SF test-abr32-a.mp3 //ok

lame      --abr 40 $SF test-abr40.mp3 //plays to fast
lame      --abr 56 $SF test-abr56.mp3 //ok
lame      --abr 64 $SF test-abr64.mp3 //ok
lame      --abr 96 $SF test-abr96.mp3 //plays to fast

lame      -b 96    $SF test-b96.mp3  //plays to fast
lame      $SF test.mp3 //ok

Greetings, Michel

Please Log in or Create an account to join the conversation.


Powered by Kunena Forum