retro-works

Retro Programming Works 怀旧编程作品

被模拟的PC 1 Emulated PC 1

年代 Era

配置 Configuration

主要用途 Main Usage

被模拟的PC 2 Emulated PC 2

年代 Era

配置 Configuration

主要用途 Main Usage

实用命令 Useful Commands

制作VCD并在Windows 95下播放

使用ffmpeg制作VCD
Convert video into VCD

ffmpeg -i input.mp4 -target pal-vcd|ntsc-vcd output.mpg
vcdimager -t vcd2 -l "Movie Title" -c output.cue -b output.bin output.mpg

使用ffmpeg制作VCD并将源视频分成多长碟片(每张碟片最长1小时)
Convert video into VCD and split the source video into multiple discs (Maximum 1 hour for each disc)

ffmpeg -ss 00:00:00 -t 00:60:00 -i input.mp4 -target pal-vcd|ntsc-vcd output1.mpg
vcdimager -t vcd2 -l "Part 1" -c output1.cue -b output1.bin output1.mpg
ffmpeg -ss 00:60:00 -t 00:30:00 -i input.mp4 -target pal-vcd|ntsc-vcd output2.mpg
vcdimager -t vcd2 -l "Part 2" -c output2.cue -b output2.bin output2.mpg

Windows 95使用金山影霸II播放PAL制式VCD,使用XingMPEG Player播放NTSC制式VCD。
Under Windows 3.2 and Windows 95, use SoftVCD II (JinShanYinBa II) to play PAL VCD, use XingMPEG Player to play NTSC VCD.

其它 Miscellaneous

Linux下挂载虚拟软盘(使用GB2312编码的文件名)
Mount floppy image under Linux (Use GB2312 for filename encoding)

sudo mount -o loop,codepage=936,iocharset=utf8 floppy.img /mnt

对于一些BIN/CUE,MDF/MDS等非ISO格式的光盘映像文件,可以尝试在Linux下使用iat命令转换成ISO文件
For CD-ROM image files in non-ISO format like BIN/CUE, MDF/MDS, etc., try to use iat command under Linux to convert them into ISO file.