Skip to content

Commit

Permalink
HLS: Fix audio-only bitrate to 64k per Apple recommendations. This wa…
Browse files Browse the repository at this point in the history
…s actually already done at the transcoder end, it seems HTTPLiveStream also needed telling to label the streams correctly.
  • Loading branch information
stuartm committed Feb 27, 2014
1 parent 7133fc4 commit 1012ad3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mythtv/libs/libmythtv/HLS/httplivestream.cpp
Expand Up @@ -124,7 +124,7 @@ HTTPLiveStream::HTTPLiveStream(QString srcFile, uint16_t width, uint16_t height,
m_segmentSize = 10; m_segmentSize = 10;


if (m_audioOnlyBitrate == 0) if (m_audioOnlyBitrate == 0)
m_audioOnlyBitrate = 32000; m_audioOnlyBitrate = 64000;


m_sourceHost = gCoreContext->GetHostName(); m_sourceHost = gCoreContext->GetHostName();


Expand Down

0 comments on commit 1012ad3

Please sign in to comment.