subtitle Questions

5

Solved

I am adding subtitles to a video using: ffmpeg -i "imput.mp4" -lavfi "subtitles=subtitles.srt:force_style='OutlineColour=&H100000000,BorderStyle=3,Outline=1,Shadow=0,Fontsize=18'" -crf 1 -c:a ...
Monohydric asked 10/9, 2019 at 10:59

6

I am using m3u8 video format for streaming the video and now I need to display subtitles for the same. I searched in Apple Documentation and found that I can achieve this by using the closedCapti...

2

Solved

How to correct/shift subtitle time forward and backward? Subtitle time format looks like this: 00:00:52,656 --> 00:00:56,326 If subtitle and audio aren't synchronized, for example, subtitle sh...
Gleich asked 12/10, 2012 at 17:15

4

Solved

I have tried the html5 video with textTrack, it works properly with .vtt (WebVTT). However, it doesn't work with .srt. So my question is whether html5 support .srt on the chrome or firefox? I hav...
Mcclenon asked 17/11, 2014 at 8:50

4

I have checked the FFMpeg documentation and many forums and figured out the correct command-line to extract subtitles from an .MP4 video should look like so: ffmpeg -i video.mp4 -vn -an -codec:s:0...
Frederiksen asked 19/12, 2013 at 8:41

3

I'm tried to follow this example how to add subtitles to a movie clip: from moviepy.video.tools.subtitles import SubtitlesClip from moviepy.video.io.VideoFileClip import VideoFileClip subs = [((0,...
Silverpoint asked 16/4, 2016 at 17:59

3

I need to extract closed caption information from movie files, I have tried ccextractor but it does not seem to work. I have captured a video stream (with closed caption in it) and saved to ...
Knowling asked 25/11, 2012 at 20:50

5

Solved

I am using a custom HTML5 app for streaming videos on a local network, and now I am adding subtitles support. I have around 500 .vtt subtitles converted from .srt. After I converted them from .srt...
Eleni asked 6/7, 2017 at 5:23

4

Solved

I'm trying to convert some video file containing video, audio and subtitles streams into another format using FFMpeg. However, ffmpeg complains about the subtitles format - it cannot decode the str...
Gouache asked 26/8, 2012 at 16:27

2

Solved

Because of the nature of what I am plotting, I want subplots akin to nested tables. I'm not sure how to ask the question clearly so I'll added some pictures instead which I hope illustrate the prob...
Baskerville asked 2/12, 2016 at 16:23

4

Solved

I can't get the subtitle for my pie chart to work. It just won't show. I was trying this: https://www.highcharts.com/docs/chart-concepts/title-and-subtitle options: { pieceLabel: { showZero: tr...
Reprobation asked 28/11, 2017 at 10:42

10

Solved

I have one figure which contains many subplots. fig = plt.figure(num=None, figsize=(26, 12), dpi=80, facecolor='w', edgecolor='k') fig.canvas.set_window_title('Window Title') # Returns the Axes i...
Eligible asked 11/8, 2014 at 9:25

2

I've been trying to figure out how to extract hdmv pgs subtitles from an mkv file for a few days now. I must be doing something wrong. I'm a noob at this. Can someone please help? I think i n...
Trapeze asked 19/7, 2020 at 6:12

2

Are there any apps which can transform from .vtt to .srt format? I tried subtitleeditor which doesn't have support for .vtt. If anybody does know of any specific app which can be used to do the sam...
Inhospitality asked 26/12, 2019 at 15:38

3

Solved

I finally came to a conclusion that google-chrome does not support .srt because WEBVTT is HTML5 standard. Now I am wondering what's the reasoning behind this decision. It seems that google-chrome...
Korenblat asked 21/9, 2016 at 7:32

2

Solved

I want to cut a piece out of a video and burn subtitle in that piece. I can do this in 3 steps: cut the video ffmpeg -ss 25:00 -to 26:00 -i vid.mp4 -c copy out.mp4 cut the subtitle ffmpeg -i sub...
Pironi asked 3/1, 2020 at 8:27

2

Suppose I want to find list of videos which have the phrase "French presidential election" in its subtitle. Can I do this using YouTube API? It will be perfect if it can even search within both ...

4

I tried using the track element, but it didn't work..could you please tell me if there's something I am doing wrong? <video controls="controls" id="video1" width="450"> <source src="A ta...
Azimuth asked 10/1, 2014 at 18:53

0

Chrome 89 introduced a new live captioning system, that will show up a popup with subtitles created on the fly. I was wondering if there is any public API for this captioning system, in order to ba...
Scaler asked 7/5, 2021 at 21:45

4

I got an assignment of retrieving subtitles from a mp4 file I want to know how to do this, by java or c++, does it depends on mp4 encoding format and I want to know the basic concepts of different ...
Pyrophosphate asked 30/6, 2013 at 7:41

2

Solved

Using ffmpeg, I am burning subtitles to a movie using the following: ffmpeg -i inputfile.mov -vf "subtitles=subtitles.srt:force_style='Alignment=9,Fontsize=8,Outline=0'" $outputfile.mov Is...
Possess asked 6/9, 2019 at 11:52

2

I have a problem with ReactPlayer component. I'm trying to upload a subtitle(track) using config attribute and it isn't displayed onto the video. I'm running this project on Chrome. In Networks I ...
Comprehensible asked 9/5, 2019 at 13:29

3

Solved

I'm currently using FFMPEG to embed subtitles into my MP4 files and I am stumped trying to figure out how to custom set the "handler_name" metadata tag on my subtitle stream so I can control the na...
Borden asked 17/12, 2014 at 4:37

5

It is described here how ot burn a srt file into a video. However, I want to put a semi-transparent background to the subtitles so that the texts can be read more easily. How can I do that?
Experimentalize asked 16/9, 2014 at 13:30

2

I am writing a report in Latex and my document class must be article. I want to add some additional text under my title but I can't find anything that would correspond to a subtitle command. Does a...
Phelloderm asked 26/11, 2020 at 19:3

© 2022 - 2024 — McMap. All rights reserved.