Skip to content

Commit

Permalink
Fix audio handling for output stream
Browse files Browse the repository at this point in the history
  • Loading branch information
ioppermann committed Nov 9, 2018
1 parent 5e1c6bb commit 3051db8
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/classes/Restreamer.js
Original file line number Diff line number Diff line change
Expand Up @@ -312,7 +312,9 @@ class Restreamer {
}
}
else {
option = "native_h264_native_audio";
if(audio !== null) {
option = "native_h264_native_audio";
}
}

logger.debug('Selected ffmpeg option: ' + option, streamType);
Expand Down

0 comments on commit 3051db8

Please sign in to comment.