How can I "paste" (not embed) .ass subtitles to a .mp4 video, without re-encoding (just "copy"). I want to make a single MP4 file with two audio tracks and subtitles, but HandBrake doesn't support .ass subtitles, only .srt (and obviously that format doesn't work for me). What could I do?
+ Reply to Thread
Results 1 to 7 of 7
-
-
Note that mp4 doesn't support ass subtitles. They will have to be converted to mov_text. ffmpeg can convert ass to mov_txt and mux into an MP4 container. You can probably use ProWo's Clever ffmpeg gui if you're not familiar with the command line. The conversion from ass to mov_text will probably lose any formatting (fonts, sizes, etc.)
Last edited by jagabo; 3rd Apr 2021 at 17:54.
-
I use this in a batch file, saved into the video folder.
ffmpeg -i "%~n1.mp4" -vf ass="%~n1.ass" "%~n1-HC-ASS.mp4"
pause
Drag one of the files onto this .bat and it embeds for you.
If you drop "video.mp4" on it, it will look for "video.ass" and combine it into "video-HC-ASS.mp4"
pause makes the cmd window stay open, so you can see the results.If yer going with the flow, yer going down hill. -
-
Keep in mind that subtitle formats like SRT and ASS were not created by international standards organizations. They were created by individual programmers or small companies to support the small set of features they wanted. They were often then extended by others to support features they wanted. But without a standards setting body or large company (Google, Apple, etc.) to formalize the specifications support will be spotty. (SRT has gained some ground as WEBVTT, now supported by the W3C, is based on it). To a TV manufacturer the ability to play media files is just a bullet item on a list of supported features. They're not going to invest a lot of time and money to support many different sub formats.
Similar Threads
-
"Subtitle Edit" - keeping .ass font styles
By AWinters in forum SubtitleReplies: 10Last Post: 14th May 2021, 15:31 -
"stamping" an m4a audio file into an mp4 video file
By rotchild in forum Newbie / General discussionsReplies: 2Last Post: 19th Jan 2021, 00:52 -
Will a JVC VCR "Stop" Playback if the video is "too grainy" or degraded?
By timepassenger in forum Capturing and VCRReplies: 8Last Post: 2nd May 2020, 07:17 -
Stuck in trying to add .ass subtitles to MP4 video
By cgkas in forum Newbie / General discussionsReplies: 6Last Post: 27th Apr 2019, 11:24 -
problem "burning in" subtitles on download video that has soft subtitles
By kasfig in forum SubtitleReplies: 2Last Post: 1st Feb 2017, 16:47