Difference between revisions of "Transcode"

From VideoLAN Wiki
Jump to navigation Jump to search
Line 9: Line 9:
 
If your input streams already matches the encoding that you desire for your output stream, then you don't have to transcode at all (just leave out the transcode settings on the command line, and it will thence not transcode).  In the GUI this is called "keep the original track" (I think).
 
If your input streams already matches the encoding that you desire for your output stream, then you don't have to transcode at all (just leave out the transcode settings on the command line, and it will thence not transcode).  In the GUI this is called "keep the original track" (I think).
  
Note that when you decide your transcoding settings, only some container formats (muxers) can support some codecs - look [http://www.videolan.org/streaming/features.html here] to see what supports what.  If your current format is incompatible with the muxer you desire, then you must transcode it to something compatible, or choose a different muxer.  If you choose an incompatible stream for a given muxer, it may silently fail.  You can look for error messages in the [[Basic_Troubleshooting|messages window]] to help you debug the failures.
+
Note that when you decide your transcoding settings, only some container formats (muxers) can support some codecs - look at [http://www.videolan.org/streaming/features.html streaming features] to see which supports what.  If your current format is incompatible with the muxer you desire, then you must transcode it to something compatible, or choose a different muxer.  If you choose an incompatible stream for a given muxer, it may silently fail.  You can look for error messages in the [[Basic_Troubleshooting|messages window]] to help you debug the failures.
  
 
== Transcoding with the Wizard ==
 
== Transcoding with the Wizard ==

Revision as of 20:23, 18 November 2010

Transcoding is the process of taking a video file and changing it to a different format or bitrate.

Transcoding in VLC copies the movie to a new file in a different format, so you end up with both the original and new files. This means you need to have enough space on your hard drive to store this extra file. You should also have a reasonably fast computer, as transcoding can be very slow.

In VLC, transcoding is exactly the same as streaming accross a network, except that the output is sent to a file instead of a network.

Compatibility issues

If your input streams already matches the encoding that you desire for your output stream, then you don't have to transcode at all (just leave out the transcode settings on the command line, and it will thence not transcode). In the GUI this is called "keep the original track" (I think).

Note that when you decide your transcoding settings, only some container formats (muxers) can support some codecs - look at streaming features to see which supports what. If your current format is incompatible with the muxer you desire, then you must transcode it to something compatible, or choose a different muxer. If you choose an incompatible stream for a given muxer, it may silently fail. You can look for error messages in the messages window to help you debug the failures.

Transcoding with the Wizard

VLC includes a transcoding and streaming wizard. To transcode a file, just select the transcode option. You will then be asked what format to convert to: you can give a video codec, an audio codec and a container format.

See also For more information, see VideoLAN's Official Documentation

Transcoding with the Command Prompt

The most flexible way to transcode with vlc is using a command prompt to start vlc. Transcoding works the same as streaming. For example, the following command changes an asf file to an MPEG-2 file:

vlc "C:\Movies\Your File.asf" :sout='#transcode{vcodec=mp2v,vb=4096,acodec=mp2a,ab=192,scale=1,channels=2,deinterlace,audio-sync}:std{access=file, mux=ps,dst="C:\Movies\Your File Output.ps.mpg"}'

The access=file instructs vlc to store the output in a file (and not stream it), and the dst is the location of the new (output) file.

  • Note 1: If you are running VLC on Mac OS X, you should use clivlc instead of VLC to avoid possible Bus error problems.
  • Note 2: old VLC releases, maybe up to 0.8.6* included, use "url" instead of "dst".

Transcoding takes quite a while, so it's advisable to use an option like --stop-time=30 to only encode the first 30 seconds - this means you can check the file has transcoded correctly, and that the output is of a suitable quality. (Note: On Mac OS X this trick doesn't seem to work. Just press ctrl-c after a while, VLC will properly write out the already transcoded segment)


The transcode statement can contain vcodec and vb to change the video codec and acodec and ab to change the audio codec. If vcodec is missing, the video codec will stay the same (same for acodec).


Common additional options to use are audio-sync (to make sure the audio is in sync correctly) and deinterlace (to increase quality slightly on interlaced video).

Under MS Windows

the syntax on windows is slightly different:

C:\Program Files\VideoLAN\VLC>vlc -vvv "D:\688497.flv" --sout=#transcode{vcodec=mp4v,acodec=mpga,vb=800,ab=128,deinterlace}:standard{access=file,mux=ts,dst="D:\asd.mpg"}

(Note: old VLC releases, maybe up to 0.8.6* included, use "url" instead of "dst")

(Note: due to command line parsing, at times, especially within single and double quote blocks, a backslash may have to be escaped by using a double backslash so that a filename would be D:\\path\\to\\file.mpg)

Completely non-interactive transcoding

For completely non-interactive transcoding (such as the case necessary when running under Mac OS X), the above example could be rewritten as

vlc -I dummy "C:\Movies\Your File.asf" :sout='#transcode{vcodec=mp2v,vb=4096,acodec=mp2a,ab=192,scale=1,channels=2,deinterlace,audio-sync}:std{access=file, mux=ps,dst="C:\Movies\Your File Output.ps.mpg"}' vlc://quit

The two extra options are

-I dummy
Disables the graphical interface
vlc://quit
Quit VLC after transcoding

If transcoding from a DVD, it is also necessary to use the dvdsimple:// notation instead of the dvd:// notation, in order to avoid interacting with the DVD menu system. You can use this in the GUI by choosing 'no DVD menus' option when opening the disc.

For more information, see VideoLAN's Official Documentation

Canvas and Padding

The canvas and padding options changed since Version 0.9. Most examples in the wiki are broken.

transcode{vcodec=mp2v,vfilter=canvas{width=640,height=480}}

Other options:

  • aspect=4:3 : Aspect ratio
  • padd:
    • true: Pad with black bars
    • false: crop video


transcode{vcodec=mp2v,vfilter=croppadd{cropttop=20,cropbottom=30,paddleft=100}}

crop or pad top, left, right or bottom in pixels.

Avoid using width and hight parameters! These are apllied before the vfilter and might result in unwanted results.

Non-Interactive Batch Transcoding (Windows)

To transcode several files without user interaction create a batch file in the folder where the files are contained and this line to the batch file:

for %%a in (*.FILE_EXT) do cmd /c "PATH_TO_VLC" -I dummy -vvv %%a --sout=#transcode{vcodec=VIDEO_CODEC,vb=VIDEO_BITRATE,scale=1,acodec=AUDIO_CODEC,ab=AUDIO_BITRATE,channels=6}:standard{access=file,mux=MUXER,dst=%%a.OUTPUT_EXT} vlc://quit

Cmd /c makes the script wait to finish transcoding before starting the next transcode.

An alternative method is to use VB Script. This example will transcode all files from one folder to another. It will also wait for each file to finish transcoding before starting the next. Create the script transcode.vbs, in the VLC installation folder, default "C:\Program Files\VideoLAN\VLC". Change the strSource and strTarget in the example to match your requirements. Start a "DOS Box", Start - Run - cmd then change to the VLC folder and run the script "cscript transcode.vbs".

This example was tested on Microsoft Windows Script host 5.6 running on XP Pro SP2

'
' based on code from:http://episteme.arstechnica.com/eve/forums/a/tpc/f/12009443/m/516001349831
'
'
'
Dim objFSO, objShell, strSource, strTarget, strOldName, strNewName
'
set objFSO = CreateObject("Scripting.FileSystemObject")
'
' Set up starting folders
'
strSource = "O:\"
strTarget = "N:\"
'
call RecurseDir(strSource, strTarget)
'
' // Recursively copy all files and folders
'
Sub RecurseDir(strSource, strTarget)
	wscript.echo "source: " & strSource & " target: "& strTarget
'
	Dim strTempSource, strTempTarget
'
	Set strTempSource = objFSO.GetFolder(strSource)
'
	Wscript.Echo "Begin Value: " & strTarget
'    
	If Not objFSO.FolderExists(strTarget) Then
'        Wscript.Echo "No Folder! Creating folder [" & strTarget & "]"
		objFSO.CreateFolder(strTarget)
	Else
		Wscript.Echo "Folder exists! " & strTempTarget
	End If
'
	Set strTempTarget = objFSO.GetFolder(strTarget)
' ** Copy files from current directory to target
	For each file in strTempSource.files
		strOldName = strSource & "\" & file.name
		strNewName = strTempTarget & "\" & Mid(file.name, 1, InstrRev(file.name, ".")) & "ts"
'
		If Not objFSO.FileExists(strNewName) Then
			Set objShell = CreateObject("WScript.Shell")
'
			Wscript.Echo "Transcoding file: " & strOldName & " to " & strNewName
'		
			Select Case Right(strOldName, 3) 
				Case "avi" 
					wscript.echo "vlc file://""" & strOldName & """ :sout=#duplicate{dst=std{access=file,mux=ts,dst=""" & strNewName & """}} vlc://quit"
					objShell.Run "vlc file://""" & strOldName & """ :sout=#duplicate{dst=std{access=file,mux=ts,dst=""" & strNewName & """}} vlc://quit", 1, True
				Case "mp4"
					wscript.echo "vlc file://""" & strOldName & """ :sout=#transcode{vcodec=mp2v,vb=1024,scale=1,acodec=mp2a,ab=192,channels=2}:duplicate{dst=std{access=file,mux=ts,dst=""" & strNewName & """}} vlc://quit"
					objShell.Run "vlc file://""" & strOldName & """ :sout=#transcode{vcodec=mp2v,vb=1024,scale=1,acodec=mp2a,ab=192,channels=2}:duplicate{dst=std{access=file,mux=ts,dst=""" & strNewName & """}} vlc://quit", 1, True
			End Select 
'
			Set objShell = Nothing
		End If
	Next
' ** For each subfolder of current dir, copy files to target and recurse its subdirs
	For each subdir in strTempSource.subfolders
	  Wscript.Echo subdir.path
  	call RecurseDir(subdir.path, strTempTarget & "\" & subdir.name)
	Next
End Sub

Non-Interactive Batch Transcoding (Linux)

To transcode several files without user interaction create a bash script in the folder where the files are contained and add these lines to the bash script:

#!/bin/bash
vcodec="VIDEO_CODEC" 
acodec="AUDIO_CODEC" 
bitrate="VIDEO_BITRATE" 
arate="AUDIO_BITRATE" 
ext="OUTPUT_EXT" 
mux="MUXER" 
vlc="PATH_TO_VLC" 
fmt="INPUT_EXT" 

for a in *$fmt; do 
$vlc -I dummy -vvv "$a" --sout "#transcode{vcodec=$vcodec,vb=$bitrate,acodec=$acodec,ab=$arate,channels=6}:standard{mux=$mux,dst=\"$a.$ext\",access=file}" vlc://quit 
done

Non-Interactive Merge/Transcode (Windows)

If you have more than one source files that need to be merged and transcoded resulting in a single out put file, see How_to_Merge_and_Transcode_Multiple_Videos

Example script

The canvas and cropping must be adjusted for VLC versions newer then 0.9.

As an example, here is a bash script that will take a .mpg file as generated by an DVB capture device and transcode it into an MPEG4 file using the h.264 codec. Copy it to a file, for example dvb2mp4, and make it executable. It should work on any operating system that has bash, including windows if Cygwin is installed. It uses the cropping parameters proposed at Wikipedia:Overscan_amounts adapted so that the dimensions are divisible by 16 for better encoding.

#!/bin/bash
#
# Transcode DVB TV signals to h.264-encoded MP4 files using VLC
# Wout.Mertens@gmail.com

#### Defaults, please edit for your settings ####

# VLC location, here is the Mac OS X example
VLC=/Applications/VLC.app/Contents/MacOS/clivlc
# Other possibilities: (Remove the # to activate)
#VLC=/usr/bin/vlc
#VLC=/usr/local/bin/vlc

# 16:9 or 4:3
aspect=16:9

# PAL (Europe) or NTSC (US)
src=PAL

# video bitrate
bitrate=1024

# audio bitrate
arate=128

# cropping?
crop=yes

# Deinterlace?
deint=yes

#### Program, do not change below this line ####
usage() {
	cat 1>&2 <<EOF
Usage: $0 [-swpncC] [-b <rate>] [-a <rate>] <DVB source .mpg> <MP4 output file>
	-s	4:3 aspect ratio (default=$aspect)
	-w	16:9 aspect ratio
	-p	PAL (720x576) input (default=$src)
	-n	NTSC (720x480) input
	-c	Crop borders (default=$crop)
	-C	Do not crop borders
	-d	Perform de-interlacing (default=$deint)
	-D	Do not perform de-interlacing
	-b	video bitrate kb/s (default=$bitrate)
	-a	audio bitrate kb/s (default=$arate)
EOF
	exit 1
}

error() {
	echo "ERROR: $*" 1>&2
	exit 2
}

while getopts 'swpncCb:a:h' opt; do
	case $opt in
		s) aspect=4:3 ;;
		w) aspect=16:9 ;;
		p) src=PAL ;;
		n) src=NTSC ;;
		c) crop=yes ;;
		C) crop=no ;;
		d) deint=yes ;;
		D) deint=no ;;
		b) bitrate=$OPTARG ;;
		a) arate=$OPTARG ;;
		h) usage ;;
		*) echo "Unknown option $opt" 1>&2; usage ;;
	esac
done
shift $(( $OPTIND - 1 ))

[ $# -ne 2 ] && usage

infile="$1"
outfile="$2"
case $outfile in
	*.mp4|*.MP4) : ;;
	*) outfile="$outfile.mp4" ;;
esac

[ -r "$infile" ] || error "Can't read from $infile"

case "$src,$aspect,$crop" in
	PAL,16:9,yes) sizestr="cropleft=31,cropright=31,croptop=16,cropbottom=16,width=960,height=544" ;;
	PAL,4:3,yes)  sizestr="cropleft=31,cropright=31,croptop=16,cropbottom=16,width=720,height=544" ;;
	NTSC,16:9,yes) sizestr="cropleft=30,cropright=30,croptop=17,cropbottom=17,width=800,height=448" ;;
	NTSC,4:3,yes) sizestr="cropleft=26,cropright=26,croptop=17,cropbottom=17,width=608,height=448" ;;
	PAL,16:9,no) sizestr="width=1024,height=576" ;;
	PAL,4:3,no) sizestr="width=768,height=576" ;;
	NTSC,16:9,no) sizestr="width=800,height=448" ;;
	NTSC,4:3,no) sizestr="width=608,height=448" ;;
	*) error "Could not handle $src,$aspect,$crop. This shouldn't happen!" ;;
esac

if [ "$deint" = "yes" ]; then
	deintstr=",deinterlace=enable"
else
	deintstr=
fi

# Let's do it
echo "Input file: $infile"
echo "Output file: $outfile"
echo "Encoding at $bitrate+$arate kb/s, input $src, $aspect, cropping $crop, de-interlace $deint"
echo
echo '>>>' $VLC -I dummy "$infile" --sout "#transcode{$sizestr$deintstr,vcodec=h264,vb=$bitrate,acodec=mp4a,ab=$arate}:standard{mux=mp4,dst=\"$outfile\",access=file}" vlc://quit
echo
$VLC -I dummy "$infile" --sout "#transcode{$sizestr$deintstr,vcodec=h264,vb=$bitrate,acodec=mp4a,ab=$arate}:standard{mux=mp4,dst=\"$outfile\",access=file}" vlc://quit