Alexey Vasilyev

Results 44 comments of Alexey Vasilyev
trafficstars

Used to work. Now I'm getting 404 error.

It works now. What I see at the moment that audio decoder is constantly crashing. ``` m=audio 0 RTP/AVP 96 a=rtpmap:96 mpeg4-generic/44100/2 a=fmtp:96 profile-level-id=1;mode=AAC-hbr;sizelength=13;indexlength=3;indexdeltalength=3;config=1210fff15081ffdffc a=control:trackID=1 Audio: AAC LC, sample rate:...

No. Enable wowza send mono audio only.

Another option to try in AudioDecodeThread.kt ``` // val csd0 = getAacDecoderConfigData(sampleRate, channelCount) // val bb = ByteBuffer.wrap(csd0) // format.setByteBuffer("csd-0", bb) format.setInteger(MediaFormat.KEY_CHANNEL_COUNT, channelCount) format.setInteger(MediaFormat.KEY_SAMPLE_RATE, sampleRate) format.setInteger(MediaFormat.KEY_AAC_PROFILE, MediaCodecInfo.CodecProfileLevel.AACObjectLC) ``` And change...

I made small changes to 1.3.1. It will not fix your problem. But at least it is not crashing at the moment.

Have the same problem on Android 2.2.

Let me know when you done. I will make the testing.

Just some notes regarding Amazon Fire TV apps. "the the ability to rate apps is not currently supported by Amazon Fire TV. Your app should not prompt the user for...

The following function can be used for that ``` // http://stackoverflow.com/questions/3758606/how-to-convert-byte-size-into-human-readable-format-in-java public static String humanReadableByteCount(long bytes) { int unit = 1024; if (bytes < unit) return bytes + "B"; int...