You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Use libcaption flv+srt to mux in the captions as 608 into an FLV... $ flv+srt ./in.flv in.srt out.flv
Convert the FLV to TS, copying the A/53 608 captions... $ ffmpeg -y -hide_banner -i "./out.flv" -a53cc "1" -c:v "copy" -f "mpegts" "./out.ts"
Extract the 608 from the TS into an SCC... $ ffmpeg -y -f "lavfi" -i "movie=./out.ts[out+subcc]" -vn -an -dn -c:s "copy" "./out.scc"
You have now converted from srt2scc. You can compare the input SRT with the output SCC with FFplay... $ ffplay in.flv -vf "subtitles=./in.srt,subtitles=./out.scc"
Title explains
The text was updated successfully, but these errors were encountered: