Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revision Previous revision
Next revision
Previous revision
Next revision Both sides next revision
dvd_copy [2018/03/27 23:33]
beandog
dvd_copy [2021/10/17 17:39]
beandog
Line 28: Line 28:
 Note that saving to a ''​vob''​ or ''​mpg''​ extension doesn'​t change the content, I'm only adding those examples as a visual indicator that that's what the formats are. Note that saving to a ''​vob''​ or ''​mpg''​ extension doesn'​t change the content, I'm only adding those examples as a visual indicator that that's what the formats are.
  
-dvd_copy **does not** copy VobSub subtitle tracks. The closed captioning subtitles are in there because it's part of the MPEG2 transport stream. You can use [[ccextractor]] to get them out.+It doesn'​t ​copy VobSub subtitle tracks ​right now, that'd be additional functionality since they'​re not in the transport stream. The closed captioning subtitles are in there because it's part of the MPEG2 transport stream. You can use [[https://​www.ccextractor.org/​|ccextractor]] to get them out. 
 + 
 +** Encoding ** 
 + 
 +Here's what I use when copying a DVD and encoding with ffmpeg: 
 + 
 +<​code>​ 
 +dvd_copy '/​dev/​sr0'​ -t '​1'​ -o '​-'​ 2> /dev/null | ffmpeg -hide_banner -i '​-'​ -map '​0:​v'​ -map '​i:​0x80'​ -vcodec '​libx264'​ -vf '​dejudder,​fps=30000/​1001,​fieldmatch,​bwdif=mode=send_frame:​deint=interlaced,​decimate'​ -acodec '​copy'​ -metadata:​s:​a:​0 '​language=eng'​ -y '​dvd_rip.mkv'​ 
 +</​code>​

Navigation