set_video_audio_track_bitrate
Adjusts the audio bitrate of a video's audio track while copying the video stream, specifying target bitrate to optimize audio quality or reduce file size.
Instructions
Sets the audio bitrate of a video's audio track, attempting to copy the video stream. Args: input_video_path: Path to the source video file. output_video_path: Path to save the video with the new audio bitrate. audio_bitrate: Target audio bitrate (e.g., '128k', '192k'). Returns: A status message indicating success or failure.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
audio_bitrate | Yes | ||
input_video_path | Yes | ||
output_video_path | Yes |
Input Schema (JSON Schema)
{
"properties": {
"audio_bitrate": {
"title": "Audio Bitrate",
"type": "string"
},
"input_video_path": {
"title": "Input Video Path",
"type": "string"
},
"output_video_path": {
"title": "Output Video Path",
"type": "string"
}
},
"required": [
"input_video_path",
"output_video_path",
"audio_bitrate"
],
"title": "set_video_audio_track_bitrateArguments",
"type": "object"
}