Method: FFMpeg::MainOptions#target
- Defined in:
-
lib/ffmpeg/main_options.rb,
lib/ffmpeg/main_options.rb
Specify target file type (“vcd”, “svcd”, “dvd”, “dv”, “dv50”, “pal-vcd”, “ntsc-svcd”, … ). All the format options (bitrate, codecs, buffer sizes) are then set automatically. Nevertheless you can specify additional options as long as you know they do not conflict with the standard.
target "vcd"
145 146 147 |
# File 'lib/ffmpeg/main_options.rb', line 145 def target(target) FFMpegCommand << "#{target}" end |