I'm looking for a quick way to strip subtitles from a bunch of video files without re-encoding or anything. I just want to remove the subtitles and toss them in a separate folder in case I ever need them. I'm using VLC on Xbox to watch my network share now and there's no option to turn the goddamn things off by default. Also, I need to do this on linux.
		
			+ Reply to Thread
			
		
		
		
			
	
	
				Results 1 to 21 of 21
			
		- 
	
- 
	You don't indicate what type of files they are - makes a big difference in the approach taken. By far MKV are the easiest to deal with SONY 75" Full array 200Hz LED TV, Yamaha A1070 amp, Zidoo UHD3000, BeyonWiz PVR V2 (Enigma2 clone), Chromecast, Windows 11 Professional, QNAP NAS TS851
- 
	Yeah, MKV. Don't know why I forgot about this topic. Found another batch of files I need to rip subtitles from though. 
- 
	Open the source in MKVToolnix GUI, deselect the subtitles, and write out your new file sans the subtitles 
- 
	Also use mkvcleaver to extract the sub you want to save. I think,therefore i am a hamster.
- 
	To quickly strip off the subtitles you could use MKVBatch or use mkvmerge in a batch job like 
 
 Similar use mkvextract in a batch job to extract the subtitles.Code:for %%h in (*.mkv) do ( mkvmerge -o "Merged\%%~nh_MERGED.mkv" --audio-tracks 1 --no-subtitles --language 0:eng "%%h" --track-order 0:0,0:1) 
- 
	First extract the subtitles you want to keep in a new folder with MKVCleaver - it has a batch function. Then after you have checked the subs to be the ones you want, then next open the source in MKVToolnix GUI, deselec the subtitles, and remux to a new file minus the subtitles. SONY 75" Full array 200Hz LED TV, Yamaha A1070 amp, Zidoo UHD3000, BeyonWiz PVR V2 (Enigma2 clone), Chromecast, Windows 11 Professional, QNAP NAS TS851
- 
	ugh. Trying to set that up in Bash with mkvextract and mkvmerge isn't working so well. Can't stand this scripting shit anymore. 
- 
	It's your call of course but why do you want to remove the subs? It won't reduce the file size significantly unless there are dozens of subs? The workaround is to search for srt subs from the many subtitle sites and once satisfied they are correct then remove the subs from within the MKV file as earlier discussed. SONY 75" Full array 200Hz LED TV, Yamaha A1070 amp, Zidoo UHD3000, BeyonWiz PVR V2 (Enigma2 clone), Chromecast, Windows 11 Professional, QNAP NAS TS851
- 
	Op want to remove the subs cause on the xbox one he cant turn them off by default. I think,therefore i am a hamster.
- 
	ffmpeg is available for linux. It could do both the demuxing and removal of the subs. Maybe you can figure out the Linux syntax from a Windows batch file: 
 
 That creates sub folders called Subs and NoSubs, then subs from mkv and mp4 files are saved in the Subs folder as SRT (VTT subs are converted to SRT, other sub types are ignored), and videos without subs are created in the NoSubs folder. If a video has multiple srt/vtt subs only one is saved (first?).Code:md Subs md NoSubs for %%F in (*.mkv *.mp4) do ( ffmpeg -y -i "%%~dpnxF" -vn -an "Subs\%%~NF.srt" ffmpeg -y -i "%%~dpnxF" -c copy -map 0 -map -0:s "NoSubs\%%~nxF" ) pause
 
 In case you're not aware the %%~dpnx format encodes the parts of the filename:
 
 %%~dpnx = "C:\path\to\my video file.ext":
 
 d = drive letter and colon, C:
 p = path (not including the filename or extension, \path\to\
 n = filename without path or extension, my video file
 x = period and extension, .mp4Last edited by jagabo; 18th Jun 2021 at 18:01. 
- 
	According to the Xbox manual 
 
 Press the Xbox button on your controller to return to the dashboard.
 Press the Menu button and select Settings.
 Select Closed Captioning in the Console settings column.
 Select closed captions off
 Maybe that's for an older model...SONY 75" Full array 200Hz LED TV, Yamaha A1070 amp, Zidoo UHD3000, BeyonWiz PVR V2 (Enigma2 clone), Chromecast, Windows 11 Professional, QNAP NAS TS851
- 
	
- 
	I did some testing on the vlc subtitle options,you can turn off the subs in other videos without restarting vlc,when you start another video the subs will show,what you have to do is go back into the subtitle option and click on it and it will say no subtitles,just go back to the video and the sub will be turned off. I think,therefore i am a hamster.
- 
	
- 
	I abandoned VLC sometime ago for MPC-HC https://www.videohelp.com/software/Media-Player-Classic-Home-Cinema as it handles large 4K files better. You can turn off subs permanently if you wish. SONY 75" Full array 200Hz LED TV, Yamaha A1070 amp, Zidoo UHD3000, BeyonWiz PVR V2 (Enigma2 clone), Chromecast, Windows 11 Professional, QNAP NAS TS851
Similar Threads
- 
  Batch Remux Multiple files Swapping video keeping rest of tracksBy xonathan in forum Newbie / General discussionsReplies: 0Last Post: 6th Aug 2020, 14:10
- 
  Find All Video Files with Multiple Sub TracksBy koberulz in forum Newbie / General discussionsReplies: 7Last Post: 19th May 2020, 12:48
- 
  Removing subtitle from mp4 files with MP4BOXBy amaipaipai in forum SubtitleReplies: 0Last Post: 9th Sep 2018, 13:35
- 
  Viewing & removing non-English audio tracks from 1000's of assorted MKV'sBy kjac in forum Newbie / General discussionsReplies: 1Last Post: 14th Feb 2018, 01:05
- 
  Joining 2 or more (mkv) video and subtitle tracks on a macbookBy okizen in forum Newbie / General discussionsReplies: 2Last Post: 26th Dec 2015, 04:31


 
		
		 View Profile
				View Profile
			 View Forum Posts
				View Forum Posts
			 Private Message
				Private Message
			 
 
			
			

 Quote
 Quote 
			 
			
