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
This should be a low priority because few videos should ever need captions when they don't have an audio track.
ffmpeg returns this error Stream map '0:a' matches no streams. because we map the audio output via $command .= ' -map 0:a'; //Map the audio to the output in https://github.com/unl/UNL_MediaHub/blob/4.0_template/src/UNL/MediaHub/Muxer.php#L102
Stream map '0:a' matches no streams.
$command .= ' -map 0:a'; //Map the audio to the output
It might be first checking the video has audio via mediainfo before adding $command .= ' -map 0:a'; //Map the audio to the output
mediainfo
The text was updated successfully, but these errors were encountered:
No branches or pull requests
This should be a low priority because few videos should ever need captions when they don't have an audio track.
ffmpeg returns this error
Stream map '0:a' matches no streams.
because we map the audio output via$command .= ' -map 0:a'; //Map the audio to the output
in https://github.com/unl/UNL_MediaHub/blob/4.0_template/src/UNL/MediaHub/Muxer.php#L102It might be first checking the video has audio via
mediainfo
before adding$command .= ' -map 0:a'; //Map the audio to the output
The text was updated successfully, but these errors were encountered: