+ Reply to Thread
Results 1 to 16 of 16
-
I do this to add the srt subs as a separate stream.
Code:ffmpeg.exe" -i "My Video.mp4" -sub_charenc ISO-8859-1 -i "My Subs.srt" -map 0:v -map 0:a -map 1 -c:v copy -c:a copy -c:s mov_text -metadata:s:s:0 language=eng "My Video-New.mp4"
The .srt format is converted to mov_text as .srt subtitles cannot be added to an mp4 as a separate stream.
The same will apply with scc subs.
There hasn't been any problems for me. The subs still display correctly and can be switched on/off.
If possible, you would be better to change to the mkv format.
CheersLast edited by pcspeak; 28th Mar 2022 at 16:56.
-
SCC (Scenarist Closed Captions) files are normally used to add CEA-608 or EIA-608 closed captions to MPEG-2 or H.264 video for broadcast TV, streaming video, professionally authored DVD, or professionally authored Blu-ray. This type of closed captioning is stored in the video's GOP user data. In theory, it is possible to just copy closed caption data into the GOP user data without re-encoding the video but I don't know what programs are available to consumers who want to do that.
[Edit] Unlike most subtitle files, SCC files are apparently not directly readable by humans. According to a document I found on the pixeltools.com website, a Scenarist Closed Captioning (.scc) text file "contains time codes followed by the actual CEA-608 hex code/ byte pairs that will be inserted in the frames at and following the time code. The 7 bit data and control codes include odd parity which makes them not
trivial to interpret."Last edited by usually_quiet; 28th Mar 2022 at 16:51.
Ignore list: hello_hello, tried, TechLord, Snoopy329 -
-
Ignore list: hello_hello, tried, TechLord, Snoopy329
-
The mp4 container accepts ttxt, webvtt and vobsub only as captions. Scc isn't supported. So it MUST be converted.
Open Subtitle Edit, load your scc and save as srt.
Open clever-FFmpeg-GUI, load your mp4, click main, click multiplex, click Add stream, select the new created srt, click multiplex.
Done. -
-
I know little about sub-titles but a while ago I was able to download an Amazon Prime video which has cc. The subs could be demuxed from the mp4 - which still gave the option of displaying them if required. The demuxed subs were SRT. And I hardly think the demuxing program actually did any conversion. The program was mp4boxgui which also allows you to mux - another option to what has already beeen offered.
So, surely, it follows that muxed subs are effectively SRT and your are chasing your tail to attempt to mux scc subs. -
True. However, I have dozens of mp4 files that contain EIA-608 closed captions. These MP4 files came from a streaming video site that hosts material that was broadcast on US TV. Unlike popular subtitle formats, CEA-608 closed captions are not muxed. Instead, they are stored in the video GOP user data.
This type of closed captioning is often created using SCC files as their source and are added to the video stream's GOP user data using professional tools.Last edited by usually_quiet; 29th Mar 2022 at 09:17. Reason: grammar
Ignore list: hello_hello, tried, TechLord, Snoopy329 -
I stand somewhat corrected. The demuxed subs are still present in the original mp4. My purpose in the demux was to, hopefully, edit these to remove the narrative that cc gives. That purpose was achieved in the demux/edit which then appeared as SRT. However the original subs are refered, as my friend above states, as 'Timed Text - SBLtt'.
So did mp4boxgui convert these to timed text as part of the demux process ? -
Did you try the one line script?
With my script the srt subtitles are converted to text in the quicktime mov format.
I have no scc subtitles to test. Could you try with scc subtitles and tell me yay or nay?
This seems to say the Quicktime subtitle container is acceptable when embedded in an mp4
https://docs.aws.amazon.com/mediaconvert/latest/ug/captions-support-tables-by-containe...tput-container
Cheers.
EDIT: Forgot to say please.Last edited by pcspeak; 29th Mar 2022 at 14:28.
-
This seems to say the Quicktime subtitle container is acceptable when embedded in an mp4
Scott
Similar Threads
-
Embedding Premiere Pro markers inside an MP4 file as chapters
By seanmcnally in forum EditingReplies: 0Last Post: 29th Sep 2021, 13:17 -
.ASS subtitles in mkv/hevc video and .SCC formatted captions on YouTube
By parvares in forum Newbie / General discussionsReplies: 10Last Post: 15th May 2021, 10:35 -
Difference in SCC timecodes between raw file and editor
By Rain-Maker in forum SubtitleReplies: 0Last Post: 19th Nov 2019, 13:10 -
Sima SCC / SCC-2, is it of any use?
By Barrythecrab in forum Capturing and VCRReplies: 1Last Post: 30th Nov 2018, 18:26 -
embedding subtitles
By XPTO in forum SubtitleReplies: 5Last Post: 22nd Jun 2018, 10:11