-
Notifications
You must be signed in to change notification settings - Fork 143
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Kickflip audio noise #60
Comments
Hi, I have the same problem. |
same as issue #39 |
yes, this error occurred in 6, 6s |
@thien1234 take a look at this: #39#issuecomment-218449425 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Does anyone have trouble with noise audio when using live video streaming with Kickflip ? I tried to change:
(void) setupEncoders {
self.audioSampleRate = 44100;
self.videoHeight = 720;
self.videoWidth = 1280;
int audioBitrate = 64 * 1000; // 64 Kbps
int maxBitrate = [Kickflip maxBitrate];
int videoBitrate = maxBitrate - audioBitrate;
_h264Encoder = [[KFH264Encoder alloc] initWithBitrate:videoBitrate width:self.videoWidth height:self.videoHeight];
_h264Encoder.delegate = self;
_aacEncoder = [[KFAACEncoder alloc] initWithBitrate:audioBitrate sampleRate:self.audioSampleRate channels:1];
_aacEncoder.delegate = self;
_aacEncoder.addADTSHeader = YES;
}
From int audioBitrate = 64 * 1000; To int audioBitrate = 128 * 1000;
But it 's not successful. Please give me a hint. Thanks in advance.
The text was updated successfully, but these errors were encountered: