Differences
This shows you the differences between two versions of the page.
| Next revision | Previous revision | ||
| vcd [2017/01/25 22:13] – created beandog | vcd [2021/10/18 00:57] (current) – beandog | ||
|---|---|---|---|
| Line 1: | Line 1: | ||
| ====== VCD ====== | ====== VCD ====== | ||
| + | |||
| + | * [[SVCD]] | ||
| * [[https:// | * [[https:// | ||
| * [[http:// | * [[http:// | ||
| + | |||
| + | People have basically said, "if you want it to play *everywhere*, | ||
| Specifications for Video CDs: | Specifications for Video CDs: | ||
| Line 11: | Line 15: | ||
| * MP2 audio, 224 kbs | * MP2 audio, 224 kbs | ||
| - | Using avconv (or ffmpeg) to create the MPEG is simple, since it's a prebuilt target: | + | Using ffmpeg to create the MPEG is simple, since it's a prebuilt target: |
| < | < | ||
| - | avconv | + | ffmpeg |
| </ | </ | ||
| Line 23: | Line 27: | ||
| </ | </ | ||
| - | Play it back using MPlayer. This part confused me a bit. You have to pass the .cue file as the CD device, and then specify 2 as the track to play for the first video. It won't default to it. | + | Play it back using MPlayer. This part confused me a bit. You have to pass the .cue file as the CD device, and then specify 2 as the track to play for the first video. It won't default to it. If there are multiple tracks on there, you can jump using chapters key press -- '' |
| < | < | ||
| mplayer vcd://2 -cdrom-device videocd.cue | mplayer vcd://2 -cdrom-device videocd.cue | ||
| </ | </ | ||
| + | |||
| + | Finally, burn it to CD: | ||
| + | |||
| + | < | ||
| + | cdrdao write --device /dev/cdrom videocd.cue | ||
| + | </ | ||
| + | |||
| + | And there you go :) | ||
| + | |||
| + | {{: | ||