We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
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:
Hi, I have the same problem. Do you have a way to reproduce it? What iOS version, what phone 6s?
Sorry, something went wrong.
same as issue #39
yes, this error occurred in 6, 6s
@thien1234 take a look at this: #39#issuecomment-218449425
No branches or pull requests
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: