We now support audio when doing video encoding

This commit is contained in:
Isaac Connor 2021-02-22 09:55:40 -05:00
parent 7c042c7837
commit 9fec32fdc5
1 changed files with 2 additions and 2 deletions

View File

@ -993,7 +993,7 @@ $videowriter_encoders = array(
'mpeg1' => 'mpeg1', 'mpeg1' => 'mpeg1',
'mpeg2' => 'mpeg2', 'mpeg2' => 'mpeg2',
); );
echo htmlSelect( 'newMonitor[Encoder]', $videowriter_encoders, $monitor->Encoder() );?></td></tr> echo htmlSelect('newMonitor[Encoder]', $videowriter_encoders, $monitor->Encoder());?></td></tr>
<tr> <tr>
<td><?php echo translate('OutputContainer') ?></td> <td><?php echo translate('OutputContainer') ?></td>
<td> <td>
@ -1017,7 +1017,7 @@ echo htmlSelect('newMonitor[OutputContainer]', $videowriter_containers, $monitor
<?php if ( $monitor->Type() == 'Ffmpeg' ) { ?> <?php if ( $monitor->Type() == 'Ffmpeg' ) { ?>
<input type="checkbox" name="newMonitor[RecordAudio]" value="1"<?php if ( $monitor->RecordAudio() ) { ?> checked="checked"<?php } ?>/> <input type="checkbox" name="newMonitor[RecordAudio]" value="1"<?php if ( $monitor->RecordAudio() ) { ?> checked="checked"<?php } ?>/>
<?php } else { ?> <?php } else { ?>
Audio recording only available with FFMPEG using H264 Passthrough Audio recording only available with FFMPEG
<input type="hidden" name="newMonitor[RecordAudio]" value="<?php echo $monitor->RecordAudio() ? 1 : 0 ?>"/> <input type="hidden" name="newMonitor[RecordAudio]" value="<?php echo $monitor->RecordAudio() ? 1 : 0 ?>"/>
<?php } ?> <?php } ?>
</td></tr> </td></tr>