No SRT subtitles via DLNA on Samsung ue48js9000 with my book live 4TB

Hi,I just bought the new Samsung ue48js9000 uhd and cannot play SRT subtitles via DLNA / Network (tried cable and Wifi) with WD my book live 4TB. Embebed subtitles in MKV play ok. SRT subtitles play ok if connected via USB drive to OCB. With other TV's at home SRT subtitles play fine via DLNA / Network (Samsung F7000 and D6500). FW Versions are (latest I can find by 30.JUL.2015):Samsung JS900: 1214WD My Cloud: v04.01.04-422DLNA Media Server (Twonky): 7.2.9_7.5.0-43  Tried to rebuid database and configurations on the twonky access port :9000 with different settings for the TV with no differente results (Generic Media Receiver, Samsung TV, ...) - note that it defaults do "Samsung Smart TV" which I beleive to be ok. Any help would be appreciated. Best regards, 
Joao

JMora wrote:
The srt names are the same as the MP4 files and display well with other older Samsung sets (2013 f7000 and 2011 d6500) via dlna/network. Only doesn't have subtitles with this new uhd TV js9000 via dlna/network.If the older Samsung sets (2013 f7000 and 2011 d6500) properly display SRT subtitle files via DLNA from the WD My Cloud, that would indicate a problem with your new Samsung JS9000 TV and its built in DLNA client software/application. If this is the case then you should contact Samsung to see if there is a firmware or app update for your TV. Otherwise about the only other suggestion I have at the moment, if the SRT files display properly on other devices that access the WD My Cloud, is to check the Twonky Server settings on the WD My Cloud to see how the Twonky server is treating your TV in the "Media Receiver Type" field under Sharing -> Media Receiver. If the value for "Media Receiver Type" is something other than "Samsung TV" or "Samsung Smart TV" then you may have to change the value and test to see if it fixes the issue. For more information on how to access the Twonky Server on the WD My Cloud see the following WD Support link: How to access the Twonky Media Server on a WD NAS

