• AnyStream is having some DRM issues currently, Netflix is not available in HD for the time being.
    Situations like this will always happen with AnyStream: streaming providers are continuously improving their countermeasures while we try to catch up, it's an ongoing cat-and-mouse game. Please be patient and don't flood our support or forum with requests, we are working on it 24/7 to get it resolved. Thank you.

Subtitles

Thread Starter
Joined
Jul 21, 2016
Messages
14
Likes
1
I have a trial license for Anystream. If I decide to buy it, I would most likely be downloading mainly from Amazon. I have been experimenting with subtitles. So far, using the same episode of All Creatures Great and Small, I have had mixed results with subtitles. I can get them on the computer no problem, but if I want to view on our projector using Roku, the only reliable way is to use the srt option and burn them in afterwards with Handbrake. One time I was able to enable the srt on the Roku, but that download had an error. I was hoping subtitles could be turned off and I'm thinking maybe I shouldn't buy this. Is this likely to be resolved in the future?

I've attached the most recent log. I was able to burn the srt subtitles from this download using Handbrake.
 

Attachments

  • prime-All Creatures Great and Small_S02E07_The Perfect Christmas.astlog
    458 KB · Views: 0
I usually just mux the downloaded mp4 and srt files in a single mkv using mkvtoolnix. VLC and Plex both play these files fine and allow subtitles to be turned on and off at playback.
 
I've also used external srt files with Roku. No remuxing needed for that to work.

I was never able to get 'embedded' subtitles to work with Roku hardware.
 
I've also used external srt files with Roku. No remuxing needed for that to work.

I was never able to get 'embedded' subtitles to work with Roku hardware.
It worked once with srt subtitles on the roku, then never again.
 
I usually just mux the downloaded mp4 and srt files in a single mkv using mkvtoolnix. VLC and Plex both play these files fine and allow subtitles to be turned on and off at playback.
Plex requires internet I believe? One of the places I watch doesn't have internet. I'm stuck with a roku or bluray player.
 
Wow, a lot of good advice in this thread. Thanks, people.;)
 
Does anyone know if there is a way to automate MKVToolNix? I've just bee dragging and dropping the mp4 and srt for each movie/show and it gets a little tedious.

Oh, and maybe without having to use the Command Line because I'm command line dumb.
 
Last edited:
Heh - I use the command line:

Code:
$ for f in *.mp4; do name=${f%.mp4}; mkvmerge.exe -o "$name.mkv" "$name.mp4" "$name.en-US.cc.srt"; mkvpropedit.exe "$name.mkv" -e track:a1 -s name="5.1 Dolby Digital" -e track:s1 -s flag-default=0 -s language=en-us; done
 
Heh - I use the command line:

Code:
$ for f in *.mp4; do name=${f%.mp4}; mkvmerge.exe -o "$name.mkv" "$name.mp4" "$name.en-US.cc.srt"; mkvpropedit.exe "$name.mkv" -e track:a1 -s name="5.1 Dolby Digital" -e track:s1 -s flag-default=0 -s language=en-us; done
Thats the perfect way to do it.
 
Heh - I use the command line:

Code:
$ for f in *.mp4; do name=${f%.mp4}; mkvmerge.exe -o "$name.mkv" "$name.mp4" "$name.en-US.cc.srt"; mkvpropedit.exe "$name.mkv" -e track:a1 -s name="5.1 Dolby Digital" -e track:s1 -s flag-default=0 -s language=en-us; done
Ad
Is there an additional flag to be put in the commandline to get chapter points every 300sec? I drag and drop episodes with their SRT subs, 'Add to job queue...--->remove source files' and add the Addd Chapters in fixed intervals stays in the settings as I add the next episode and SRT subs.
 
try:

Code:
--generate-chapters interval:300s

I haven't tried this, just cribbed it from the docs.
 
Heh - I use the command line:

Code:
$ for f in *.mp4; do name=${f%.mp4}; mkvmerge.exe -o "$name.mkv" "$name.mp4" "$name.en-US.cc.srt"; mkvpropedit.exe "$name.mkv" -e track:a1 -s name="5.1 Dolby Digital" -e track:s1 -s flag-default=0 -s language=en-us; done

Yeah, that's all gibberish to be and I don't even know how to use the command line. LOL Thanks for the info though.
 
Yeah, that's all gibberish to be and I don't even know how to use the command line. LOL Thanks for the info though.
Open the CMD prompt, run as Admin, paste what he has above.
 
But how does that line tell it where to look for the files?
 
But how does that line tell it where to look for the files?
If I thought I could explain it, I would, you know that I love to help, but this is hard to explain. ,I really can't explain it but I know it works. I am really sorry.
 
But how does that line tell it where to look for the files?

It's looking in the "current directory" you are in, which by default shows in the command prompt.

You can type cd "<path>" to change the path. If the path is on a different device, use the /D option, or just type the device letter and the colon (e.g., D:) and press enter to "log on to" that device.

Another way is to hold down shift and right click on a directory in file explorer and click on "open command window here." That's may or may not have been replace in Windows 10 to open a PowerShell window instead. I don't remember because I have my set so the option is always there when I right click.

You can also just put the paths you want right in the command itself (e.g., "C:\filepath\file.mp4").
 
Sorry, I just noticed his example was bash not a batch file, but the process is the same. Either used cd to change to the directory you want, or put the right paths in the command itself.

A better way is to make an actual script file and use command line arguments to feel it the paths you want, but that's beyond the scope of this quick example.
 
And I guess I should have been more specific. What I'd like to do is just batch convert everything in a folder. Meaning if I have 40 .mp4 and 40 .srt just convert them in to 40 .mkv files with the corresponding subtitles merged in to them all at once.

But from what I've been able to gather that doesn't seem possible. Or I'm too dumb. I did find a tool that can do it but it sets the subtitle to the default (and names it which I don't want either) and I don't want it set to default because then Plex will always play it. I just want the option to have the subtitle. Oh well.
 
Back
Top