subtitle Questions

6

I use ffmpeg to encode, and add subtitle to a video by following command $ ffmpeg -i hifi.avi -i hifi.srt -acodec libfaac -ar 48000 -ab 128k -ac 2 -vcodec libx264 -vpre ipod640 -s 480x240 -b 256k -...
Appling asked 30/8, 2011 at 7:58

3

Solved

I'm using this command to crop,scale, and then add subtitles as overlay ffmpeg -i input.avi -vf "[in]crop=in_w:in_h-20:0:0 [crop]; [crop]scale=320:240 [scale];[scale]subtitles=srt.srt" -aspect 16:...
Mariehamn asked 26/1, 2014 at 12:29

1

Solved

I am trying to burn subtitles into a video such that they appear in a word-by-word fashion instead of all at once. What I mean by this is, a word will appear, then another word will appear next to...
Sycophant asked 9/3, 2020 at 21:44

2

I am trying to get rid of a data (subtitle) stream within a Mp4 container, using ffmpeg. Here's the screenshot from ffprobe: Input #0, mov,mp4,m4a,3gp,3g2,mj2, from 'test.m4v': Metadata: major_br...
Erechtheum asked 22/2, 2018 at 14:51

2

Solved

I am trying to program a method to convert subtitle files, such that there is always just one sentence per subtitle. My idea is the following: For each subtitle: 1.1 -> I get the subtitle dura...
Ukase asked 17/5, 2019 at 14:54

4

I'm trying to add a text transcription of a spoken audio file with the track tag. The default behavior for the video tag is to display them (works). By default the audio tag seems to lack some sort...
Jsandye asked 5/5, 2014 at 14:45

3

Solved

For the main y-axis and x-axis, I have generic titles like "Tank's Ratio" and "Counts". I want a second line of label where I specify the ratio and counts. eg. Just below "Tank's Ratio" I want "# i...
Settee asked 8/1, 2019 at 13:51

3

Solved

I am wondering how to give difference subtitles for the subplots using plot_ly. Any hint please. I got one title BB in this case. Thanks. p <- subplot( plot_ly(economics, x = date, y = uempmed...
Overpower asked 17/5, 2016 at 20:29

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...
Dorothadorothea asked 29/12, 2011 at 20:4

1

Solved

How can I change the position of the subtitle in r "base" plot. Is there a special argument? I want to dynamically have the subtitle left or right aligned. data plot(mtcars$mpg,mtcars$qsec,xlab="...
Heterography asked 29/11, 2017 at 10:0

2

Solved

I found a subtitle that goes like this: <transcript> <text start="2.906" dur="3">TEXT 1</text> <text start="7.907" dur="3.914">TEXT 2</text> ...... What is that for...
Larhondalari asked 29/9, 2017 at 17:41

2

I have a page with jwplayer to play videos, but subtitles in chrome appears too big. You can check it in the next example page: https://support.jwplayer.com/customer/portal/articles/1430278-cea-60...
Razid asked 7/2, 2017 at 9:39

1

I can show subtitle(webvtt) using android app using following code MediaTrack subtitle = new MediaTrack.Builder(0, MediaTrack.TYPE_TEXT) .setName("English") .setSubtype(MediaTrack.SUBTYPE_SUBTI...
Undershrub asked 19/12, 2016 at 7:54

2

By adding an .ass subtitles track to an mkv video with ffmpeg, it isn't set as default track, so on playback you have to manually turn on subtitles. Is it possible to set the default flag for the s...
Harve asked 16/11, 2014 at 12:9

4

Is there any Java API for SRT subtitles ?
Helterskelter asked 21/2, 2011 at 6:15

3

Solved

I would like to know, how can I alter "default" x label (or subtitle) in density plot in R. For example, I do not wand this text "N = ..., bandwidth = ..." to be on the plot (I do not know if it is...
Microbicide asked 24/4, 2012 at 7:46

7

Solved

I'm using ggplot2 to improve precipitation barplots. Here's a reproducible example of what I want to achieve: library(ggplot2) library(gridExtra) secu <- seq(1, 16, by=2) melt.d <- data.fr...
Erythrocytometer asked 30/7, 2012 at 15:13

1

Solved

I'm trying to burn in subtitles into a video. This command works perfectly from command line: ffmpeg -i in.mp4 -vf subtitles=sub.srt:force_style='Fontsize=20' out.mp4 My code on server side doesn'...
Wessex asked 7/3, 2016 at 16:2

2

I have some m4v files that I am wanting to add subtitles to with ffmpeg. I know I need to map the streams to get them into the output file but how do I ensure that this subtitle stream will be a de...
Nine asked 23/7, 2013 at 14:13

1

I can assign subtitle once but after that if I tried to change subtitle. It won't accept new one, it display previous one every-time. Below code I'm using to change subtitle. MediaPlayer mediaP...
Ency asked 11/12, 2014 at 5:57

2

Solved

I imported Webvtt file into mp4 file as a track, following the instruction Subtitling with GPAC ,and I checked that subtitles are properly shown when I using GPAC's Osmo4 player. Now, I'd like to...
Came asked 1/12, 2014 at 7:38

3

Solved

I've been reading WP forums and trying different plugins for over a week now with no luck, so I decided to give it a try here. I'm creating a WP website with a premium theme, that supports a wooco...
Implant asked 18/8, 2015 at 9:49

3

Solved

I have the following setup: <android.support.v7.widget.Toolbar xmlns:android="http://schemas.android.com/apk/res/android" xmlns:tools="http://schemas.android.com/tools" xmlns:app="http://sch...

0

I am working on Exoplayer Demo to use it in my application. Everything works well except subtitles. I use Expression Encoder 4 pro to encode movies to II Smooth Streaming format. When I add English...
Chesterfieldian asked 10/6, 2015 at 16:48

1

I tried: ffmpeg -f concat -i files.lst -c copy output.mp4 But the output file doesn't have the subtitles stream. How do I fix this? Log: ffmpeg version 2.3.4 Copyright (c) 2000-2014 the ...
Louvenialouver asked 27/12, 2014 at 21:32

© 2022 - 2024 — McMap. All rights reserved.