Similar Messages

  • Tip: (Cyrillic) .srt subtitles with QuickTime Player!

    Thanks to the great team that is behind the Perian project we can now watch XviD, DIvX, whatever codec video content complete with .srt subtitle tracks inside QuickTime Player, Front Row and everywhere else you can play quicktime files. The function is not part of the Perian version available for download just yet, you have to compile it yourself using Apple's Xcode tools and the source code available from perian.org via subversion, but it is really, really easy! I've posted detailed instructions on my blog at http://etosx.blogspot.com for those who have not played with Xcode.
    MBP 2.16 2GB RAM, 120GB HDD   Mac OS X (10.4.9)  

    n/a

  • Disable SRT subtitles in Quicktime

    Hello,
    I have been looking for an answer for quite some time now, so I'll post my problem here and hope for someone to find a solution.
    When I play an AVI movie file with QuickTime Player, it automatically displays the SRT subtitles if located in the same folder. But when I try to disable those subs (via the menu bar), the menu supposed to display "1-Off, 2-English, 3-Spanish..." is gray and "Off" is selected. But the subs are played!
    Example:
    2 Files in Folder "My movies" -> "my_movie1.avi" and "my_movie1.srt"
    Note: removing/renaming the SRT file is NOT an option.

    If you look in the Perian control panel, you will see a tick box called 'load external subtitles'. This referrs to loading .srt files. With this option unticked (turned off) it will no longer always show subtitles.

  • How to transfer a 8GB .MOV file from MacBook Air (late 2013) via external HD (Samsung S2 Portable) to a Dell laptop ?

    Hi guys and galls,
    How can I transfer a 8GB .MOV file from MacBook Air (mid 2013) via external HD (Samsung S2 Portable) to a Dell laptop ? The mentioned file currently will not let me transfer it to my ext HD. I want to upload it afterwards to a Dell laptop with Windows software installed.
    Reformatting the drive doesn't seem to be the sollution, since this will erase all the data stored on the ext HD, and it will only allow me to use the drive with either Apple or Microsoft equipment.
    Please HELP, running out of options here... Thnx, "Apple-Dummy"

    Apple-Dummy wrote:
    How can I tell whether my External HD is formatted NTFS?
    Attach the HDD to your MBP.  Click on the icon on the desktop COMMAND+I. It will produce a display such as this and look what it says by FORMAT.
    How do I format my External HD: FAT or ExFAT?
    Do this on a PC.  You will have to use the Windows equivalent of Disk Utility.  I am not a Windows user so I cannot give you detailed information regarding this.  I have seen on these forums that there are at times compatibility problems if formatted on a Mac.
    Which one is preferred, FAT or ExFAT? And why?
    Use ExFAT.  FAT has a file size limitation of 4 GB.
    Ciao.

  • Avi+SRT subtitles on Apple TV ...and more.

    Hi,
    3 questions (hope it´s not too much):
    1.
    I would like to read Avi+SRT subtitles on Apple TV without further convertion.
    Does anybody use this or other solution with good results?
    <Edited by Moderator>
    2.
    Is it true that current Apple Tv do not support Full HD video 1920x1080?
    3.
    Will I be able to play Blu-ray films from my computer BR player with Apple TV?
    Thanks very much.
    Regards
    L.

    Hi,
    thanks for the quick replies.
    So sorry if I asked for something that it´s not "proper" for this forum, but they say:
    "The aTV Flash is a software upgrade that will greatly enhance the functionality of the Apple TV. The software is simple to install, and requires no modification or tricky coding. The software can be easily removed at any time, and it will NOT void the warranty."

  • AS3 SRT Subtitle in SWF

    Hi all,
    I've been looking at some tutorials in how to add SRT subtitles in flash. I found this grea article in base42 but i'm not finding a way to make it work can anyone give me a hand in how this works?
    PLS HELP!!!
    Let's say I have 4 files
    movie.fla (movie.swf)
    // I need to make the subtitle SRT show on the textBox_txt during my animation (timeline)
    textBox_txt.text = subtitle.srt
    subtitle.srt
    1
    00:00:20,000 --> 00:00:24,400
    In connection with a dramatic increase
    in crime in certain neighbourhoods,
    2
    00:00:24,600 --> 00:00:27,800
    the government is implementing a new policy...
    SubtitleParser.as
    package nl.inlet42.data.subtitles {
          *     @author Jankees.van.Woezik
         public class SubtitleParser {
              public static function parseSRT(data : String) : Array {
                   var result : Array = new Array();
                   var lines : Array;
                   var translation : SubTitleData;
                   var blocks : Array = data.split(/^[0-9]+$/gm);
                   for each (var block : String in blocks) {
                        translation = new SubTitleData();
                        lines = block.split('\n');
                        for each (var line : String in lines) {
                             //all lines in a translation block
                             if(trim(line) != "") {
                                  if(line.match("-->")) {
                                       //timecodes line
                                       var timecodes : Array = line.split(/[ ]+-->[ ]+/gm);
                                       if(timecodes.length != 2) {
                                            trace("Translation error, something wrong with the start or end time");                                   
                                       } else {
                                            translation.start = stringToSeconds(timecodes[0]);
                                            translation.end = stringToSeconds(timecodes[1]);
                                            translation.duration = translation.end - translation.start;
                                            if(translation.duration < 0) {
                                                 trace("Translation error, something wrong with the start or end time");                                   
                                  } else {
                                       //translation line
                                       if(translation.text.length != 0) line = "\n" + trim(line);
                                       translation.text += line;
                        result.push(translation);
                   return result;
              public static function trim(p_string : String) : String {
                   if (p_string == null) {
                        return '';
                   return p_string.replace(/^\s+|\s+$/g, '');
               * Convert a string to seconds, with these formats supported:
               * 00:03:00.1 / 03:00.1 / 180.1s / 3.2m / 3.2h / 00:01:53,800
               * Special thanks to Thijs Broerse of Media Monks!
              public static function stringToSeconds(string : String) : Number {
                   var arr : Array = string.split(':');
                   var sec : Number = 0;
                   if (string.substr(-1) == 's') {
                        sec = Number(string.substr(0, string.length - 1));
                   }else if (string.substr(-1) == 'm') {
                        sec = Number(string.substr(0, string.length - 1)) * 60;
                   }else if(string.substr(-1) == 'h') {
                        sec = Number(string.substr(0, string.length - 1)) * 3600;
                   }else if(arr.length > 1) {
                        if(arr[2] && String(arr[2]).indexOf(',') != -1) arr[2] = String(arr[2]).replace(/\,/, ".");
                        sec = Number(arr[arr.length - 1]);
                        sec += Number(arr[arr.length - 2]) * 60;
                        if(arr.length == 3) {
                             sec += Number(arr[arr.length - 3]) * 3600;
                   } else {
                        sec = Number(string);
                   return sec;
    SubTitleData.as
    package nl.inlet42.data.subtitles {
         public class SubTitleData {
              public var text : String;
              public var start : Number;
              public var duration : Number;
              public var end : Number;
              public function SubTitleData(inText : String = "",inStart : Number = 0,inDuration : Number = 0,inEnd : Number = 0) {
                   text = inText;
                   start = inStart;
                   duration = inDuration;
                   end = inEnd;
              public function toString() : void {
                   trace("nl.inlet42.data.subtitles.SubTitleData");
    Thansk a lot!!!

    Since you mention AS3 in the subject line, wouldn't it be more logical to ask the question in the AS3 forum?

  • How to create SRT subtitle files?

    Hi. I created some movies in iMovie and published them to iTunes, where they appear as "QuickTime movie files". I want to add subtitles to these movies, and to some m4v movies. I know how to use iSubtitle to add subtitles to a movie, but that is when I already have an SRT subtitles file. I do not know how to create an SRT subtitle file from scratch. Does anyone know what product / editor to use to create SRT files? Thank you

    I found out the Max TextEdit software can be used for this ...

  • Adding SRT subtitles to FCPX or FCP7 timelines

    I made an App called Final SRT for importing SRT subtitle to Final Cut Pro X or Final Cut Pro 7. Many people had been asking for this for a long time. You can buy it from Mac App Store.
    I may receive some form of compensation, financial or otherwise, from my recommendation or link.
    <Edited by Host>

    Actually, I've been playing around with the new Closed Caption Importer component
    http://developer.apple.com/samplecode/ClosedCaptionImporter/index.html
    I like the look of it and it just needs to be fleshed out to be more user friendly for the creation of captions, but it's following a standard that allows the captions to be inside the movie file. (Some of the tools I've found convert .scc to .srt.. with QuickTime able to read the .scc, it should make it easier)
    Message was edited by: Kyn Drake

  • How can I convert video with srt subtitles?

    If I have an avi plus an .srt subtitles file, how can I convert this to play on the iPad?
    If, on my iMac, I use Quicktime, I can save the avi as .mov with hard subs.  But when I convert this .mov to mp4, the subtitles disappear.

    Why go to all the trouble of converting? Why not just download an app that can play .avi files with subtitle support?

  • Multi-line .srt subtitle support?

    I've got a foreign language film .m4v with soft-embedded .srt subtitles. (I used Subler to add the .srt track) In subtitle editors like Jubler, the subtitles are spanned across two lines. These display as two lines of dialogue in Quicktime in 10.6.2, but on my AppleTV (v 3.0.2) they display as one line, so the text ends up getting truncated with "..." on the end.
    So for example:
    In QT:
    A brave man sheds blood
    before he sheds tears.
    In ATV:
    A brave man sheds blood before he sheds ...
    Am I using the wrong character to do a "newline"?

    Anyone? Nobody else has used multi-line subtitle tracks?
    Should I be submitting this to Apple Bugs?

  • Convert .srt subtitles

    How do I convert a .srt subtitle file to import into DVDSP4? I'm new to using subtitles and have no idea how they work. All I know is I have the movie imported fine, but I was given subtitles as a .srt file. What do I do? Any help is greatly appreciated.
    Thanks all

    After some research, I found a nice program that will import the srt file (TitleLAB). I then export it for DVD Studio Pro. However, when I go to import it to my project, DVD SP says
    "No corresponding subtitles found.
    The video asset timecode may not correspond with the timecode specified for the subtitles in the import file or the file is invalid."
    This doesn't make sense to me. What can I do, or what am I doing wrong?

  • Srt subtitles on Apple TV

    Hi, I have this home made movie AVI+SRT subtitle file that I want to watch on my Apple TV. Can someone explain me the process to do this without "paste" the subtitles by using submerge? is it posible? I know that Apple Tv has a subtitle option on settings for Rentals movie that actually has CC but how this works in a home made movie?
    thanks!

    Hi tmartine thanks for your replay, but Quicktime is not the problem, actually I can perfectly watch the movie with the srt subtitles in Quicktime by using perian. The thing is How to do the same in the Apple Tv without having to paste the subtitles in the film using submerge.
    thanks anyway
    Message was edited by: jark

  • Add .srt subtitles

    I'd like to add .srt subtitles to a .avi movie. Anyone know how to convert .srt to a Premiere Elements compatible format? .. or would Encore be a better way to go?

    Steve,
    Encore can work with true Sub-Titles (and also Closed Caption, which is similar, though different), and can use most common Sub-Title text formats.
    For specific Encore questions, including Sub-Titles, the Encore Forum is a great place.
    Good luck,
    Hunt

  • I recently bought an Ipod touch 2nd gen, (Ebay). It's in great shape and seemed to be wiped clean.  When I connect (via windows computer) to Itunes with usb cord the Ipod icon shows, but the only function you can do is eject. When its in the upper right h

    I recently bought an Ipod touch 2nd gen, (Ebay). It's in great shape and seemed to be wiped clean.
    When I connect (via windows computer) to Itunes with usb cord the Ipod icon shows, but the only function you can do is eject. When its in the upper right hand corner and you click on it all you get is a done button, when it's in the side bar right click and your only option is eject, left click has no effect. If I go to "file">devices it's as if there are no devices connected.
    I purchased a song with Itunes on the Ipod itself, and it transferred to my library on the computer automatically .
    I have an Iphone 5 and a nano that are still functioning with Itunes thru computer so I'm thinking the issue is with the Ipod touch. I've reset it several times, rebooted it, with no change.
    nothing on the internet has helped, I called tech support and got disconnected. Should I take it to a retail store? I just don't know where to go next, I'm of course willing to pay for tech or repair. looking for suggestions.

    Try:
    - iOS: Not responding or does not turn on
    - Also try DFU mode after try recovery mode
    How to put iPod touch / iPhone into DFU mode « Karthik's scribblings
    - If not successful and you can't fully turn the iOS device fully off, let the battery fully drain. After charging for an least an hour try the above again.
    - Try on another computer          
    - If still not successful that usually indicates a hardware problem and an appointment at the Genius Bar of an Apple store is in order.
    Apple Retail Store - Genius Bar       

  • PLEASE APPLE, GIVE US SYNCING VIA ITUNES BACK!!!!!! Why take away one of the most valuable features of iTunes???? Why take away our choice of syncing via the Cloud or locally with iTunes????

    DO NOT UPGRADE TO MAVERICK UNLESS YOU WANT TO BE DEPENDED ON APPLE’S CLOUD. It removes the ability to sync Calendar, Notepad, and Contacts between your apple devices. You then can only sync them via Apple’s Cloud. For those of you like me, that do not want to be depended on an external data base accessible via the Internet or Cel Phone (with data charges).
    Why do I not want to use the Cloud to sync and backup?
    1. I found I only have one device with me at a time or am sitting at a computer when I add to my calendar, make a note, or add/change a Contact. Syncing with iTunes while upgrading apps and doing a back up to two external hard drives worked great and met my needs.
    2. I use WiFi and pay for the minimum data plan with my Cel provider (AT&T). I do not want to pay higher monthly data fees.
    3. I do not like a central data base (that will be hacked someday) having the personal info I have in my Notes, Schedule, and Contacts.
    4. I like the security of my most important data being on my own hard drives and written off to Data DVD’s, not subject to even rare central system outages/failures.
    5. I do not like the prospect of becoming dependent on a Cloud in which the provider could decide at any time to either start selling information or charging monthly fees to recover the costs of providing the cloud.
    I am reluctant to go to the trouble to go back to 10.8 because Apple will eventual stop providing updates to 10.8 and 10.8 compatible applications.
    PLEASE APPLE, GIVE US SYNCING VIA ITUNES BACK!!!!!! Why take away one of the most valuable features of iTunes???? Why take away our choice of syncing via the Cloud or locally with iTunes????

    You will need to contact Apple through their feedfack channel. These are user to user forums, sorry.
    FEEDBACK    http://www.apple.com/feedback/macosx.html
    Pete

Maybe you are looking for

  • Pixma scanner no longer working [Solved]

    This worked flawlessly about a month ago- so there are no sane packages to downgrade in hopes of solving this problem. Sane detects the scanner just fine (cups printing still works with this multifunction and it scans fine in Windows- so not a hardwa

  • Hi my ipad air wont charge unless its turnt off please help i just boght a new charger it still wont work

    hi my ipad air wont charge unless its turnt off please help i just boght a new charger it still wont work

  • Query of Outgoing Payments Monthwise

    Hi Gurus, I have a written a simple query which gives me a summarized outgoing payment list group by vendor with date range. Query is working fine, now I want that report in monthwise (column) format from the given date range. Cau u help me how do I

  • I can't update from 1.2 to 1.2.1

    Hi I am trying to update my iPod 5th generation 30GB I was advised of this necessity when i was connecting my iPod to my PC I accepted the upgrade but at the end of the download i received a error message of corrupted file. So i decided to downlaod m

  • IOS5 missing slideshow transitions?

    After upgrading my iPhone4 to iOS5, it would appear some of my Photo Slideshow Transitions are missing. In particular when I airplay a picture slideshow to an upgraded ATV2, it is stuck on Ken Burns transition which isn't even an option in my transit