srt Questions
3
My goal is to download automatic caption from a set of youtube videos. (I just want to get video information and subtitles of videos according to a query)
The first thing I read is that you cannot ...
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...
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...
5
Solved
I have a video transcript SRT file with lines in conventional SRT format. Here's an example:
1
00:00:00,710 --> 00:00:03,220
Lorem ipsum dolor sit amet
consectetur, adipisicing elit.
2
00:00:0...
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...
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
My requirement:
I want to stream to a person (Larix?) With my smartphone and get the audio from that person.
The latency should be as low as possible and the quality as high as possible.
I want to ...
Sublapsarianism asked 26/1, 2021 at 13:45
6
Solved
I am doing a small script in python, but since I am quite new I got stuck in one part:
I need to get timing and text from a .srt file. For example, from
1
00:00:01,000 --> 00:00:04,074
Subtitle...
3
Solved
I'm trying to parse .srt but I get an internal error and I can't figure out what is it.
Here is my code:
var subtitles;
jQuery.get('SB_LKRG-eng.srt', function(data) {
//alert(data);
function ...
Peluso asked 15/10, 2015 at 10:13
9
I am trying to add text subtitles to an .mp4 container using ffmpeg:
ffmpeg -i input.mp4 -i input.srt -map 0.0 -map 0.1 -map 1.0 output.mp4
When I am trying to run this line, it gives me a...
3
I have been trying to use an .srt file for a timed text source (Only available in android 4.1+ http://developer.android.com/about/versions/android-4.1.html#Multimedia) . The first problem has to do...
0
I'm trying to cache srt files and play them with mp4 video files using AVFoundation AVPlayer.
Streaming works fine with webVTT subtitles but I also need to cache videos and subtitles.
I was wonder...
Jara asked 5/3, 2014 at 22:55
1
© 2022 - 2024 — McMap. All rights reserved.