LinuxCommandLibrary

transcode

TLDR

Transcode video

$ transcode -i [input.avi] -o [output.avi] -y [codec]
copy
Specify video codec
$ transcode -i [input] -y [xvid] -o [output.avi]
copy
Extract audio
$ transcode -i [video.avi] -y null,tcaud -m [audio.mp3]
copy
Resize video
$ transcode -i [input] -Z [640x480] -o [output]
copy
Batch process
$ transcode -i [input] --multi_input -o [output]
copy

SYNOPSIS

transcode [-i input] [-o output] [-y codec] [options]

DESCRIPTION

transcode converts video formats. It's a transcoding framework.
Multiple codecs. Various formats.
Filtering included. Resize, crop.
Audio extraction. Separate tracks.
Batch capable. Process multiple.

PARAMETERS

-i FILE

Input file.
-o FILE
Output file.
-y CODEC
Video codec.
-Z SIZE
Resize dimensions.
-m FILE
Audio output.
-w BITRATE
Video bitrate.

CAVEATS

Legacy tool. FFmpeg preferred now. Complex options.

HISTORY

transcode was a Linux video transcoding framework, now largely superseded by FFmpeg.

SEE ALSO

Copied to clipboard