media-tools/README.md

28 lines
1.1 KiB
Markdown
Raw Normal View History

2023-07-25 17:16:24 +02:00
# Multimedia-Tools
2023-07-25 15:09:32 +02:00
This is a collection of scripts I use for encoding and transcoding multimedia. Feel free to use and enhance it
2023-07-26 23:17:27 +02:00
### Planned skripts
**to_av1**
#### Skripts for creating backups of physical devices
for getting volume label: dd if=/dev/sr0 bs=1 skip=32808 count=32
**CD_to_Flac**
- needs ffmpeg with --enable-libcdio
- ffmpeg -f libcdio -i /dev/sr0 cd.flac
- https://ffmpeg.org/ffmpeg-devices.html#libcdio
- paranoia_mode full
**Bluray_to_mkv**
- https://ffmpeg.org/ffmpeg-protocols.html#bluray
- https://wiki.archlinux.org/title/Blu-ray
**DVD_to_mkv**
- currently [makemkv](https://www.makemkv.com/) could be used
- for video the VOBs in VIDEO_TS could be concatenated using [dvd2concat](https://github.com/FFmpeg/FFmpeg/blob/master/tools/dvd2concat)
- [dvdbackup](https://dvdbackup.sourceforge.net/) or mplayer with -dumpstream could be used for decrypting
- converting with ffmpeg -fflags +genpts -analyzeduration 1000000k -probesize 1000000k -i mymovie.vob -c copy -map 0 mymovie.mkv
- https://www.ffmpeg.org/faq.html#Why-does-FFmpeg-not-see-the-subtitles-in-my-VOB-file_003f
- handling for Video Title Set (VTS) files needed