FAQ  •  Register  •  Login

subtitles on Sony kdl-40ex521

<<

gusascencio

Serviio newbie

Posts: 5

Joined: Mon Aug 08, 2011 5:31 am

Post Mon Aug 08, 2011 5:37 am

subtitles on Sony kdl-40ex521

does subtitles work on a Sony kdl-40ex521 ???

y read most of the forum and theres no answers for this question..
how i make it work please!!!
<<

Illico

User avatar

DLNA master

Posts: 4646

Joined: Fri Jul 23, 2010 8:08 am

Location: France

Post Mon Aug 08, 2011 7:33 am

Re: subtitles on Sony kdl-40ex521

gusascencio wrote:does subtitles work on a Sony kdl-40ex521 ???

y read most of the forum and theres no answers for this question..
how i make it work please!!!


For 2010 models --> NO
For 2011 models (EX521) --> Don't know. Try:
Try adding this line just before <MediaFormatProfiles> on the Sony Profile, (see panasonic profile)
<SubtitlesMimeType>text/srt</SubtitlesMimeType>
or
<ContentDirectoryMessageBuilder>org.serviio.upnp.service.contentdirectory.PacketVideoDLNAMessageBuilder</ContentDirectoryMessageBuilder>
<SubtitlesMimeType>text/srt</SubtitlesMimeType>
Illico
Sony 2010 KDL-46EX501 | BDP-S373 | SMP-N100 | Windows 8-i7 | Network DD HD-CE1.5TLU2 | Livebox2-UHD86 | ServiiDroid | ServiiGo | BubbleUPnP
Serviio beta tester - Moderator
<<

gusascencio

Serviio newbie

Posts: 5

Joined: Mon Aug 08, 2011 5:31 am

Post Tue Aug 09, 2011 3:29 am

Re: subtitles on Sony kdl-40ex521

  Code:
<Profile id="9" name="Sony Bravia TV" extendsProfileId="1">
      <ContentDirectoryMessageBuilder>org.serviio.upnp.service.contentdirectory.PanasonicDLNAMessageBuilder</ContentDirectoryMessageBuilder>
      <SubtitlesMimeType>text/srt</SubtitlesMimeType>
      <Detection>
         <UPnPSearch>
            <FriendlyName>BRAVIA.*</FriendlyName>
         </UPnPSearch>
      </Detection>
      <MediaFormatProfiles>
         <!-- rename native mpeg2ts with h264/ac3 ac3 formats to those supported by the tv -->
         <MediaFormatProfile mime-type="video/vnd.dlna.mpeg-tts" name="AVC_TS_HD_24_AC3,AVC_TS_HD_50_AC3,AVC_TS_HD_60_AC3,AVC_TS_HD_EU">AVC_TS_MP_HD_AC3</MediaFormatProfile>
         <MediaFormatProfile mime-type="video/vnd.dlna.mpeg-tts" name="AVC_TS_HD_24_AC3,AVC_TS_HD_50_AC3,AVC_TS_HD_60_AC3,AVC_TS_HD_EU">AVC_TS_MP_SD_AC3</MediaFormatProfile>
         <MediaFormatProfile mime-type="video/vnd.dlna.mpeg-tts" name="AVC_TS_HD_24_AC3_T,AVC_TS_HD_50_AC3_T,AVC_TS_HD_60_AC3_T,AVC_TS_HD_EU_T">AVC_TS_MP_HD_AC3_T</MediaFormatProfile>
         <MediaFormatProfile mime-type="video/vnd.dlna.mpeg-tts" name="AVC_TS_HD_24_AC3_T,AVC_TS_HD_50_AC3_T,AVC_TS_HD_60_AC3_T,AVC_TS_HD_EU_T">AVC_TS_MP_SD_AC3_T</MediaFormatProfile>
         <!-- rename transcoded mpeg2ts with h264 to one of the TV's supported profiles -->
         <MediaFormatProfile mime-type="video/mpeg" name="AVC_TS_HD_24_AC3_ISO,AVC_TS_HD_50_AC3_ISO,AVC_TS_HD_60_AC3_ISO,AVC_TS_HD_EU_ISO">AVC_TS_MP_HD_AC3_ISO</MediaFormatProfile>
         <MediaFormatProfile mime-type="video/mpeg" name="AVC_TS_HD_24_AC3_ISO,AVC_TS_HD_50_AC3_ISO,AVC_TS_HD_60_AC3_ISO,AVC_TS_HD_EU_ISO">AVC_TS_MP_SD_AC3_ISO</MediaFormatProfile>
      </MediaFormatProfiles>
      <Transcoding>
         <!-- For dvr-ms files force mpeg2video transcoding to fix monotone timestamps problems -->
         <Video targetContainer="mpegts" targetACodec="ac3" forceVTranscoding="true">
            <Matches container="asf" vCodec="mpeg2video" />
         </Video>
         <!-- Transcode all h264 video with HIGH/MAIN > Level 4.1 on MPEG-TS stream with MPEG2VIDEO and ac3 audio transcoding -->
         <!--  expected profile MPEG_TS_SD_EU/MPEG_TS_SD_NA/MPEG_TS_SD_KO -->
         <Video targetContainer="mpegts" targetVCodec="mpeg2video" targetACodec="ac3" aBitrate="384">
            <Matches container="avi" vCodec="h264" profile="high" levelGreaterThan="4.1" />
            <Matches container="avi" vCodec="h264" profile="main" levelGreaterThan="4.1" />
            <Matches container="matroska" vCodec="h264" profile="high" levelGreaterThan="4.1" />
            <Matches container="matroska" vCodec="h264" profile="main" levelGreaterThan="4.1" />
            <Matches container="mp4" vCodec="h264" profile="high" levelGreaterThan="4.1" />
            <Matches container="mp4" vCodec="h264" profile="main" levelGreaterThan="4.1" />
         </Video>
         <!-- Remux all other h264 video on MPEG-TS stream with ac3 audio transcoding -->
         <!--  expected profile AVC_TS_MP_HD_AC3_ISO -->
         <Video targetContainer="mpegts" targetACodec="ac3" aBitrate="384">
            <Matches container="avi" vCodec="h264" />
            <Matches container="mp4" vCodec="h264" />
            <Matches container="matroska" vCodec="h264" />
            <!-- if audio different to ac3, must be transcoded -->
            <Matches container="mpegts" aCodec="aac" />
            <Matches container="mpegts" aCodec="mp3" />
            <Matches container="mpegts" aCodec="dca" />
         </Video>
         <!-- All Others video/audio codec will be transcoded into mpeg2ts, mpeg2video and ac3 audio -->
         <!--  expected profile MPEG_TS_SD_EU/MPEG_TS_SD_NA/MPEG_TS_SD_KO -->
         <Video targetContainer="mpegts" targetVCodec="mpeg2video" targetACodec="ac3" aBitrate="384">
            <Matches container="asf" />
            <Matches container="avi" />
            <Matches container="mp4" />
            <Matches container="matroska" />
            <Matches container="flv" />
         </Video>
         <Audio targetContainer="lpcm">
            <Matches container="asf" />
            <Matches container="mp4" />
            <Matches container="flac" />
            <Matches container="ogg" />
         </Audio>
      </Transcoding>
      <AutomaticImageRotation>true</AutomaticImageRotation>
   </Profile>


this is how it looks, but still not showing subtitles, another idea?
<<

Cerberus

User avatar

DLNA master

Posts: 4114

Joined: Sun Jan 02, 2011 5:20 pm

Location: Reading, UK

Post Tue Aug 09, 2011 3:34 am

Re: subtitles on Sony kdl-40ex521

gusascencio wrote:
  Code:
<Profile id="9" name="Sony Bravia TV" extendsProfileId="1">
      <ContentDirectoryMessageBuilder>org.serviio.upnp.service.contentdirectory.PanasonicDLNAMessageBuilder</ContentDirectoryMessageBuilder>
      <SubtitlesMimeType>text/srt</SubtitlesMimeType>
      <Detection>
         <UPnPSearch>
            <FriendlyName>BRAVIA.*</FriendlyName>
         </UPnPSearch>
      </Detection>
      <MediaFormatProfiles>
         <!-- rename native mpeg2ts with h264/ac3 ac3 formats to those supported by the tv -->
         <MediaFormatProfile mime-type="video/vnd.dlna.mpeg-tts" name="AVC_TS_HD_24_AC3,AVC_TS_HD_50_AC3,AVC_TS_HD_60_AC3,AVC_TS_HD_EU">AVC_TS_MP_HD_AC3</MediaFormatProfile>
         <MediaFormatProfile mime-type="video/vnd.dlna.mpeg-tts" name="AVC_TS_HD_24_AC3,AVC_TS_HD_50_AC3,AVC_TS_HD_60_AC3,AVC_TS_HD_EU">AVC_TS_MP_SD_AC3</MediaFormatProfile>
         <MediaFormatProfile mime-type="video/vnd.dlna.mpeg-tts" name="AVC_TS_HD_24_AC3_T,AVC_TS_HD_50_AC3_T,AVC_TS_HD_60_AC3_T,AVC_TS_HD_EU_T">AVC_TS_MP_HD_AC3_T</MediaFormatProfile>
         <MediaFormatProfile mime-type="video/vnd.dlna.mpeg-tts" name="AVC_TS_HD_24_AC3_T,AVC_TS_HD_50_AC3_T,AVC_TS_HD_60_AC3_T,AVC_TS_HD_EU_T">AVC_TS_MP_SD_AC3_T</MediaFormatProfile>
         <!-- rename transcoded mpeg2ts with h264 to one of the TV's supported profiles -->
         <MediaFormatProfile mime-type="video/mpeg" name="AVC_TS_HD_24_AC3_ISO,AVC_TS_HD_50_AC3_ISO,AVC_TS_HD_60_AC3_ISO,AVC_TS_HD_EU_ISO">AVC_TS_MP_HD_AC3_ISO</MediaFormatProfile>
         <MediaFormatProfile mime-type="video/mpeg" name="AVC_TS_HD_24_AC3_ISO,AVC_TS_HD_50_AC3_ISO,AVC_TS_HD_60_AC3_ISO,AVC_TS_HD_EU_ISO">AVC_TS_MP_SD_AC3_ISO</MediaFormatProfile>
      </MediaFormatProfiles>
      <Transcoding>
         <!-- For dvr-ms files force mpeg2video transcoding to fix monotone timestamps problems -->
         <Video targetContainer="mpegts" targetACodec="ac3" forceVTranscoding="true">
            <Matches container="asf" vCodec="mpeg2video" />
         </Video>
         <!-- Transcode all h264 video with HIGH/MAIN > Level 4.1 on MPEG-TS stream with MPEG2VIDEO and ac3 audio transcoding -->
         <!--  expected profile MPEG_TS_SD_EU/MPEG_TS_SD_NA/MPEG_TS_SD_KO -->
         <Video targetContainer="mpegts" targetVCodec="mpeg2video" targetACodec="ac3" aBitrate="384">
            <Matches container="avi" vCodec="h264" profile="high" levelGreaterThan="4.1" />
            <Matches container="avi" vCodec="h264" profile="main" levelGreaterThan="4.1" />
            <Matches container="matroska" vCodec="h264" profile="high" levelGreaterThan="4.1" />
            <Matches container="matroska" vCodec="h264" profile="main" levelGreaterThan="4.1" />
            <Matches container="mp4" vCodec="h264" profile="high" levelGreaterThan="4.1" />
            <Matches container="mp4" vCodec="h264" profile="main" levelGreaterThan="4.1" />
         </Video>
         <!-- Remux all other h264 video on MPEG-TS stream with ac3 audio transcoding -->
         <!--  expected profile AVC_TS_MP_HD_AC3_ISO -->
         <Video targetContainer="mpegts" targetACodec="ac3" aBitrate="384">
            <Matches container="avi" vCodec="h264" />
            <Matches container="mp4" vCodec="h264" />
            <Matches container="matroska" vCodec="h264" />
            <!-- if audio different to ac3, must be transcoded -->
            <Matches container="mpegts" aCodec="aac" />
            <Matches container="mpegts" aCodec="mp3" />
            <Matches container="mpegts" aCodec="dca" />
         </Video>
         <!-- All Others video/audio codec will be transcoded into mpeg2ts, mpeg2video and ac3 audio -->
         <!--  expected profile MPEG_TS_SD_EU/MPEG_TS_SD_NA/MPEG_TS_SD_KO -->
         <Video targetContainer="mpegts" targetVCodec="mpeg2video" targetACodec="ac3" aBitrate="384">
            <Matches container="asf" />
            <Matches container="avi" />
            <Matches container="mp4" />
            <Matches container="matroska" />
            <Matches container="flv" />
         </Video>
         <Audio targetContainer="lpcm">
            <Matches container="asf" />
            <Matches container="mp4" />
            <Matches container="flac" />
            <Matches container="ogg" />
         </Audio>
      </Transcoding>
      <AutomaticImageRotation>true</AutomaticImageRotation>
   </Profile>


this is how it looks, but still not showing subtitles, another idea?


can you post a detailed log file after attempting to get a subtitle file to work so we can see if this is an issue with the subtitle file or that the TV doesnt support them at all. :) i have a feeling the TV doesnt support them the same as the older models dont.
Phil Bennett
Beta Tester Group
Wiki | FAQ

Samsung LE40C750 LCD | Samsung BD-C5900 | Sony PS3 | Windows 7 |
HowTo: Provide supported formats of a device HowTo: Record a new ticket on Bitbucket
HowTo: Provide details of a video file that doesn't play HowTo: Turn on detailed logging
<<

gusascencio

Serviio newbie

Posts: 5

Joined: Mon Aug 08, 2011 5:31 am

Post Tue Aug 09, 2011 4:06 am

Re: subtitles on Sony kdl-40ex521

  Code:
2011-08-08 22:04:19,376 INFO  [MediaServer] ------------------------------------------------------------------------
2011-08-08 22:04:19,377 INFO  [MediaServer] Serviio DLNA media streaming server v 0.5.2 (rev. 4e3210bd9ff3)
2011-08-08 22:04:19,377 INFO  [MediaServer] Petr Nejedly 2009-2011
2011-08-08 22:04:19,377 INFO  [MediaServer] http://www.serviio.org
2011-08-08 22:04:19,377 INFO  [MediaServer]
2011-08-08 22:04:19,377 INFO  [MediaServer] Java 1.6.0_24-Apple Inc.
2011-08-08 22:04:19,377 INFO  [MediaServer] OS Mac OS X x86_64 10.6.6
2011-08-08 22:04:19,377 INFO  [MediaServer] File encoding: UTF-8
2011-08-08 22:04:19,377 INFO  [MediaServer] ------------------------------------------------------------------------
2011-08-08 22:04:19,486 INFO  [RestletServer] Starting Restlet server exposed on localhost:23423
2011-08-08 22:04:19,540 INFO  [DBSchemaUpdateExecutor] Checking if DB schema needs to be updated
2011-08-08 22:04:20,792 INFO  [ProfilesDefinitionParser] Parsing Profiles definition
2011-08-08 22:04:21,233 INFO  [ProfilesDefinitionParser] Added profile 'Generic DLNA profile' (id=1)
2011-08-08 22:04:21,371 INFO  [ProfilesDefinitionParser] Added profile 'Samsung TV (B-series)' (id=2)
2011-08-08 22:04:21,453 INFO  [ProfilesDefinitionParser] Added profile 'XBox 360' (id=3)
2011-08-08 22:04:21,516 INFO  [ProfilesDefinitionParser] Added profile 'Playstation 3' (id=4)
2011-08-08 22:04:21,599 INFO  [ProfilesDefinitionParser] Added profile 'Samsung TV (A-series)' (id=5)
2011-08-08 22:04:21,650 INFO  [ProfilesDefinitionParser] Added profile 'DirecTV HD-DVR' (id=6)
2011-08-08 22:04:21,777 INFO  [ProfilesDefinitionParser] Added profile 'Samsung TV / player (C/D-series)' (id=7)
2011-08-08 22:04:21,812 INFO  [ProfilesDefinitionParser] Added profile 'LG BD player' (id=8)
2011-08-08 22:04:22,030 INFO  [ProfilesDefinitionParser] Added profile 'Sony Bravia TV' (id=9)
2011-08-08 22:04:22,380 INFO  [ProfilesDefinitionParser] Added profile 'Sony BD Player' (id=10)
2011-08-08 22:04:22,472 INFO  [ProfilesDefinitionParser] Added profile 'Panasonic Viera' (id=12)
2011-08-08 22:04:22,600 INFO  [ProfilesDefinitionParser] Added profile 'Toshiba Rezga' (id=13)
2011-08-08 22:04:22,643 INFO  [AbstractTranscodingDeliveryEngine] Cleaning transcode engine and its data
2011-08-08 22:04:22,687 INFO  [WebServer] Socket buffer set to 65535 bytes
2011-08-08 22:04:22,740 INFO  [WebServer] WebServer starting on port 8895
2011-08-08 22:04:22,752 INFO  [Device] Created UPnP Device with UUID: 50339d3c-c744-3be9-9a24-dbb8871e1f05, bound address: 192.168.0.101
2011-08-08 22:04:22,777 INFO  [CompositeCacheManager] Creating cache manager from config file: /cache.ccf
2011-08-08 22:04:22,783 INFO  [ThreadPoolManager] thread_pool.default PoolConfiguration = useBoundary = [true] boundarySize = [2000] maximumPoolSize = [150] minimumPoolSize = [4] keepAliveTime = [300000] whenBlockedPolicy = [RUN] startUpSize = [4]
2011-08-08 22:04:22,786 INFO  [CompositeCacheConfigurator] Setting default auxiliaries to null
2011-08-08 22:04:22,786 INFO  [CompositeCacheConfigurator] No special CompositeCacheAttributes class defined for key [jcs.default.cacheattributes], using default class.
2011-08-08 22:04:22,787 INFO  [CompositeCacheConfigurator] setting defaultCompositeCacheAttributes to [ useLateral = true, useRemote = true, useDisk = true, maxObjs = 100, maxSpoolPerRun = -1, diskUsagePattern = 0 ]
2011-08-08 22:04:22,787 INFO  [CompositeCacheConfigurator] No special ElementAttribute class defined for key [jcs.default.elementattributes], using default class.
2011-08-08 22:04:22,788 INFO  [CompositeCacheConfigurator] setting defaultElementAttributes to [ IS_LATERAL = true, IS_SPOOL = true, IS_REMOTE = true, IS_ETERNAL = true, MaxLifeSeconds = -1, IdleTime = -1, CreateTime = 1312859062787, LastAccessTime = 1312859062787, getTimeToLiveSeconds() = -1, createTime = 1312859062787 ]
2011-08-08 22:04:22,790 INFO  [CompositeCacheConfigurator] No special ElementAttribute class defined for key [jcs.region.local_resetafterplay.elementattributes], using default class.
2011-08-08 22:04:22,803 INFO  [LRUMemoryCache] initialized LRUMemoryCache for local_resetafterplay
2011-08-08 22:04:22,803 INFO  [CompositeCache] Constructed cache with name [local_resetafterplay] and cache attributes [ useLateral = true, useRemote = true, useDisk = true, maxObjs = 1000, maxSpoolPerRun = -1, diskUsagePattern = 0 ]
2011-08-08 22:04:22,803 INFO  [CompositeCacheConfigurator] No special ElementAttribute class defined for key [jcs.region.local_default.elementattributes], using default class.
2011-08-08 22:04:22,803 INFO  [LRUMemoryCache] initialized LRUMemoryCache for local_default
2011-08-08 22:04:22,803 INFO  [CompositeCache] Constructed cache with name [local_default] and cache attributes [ useLateral = true, useRemote = true, useDisk = true, maxObjs = 1000, maxSpoolPerRun = -1, diskUsagePattern = 0 ]
2011-08-08 22:04:22,803 INFO  [CompositeCacheConfigurator] Parsed regions [local_resetafterplay, local_default]
2011-08-08 22:04:22,803 INFO  [CompositeCacheConfigurator] Finished configuration in 18 ms.
2011-08-08 22:04:22,806 INFO  [EventSubscriptionExpirationChecker] Starting EventSubscriptionExpirationChecker
2011-08-08 22:04:22,807 INFO  [EventDispatcher] Starting EventDispatcher
2011-08-08 22:04:22,807 INFO  [DiscoveryAdvertisementNotifier] Starting DiscoveryAdvertisementNotifier
2011-08-08 22:04:22,811 INFO  [DiscoverySSDPMessageListener] Starting DiscoverySSDPMessageListener using interface en1 (en1) and address 192.168.0.101, timeout = 0
2011-08-08 22:04:22,813 INFO  [RendererSearchSender] Searching for Renderer devices
2011-08-08 22:04:22,813 INFO  [RendererExpirationChecker] Starting RendererExpirationChecker
2011-08-08 22:04:48,841 INFO  [LibraryAdditionsCheckerThread] Started looking for newly added files
2011-08-08 22:04:48,852 INFO  [LibraryUpdatesCheckerThread] Started looking for updates to currently shared files
2011-08-08 22:05:45,749 INFO  [LibraryAdditionsCheckerThread] Added file 'Kung.mp4' (title: Kung Fu Hustle) to Library
2011-08-08 22:06:05,466 INFO  [LibraryAdditionsCheckerThread] Added file '2012.avi' (title: 2012) to Library
2011-08-08 22:06:20,749 INFO  [LibraryAdditionsCheckerThread] Added file 'MOVIES - 300 Spartans.mp4' (title: The 300 Spartans) to Library
2011-08-08 22:06:24,031 INFO  [LibraryAdditionsCheckerThread] Added file 'Bastardos sin Gloria.divx' (title: Bastardos sin Gloria) to Library
2011-08-08 22:06:36,490 INFO  [LibraryAdditionsCheckerThread] Added file 'MOVIES - Blood Diamond 2007.avi' (title: Blood Diamond) to Library
2011-08-08 22:06:44,397 INFO  [LibraryAdditionsCheckerThread] Added file 'Busqueda Implacable.avi' (title: Busqueda Implacable) to Library
2011-08-08 22:06:56,702 INFO  [LibraryAdditionsCheckerThread] Added file 'Dodge Ball - A True Underdog Story.mp4' (title: DodgeBall: A True Underdog Story) to Library
2011-08-08 22:07:02,494 INFO  [LibraryAdditionsCheckerThread] Added file 'Family Guy - 2x6 - death is a bitch.mpg' (title: Death is a Bitch) to Library
2011-08-08 22:07:10,170 INFO  [LibraryAdditionsCheckerThread] Added file 'Family Guy - 3x16 - A Very Special Family Guy Freakin' Christmas.mpg' (title: A Very Special Family Guy Freakin' Christmas) to Library
2011-08-08 22:07:13,961 INFO  [LibraryAdditionsCheckerThread] Added file 'Family Guy - 4x12 - Perfect Castaway ipod.mp4' (title: Perfect Castaway) to Library
2011-08-08 22:07:18,433 INFO  [LibraryAdditionsCheckerThread] Added file 'Family Guy - 5x3 - Jungle Love.avi.ipod.mp4' (title: Hell Comes to Quahog) to Library
2011-08-08 22:07:24,806 INFO  [LibraryAdditionsCheckerThread] Added file 'Family Guy - 5x4 - Halloween Special BRAND NEW!!!!.mpg' (title: Saving Private Brian) to Library
2011-08-08 22:07:31,482 INFO  [LibraryAdditionsCheckerThread] Added file 'Family Guy - 5x7 - The Fat Guy Strangler.avi' (title: Chick Cancer) to Library
2011-08-08 22:07:39,785 INFO  [LibraryAdditionsCheckerThread] Added file 'Family Guy - Family Goes Camping.mpg' (title: Stewie Griffin: The Untold Story) to Library
2011-08-08 22:07:48,018 INFO  [LibraryAdditionsCheckerThread] Added file 'Family Guy - I Never Met The Dead Man.mpg' (title: Stewie Griffin: The Untold Story) to Library
2011-08-08 22:07:56,884 INFO  [LibraryAdditionsCheckerThread] Added file 'Family Guy - Mr. Saturday Knight.mpg' (title: Stewie Griffin: The Untold Story) to Library
2011-08-08 22:08:04,155 INFO  [LibraryAdditionsCheckerThread] Added file 'Family Guy - Peter gets Liposuction.mpg' (title: Stewie Griffin: The Untold Story) to Library
2011-08-08 22:08:10,596 INFO  [LibraryAdditionsCheckerThread] Added file 'Family Guy- Willy Wonka.mp4' (title: Stewie Griffin: The Untold Story) to Library
2011-08-08 22:08:23,475 INFO  [LibraryAdditionsCheckerThread] Added file 'Halloween 2.avi' (title: Halloween II) to Library
2011-08-08 22:09:06,128 INFO  [UpdateChecker] Checking if a new version is available
2011-08-08 22:09:14,248 INFO  [ContentDirectoryDefinitionParser] Parsing ContentDirectory definition
2011-08-08 22:09:14,743 INFO  [BrowsingCategoriesMessages] Loaded browsing categories message bundle for locale: en
2011-08-08 22:09:37,620 INFO  [LibraryAdditionsCheckerThread] Added file 'Harry Potter And The Deathly Hallows Part 1.mp4' (title: Harry Potter and the Deathly Hallows: Part 1) to Library
2011-08-08 22:10:14,396 INFO  [LibraryAdditionsCheckerThread] Finished looking for newly added files
2011-08-08 22:10:14,627 INFO  [LibraryAdditionsCheckerThread] Started looking for newly added files
2011-08-08 22:10:14,628 INFO  [LibraryUpdatesCheckerThread] Started looking for updates to currently shared files
2011-08-08 22:10:50,923 INFO  [LibraryAdditionsCheckerThread] Added file 'Harry Potter And The Deathly Hallows Part 1 Sample - L3GiT.mp4' (title: Harry Potter And The Deathly Hallows Part 1 Sample - L3GiT) to Library
2011-08-08 22:11:04,069 INFO  [LibraryAdditionsCheckerThread] Added file 'Kick Ass.divx' (title: Kick-Ass) to Library
2011-08-08 22:11:54,133 INFO  [LibraryAdditionsCheckerThread] Added file 'Kung Fu Panda 2008 720P BRRip {MnM-RG H264}.mp4' (title: Kung Fu Panda) to Library
2011-08-08 22:12:19,158 INFO  [LibraryAdditionsCheckerThread] Added file 'Green Zone.avi' (title: Green Zone) to Library
2011-08-08 22:12:23,626 INFO  [LibraryAdditionsCheckerThread] Added file 'Inception%20%282010%29%20Full%20Movie%20DVDRiP.divx' (title: Inception%20%282010%29%20Full%20Movie%20DVDRiP) to Library
2011-08-08 22:12:37,863 INFO  [LibraryAdditionsCheckerThread] Added file 'Presunto Culpable.divx' (title: Presumed Guilty) to Library
2011-08-08 22:12:45,455 INFO  [LibraryAdditionsCheckerThread] Added file 'Remember the Titans - Disney - movie.mp4' (title: Remember the Titans) to Library
2011-08-08 22:12:51,638 INFO  [LibraryAdditionsCheckerThread] Added file 'South Park - 11x13 - Guitar Queer.avi' (title: Guitar Queer-o) to Library
2011-08-08 22:12:55,892 INFO  [LibraryAdditionsCheckerThread] Added file 'Inception%20%282010%29%20Full%20Movie%20DVDRiP.divx' (title: Inception%20%282010%29%20Full%20Movie%20DVDRiP) to Library
2011-08-08 22:13:05,199 INFO  [LibraryAdditionsCheckerThread] Added file 'MOVIES - The 40 Year Old Virgin.mpg' (title: The 40 Year Old Virgin) to Library
2011-08-08 22:13:18,548 INFO  [LibraryAdditionsCheckerThread] Added file 'MOVIES - The Bourne Ultimatum 2007.avi' (title: The Bourne Ultimatum) to Library
2011-08-08 22:13:29,253 INFO  [LibraryAdditionsCheckerThread] Added file 'The%20Doors%20spanish%20-%20l33ch3r.divx' (title: The Doors) to Library
2011-08-08 22:13:46,483 INFO  [LibraryAdditionsCheckerThread] Added file 'The Godfather.avi' (title: The Godfather) to Library
2011-08-08 22:14:00,792 INFO  [LibraryAdditionsCheckerThread] Added file 'The Hangover [2009] dvdscr - kdx.avi' (title: The Hangover) to Library
2011-08-08 22:14:16,826 INFO  [LibraryAdditionsCheckerThread] Added file 'VTS_01_1.VOB' (title: The Hangover) to Library
2011-08-08 22:14:29,395 INFO  [LibraryAdditionsCheckerThread] Added file 'VTS_01_2.VOB' (title: The Hangover) to Library
2011-08-08 22:14:42,337 INFO  [LibraryAdditionsCheckerThread] Added file 'The Men Who Stare at Goats.divx' (title: The Men Who Stare at Goats) to Library
2011-08-08 22:14:48,995 INFO  [LibraryAdditionsCheckerThread] Added file 'The Simpsons.mpg' (title: The Simpsons Movie) to Library
2011-08-08 22:15:02,484 INFO  [LibraryAdditionsCheckerThread] Added file 'The Social Network.avi' (title: The Social Network) to Library
2011-08-08 22:15:10,273 INFO  [LibraryAdditionsCheckerThread] Added file 'Two And A Half Men - 110 - Merry Thanksgiving.avi' (title: Two And A Half Men - 110 - Merry Thanksgiving) to Library
2011-08-08 22:15:14,823 INFO  [LibraryAdditionsCheckerThread] Added file 'Two and a Half Men - 1x01 - Pilot.DVD.SAiNTS.en.avi' (title: Pilot) to Library
2011-08-08 22:15:20,693 INFO  [LibraryAdditionsCheckerThread] Added file 'Two and a Half Men - 1x11 - Alan Harper, Frontier Chiropractor [CrystalShare.com].avi' (title: Alan Harper, Frontier Chiropractor) to Library
2011-08-08 22:15:27,211 INFO  [LibraryAdditionsCheckerThread] Added file 'Two and a Half Men - 1x24 - Can You Feel My Finger .DVD.SAiNTS.en.avi' (title: Can You Feel My Finger?) to Library
2011-08-08 22:15:35,157 INFO  [LibraryAdditionsCheckerThread] Added file 'two.and.a.half.men.103.go.east.on.sunset.hdtv-lol.avi' (title: two.and.a.half.men.103.go.east.on.sunset.hdtv-lol) to Library
2011-08-08 22:15:41,767 INFO  [LibraryAdditionsCheckerThread] Added file 'two.and.a.half.men.119.i.remember.the.coatroom.hdtv.xvid-lol.avi' (title: two.and.a.half.men.119.i.remember.the.coatroom.hdtv.xvid-lol) to Library
2011-08-08 22:15:48,171 INFO  [LibraryAdditionsCheckerThread] Added file 'Two_And_A_Half_Men_-_1x02_-_Big_Flappy_Bastards.lol.avi' (title: Big Flappy Bastards) to Library
2011-08-08 22:15:54,321 INFO  [LibraryAdditionsCheckerThread] Added file 'Two_And_A_Half_Men_-_1x04_-_If_I_Can't_Write_My_Chocolate_Song_I'm_Going_To_Take_A_Nap.LOL.avi' (title: If I Can't Write My Chocolate Song I'm Going to Take a Nap) to Library
2011-08-08 22:16:02,178 INFO  [LibraryAdditionsCheckerThread] Added file 'Two_And_A_Half_Men_-_1x05_-_The_Last_Thing_You_Want_Is_To_Wind_Up_With_A_Hump.lol.[www.the-realworld.de].xvid.avi' (title: The Last Thing You Want Is to Wind Up With a Hump) to Library
2011-08-08 22:16:08,633 INFO  [LibraryAdditionsCheckerThread] Added file 'Two_And_A_Half_Men_-_1x06_-_Did_You_Check_With_The_Captain_Of_The_Flying_Monkeys.lol.[www.the-realworld.de].xvid.avi' (title: Did You Check With the Captain of the Flying Monkeys?) to Library
2011-08-08 22:16:15,427 INFO  [LibraryAdditionsCheckerThread] Added file 'Two_And_A_Half_Men_-_1x07_-_If_They_Do_Go_Either_Way,_They're_Usually_Fake.lol.avi' (title: If They Do Go Either Way, They're Usually Fake) to Library
2011-08-08 22:16:22,887 INFO  [LibraryAdditionsCheckerThread] Added file 'Two_And_A_Half_Men_-_1x08_-_25_Little_Pre-pubers_Without_A_Snoot-ful.LOL.[www.the-realworld.de].avi' (title: Twenty-Five Little Pre-pubers Without a Snoot-ful) to Library
2011-08-08 22:16:28,203 INFO  [LibraryAdditionsCheckerThread] Added file 'Two_And_A_Half_Men_-_1x09_-_Phase_One__Complete.LOL.avi' (title: Phase One, Complete) to Library
2011-08-08 22:16:35,172 INFO  [LibraryAdditionsCheckerThread] Added file 'Two_And_A_Half_Men_-_1x12_-_Camel_Filters_ _Pheromones.lol.[www.the-realworld.de].avi' (title: Camel Filters + Pheromones) to Library
2011-08-08 22:16:41,493 INFO  [LibraryAdditionsCheckerThread] Added file 'Two_And_A_Half_Men_-_1x13_-_Sara_Like_Puny_Alan.lol.[www.the-realworld.de].avi' (title: Sara Like Puny Alan) to Library
2011-08-08 22:16:51,499 INFO  [LibraryAdditionsCheckerThread] Added file 'Two_And_A_Half_Men_-_1x14_-_I_Can't_Afford_Hyenas.FoV.[www.the-realworld.de].avi' (title: I Can't Afford Hyenas) to Library
2011-08-08 22:16:59,320 INFO  [LibraryAdditionsCheckerThread] Added file 'Two_And_A_Half_Men_-_1x15_-_Round_One_To_The_Hot_Crazy_Chick.lol.[www.the-realworld.de].avi' (title: Round One to the Hot Crazy Chick) to Library
2011-08-08 22:17:10,780 INFO  [LibraryAdditionsCheckerThread] Added file 'Two_And_A_Half_Men_-_1x16_-_That_Was_Saliva_Alan.lol.avi' (title: That Was Saliva, Alan) to Library
2011-08-08 22:17:26,861 INFO  [LibraryAdditionsCheckerThread] Added file 'Two_And_A_Half_Men_-_1x17_-_Ate_The_Hamburgers.FoV.[www.the-realworld.de].xvid.avi' (title: Ate The Hamburgers, Wearing The Hats) to Library
2011-08-08 22:17:38,113 INFO  [LibraryAdditionsCheckerThread] Added file 'Two_And_A_Half_Men_-_1x18_-_An_Old_Flame_With_A_New_Wick.lol.[www.the-realworld.de].xvid.avi' (title: An Old Flame With a New Wick) to Library
2011-08-08 22:17:46,565 INFO  [LibraryAdditionsCheckerThread] Added file 'Two_And_A_Half_Men_-_1x20_-_Hey_I_Can_Pee_Outside_In_The_Dark.lol.[www.the-realworld.de].avi' (title: Hey, I Can Pee Outside in the Dark) to Library
2011-08-08 22:17:55,266 INFO  [LibraryAdditionsCheckerThread] Added file 'Two_And_A_Half_Men_-_1x21_-_No_Sniffing_No_Wowing.lol.[www.the-realworld.de].avi' (title: No Sniffing, No Wowing) to Library
2011-08-08 22:18:06,757 INFO  [LibraryAdditionsCheckerThread] Added file 'Two_And_A_Half_Men_-_1x22_-_My_Doctor_Has_A_Cow_Puppet.avi' (title: My Doctor has a Cow Puppet) to Library
2011-08-08 22:18:15,322 INFO  [LibraryAdditionsCheckerThread] Added file 'Two_And_A_Half_Men_-_1x23_-_Just_Like_Buffalo.lo.avi' (title: Just Like Buffalo) to Library
2011-08-08 22:18:29,031 INFO  [LibraryAdditionsCheckerThread] Added file 'Wanted.avi' (title: Wanted) to Library
2011-08-08 22:18:44,283 INFO  [LibraryAdditionsCheckerThread] Added file '(Movie) The Wedding Crashers (July 15,2005) (Full).mpg.ipod.mp4' (title: Wedding Crashers) to Library
2011-08-08 23:01:57,484 INFO  [LibraryAdditionsCheckerThread] Finished looking for newly added files
2011-08-08 23:01:57,685 INFO  [LibraryAdditionsCheckerThread] Started looking for newly added files
2011-08-08 23:01:57,692 INFO  [LibraryUpdatesCheckerThread] Started looking for updates to currently shared files


i played 3 movies and i cant see nothing in the log
<<

Cerberus

User avatar

DLNA master

Posts: 4114

Joined: Sun Jan 02, 2011 5:20 pm

Location: Reading, UK

Post Tue Aug 09, 2011 4:43 am

Re: subtitles on Sony kdl-40ex521

i need a detailed log file please ( see my signiture for a howto )
Phil Bennett
Beta Tester Group
Wiki | FAQ

Samsung LE40C750 LCD | Samsung BD-C5900 | Sony PS3 | Windows 7 |
HowTo: Provide supported formats of a device HowTo: Record a new ticket on Bitbucket
HowTo: Provide details of a video file that doesn't play HowTo: Turn on detailed logging
<<

gusascencio

Serviio newbie

Posts: 5

Joined: Mon Aug 08, 2011 5:31 am

Post Tue Aug 09, 2011 8:36 am

Re: subtitles on Sony kdl-40ex521

  Code:
192.168.0.105 (headers = [Host: 192.168.0.101:8895,Date: Tue, 09 Aug 2011 08:11:33 GMT,User-Agent: UPnP/1.0,X-AV-Physical-Unit-Info: pa="BRAVIA KDL-40EX521";,X-AV-Client-Info: av=5.0; cn="Sony Corporation"; mn="BRAVIA KDL-40EX521"; mv="1.7";])
2011-08-09 03:11:34,125 DEBUG [RendererDAOImpl] Reading a Renderer with ip address 192.168.0.105
2011-08-09 03:11:34,126 DEBUG [RendererDAOImpl] Reading a Renderer with ip address 192.168.0.105
2011-08-09 03:11:34,128 DEBUG [DeviceDescriptionRequestHandler] Sending DeviceDescription XML back using profile 'Generic DLNA profile'
2011-08-09 03:11:34,155 DEBUG [WebServer] Incoming connection from /192.168.0.105:37645
2011-08-09 03:11:34,155 DEBUG [ServiceDescriptionRequestHandler] ServiceDescription request received for service ConnectionManager
2011-08-09 03:11:34,156 DEBUG [ServiceDescriptionRequestHandler] Sending ServiceDescription XML back
2011-08-09 03:11:34,186 DEBUG [WebServer] Incoming connection from /192.168.0.105:37646
2011-08-09 03:11:34,186 DEBUG [ServiceDescriptionRequestHandler] ServiceDescription request received for service ContentDirectory
2011-08-09 03:11:34,187 DEBUG [ServiceDescriptionRequestHandler] Sending ServiceDescription XML back
2011-08-09 03:11:34,233 DEBUG [WebServer] Incoming connection from /192.168.0.105:37647
2011-08-09 03:11:34,233 DEBUG [ServiceControlRequestHandler] ServiceControl request received for action '"urn:schemas-upnp-org:service:ContentDirectory:1#GetSortCapabilities"' from 192.168.0.105:
2011-08-09 03:11:34,234 DEBUG [RendererDAOImpl] Reading a Renderer with ip address 192.168.0.105
2011-08-09 03:11:34,238 DEBUG [ServiceControlRequestHandler] Returning OK SOAP message
2011-08-09 03:11:34,252 DEBUG [WebServer] Incoming connection from /192.168.0.105:37648
2011-08-09 03:11:34,253 DEBUG [ServiceControlRequestHandler] ServiceControl request received for action '"urn:schemas-upnp-org:service:ConnectionManager:1#GetProtocolInfo"' from 192.168.0.105:
2011-08-09 03:11:34,253 DEBUG [RendererDAOImpl] Reading a Renderer with ip address 192.168.0.105
2011-08-09 03:11:34,257 DEBUG [ConnectionManager] Sending protocol info using profile 'Generic DLNA profile'
2011-08-09 03:11:34,265 DEBUG [ServiceControlRequestHandler] Returning OK SOAP message
2011-08-09 03:11:35,061 DEBUG [DiscoveryAdvertisementNotifier] Will advertise again in 00:01:04
2011-08-09 03:11:36,174 DEBUG [RepositoryDAOImpl] Reading all Repositories
2011-08-09 03:12:31,022 DEBUG [WebServer] Incoming connection from /192.168.0.105:37650
2011-08-09 03:12:31,078 DEBUG [ServiceControlRequestHandler] ServiceControl request received for action '"urn:schemas-upnp-org:service:ContentDirectory:1#Browse"' from 192.168.0.105:
2011-08-09 03:12:31,078 DEBUG [RendererDAOImpl] Reading a Renderer with ip address 192.168.0.105
2011-08-09 03:12:31,089 DEBUG [ContentDirectory] Browse() called for renderer KDL-40EX521 (profile 1) with parameters: objectID = 0, browseFlag = BrowseDirectChildren, filter = dc:title,av:mediaClass,dc:date,@childCount,res,upnp:class,res@resolution,upnp:album,upnp:genre,upnp:albumArtURI,upnp:albumArtURI@dlna:profileID,dc:creator,res@size,res@duration,res@bitrate,res@protocolInfo, startIndex = 0, count = 10, sortCriteria =
2011-08-09 03:12:31,132 DEBUG [LocalContentCacheDecorator] Stored entry in the cache (local_default), returning it
2011-08-09 03:12:31,327 DEBUG [ServiceControlRequestHandler] Returning OK SOAP message
2011-08-09 03:12:32,729 DEBUG [WebServer] Incoming connection from /192.168.0.105:37651
2011-08-09 03:12:32,730 DEBUG [ServiceControlRequestHandler] ServiceControl request received for action '"urn:schemas-upnp-org:service:ContentDirectory:1#Browse"' from 192.168.0.105:
2011-08-09 03:12:32,730 DEBUG [RendererDAOImpl] Reading a Renderer with ip address 192.168.0.105
2011-08-09 03:12:32,736 DEBUG [ContentDirectory] Browse() called for renderer KDL-40EX521 (profile 1) with parameters: objectID = V, browseFlag = BrowseDirectChildren, filter = dc:title,av:mediaClass,dc:date,@childCount,res,upnp:class,res@resolution,upnp:album,upnp:genre,upnp:albumArtURI,upnp:albumArtURI@dlna:profileID,dc:creator,res@size,res@duration,res@bitrate,res@protocolInfo, startIndex = 0, count = 10, sortCriteria =
2011-08-09 03:12:32,764 DEBUG [VideoDAOImpl] Retrieving number of video initials
2011-08-09 03:12:32,795 DEBUG [VideoDAOImpl] Retrieving number of videos of type 2
2011-08-09 03:12:32,812 DEBUG [SeriesDAOImpl] Retrieving number of series
2011-08-09 03:12:32,834 DEBUG [RepositoryDAOImpl] Retrieving number of repositories for VIDEO
2011-08-09 03:12:32,844 DEBUG [VideoDAOImpl] Retrieving number of 10 last viewed videos
2011-08-09 03:12:32,860 DEBUG [VideoDAOImpl] Retrieving number of 10 last added videos
2011-08-09 03:12:32,860 DEBUG [VideoDAOImpl] Retrieving number of videos of type 0
2011-08-09 03:12:32,886 DEBUG [GenreDAOImpl] Retrieving number of genres for VIDEO
2011-08-09 03:12:32,917 DEBUG [PersonDAOImpl] Retrieving number of person initials for role ACTOR
2011-08-09 03:12:33,212 DEBUG [PersonDAOImpl] Retrieving number of person initials for role DIRECTOR
2011-08-09 03:12:33,219 DEBUG [PersonDAOImpl] Retrieving number of person initials for role PRODUCER
2011-08-09 03:12:33,225 DEBUG [LocalContentCacheDecorator] Stored entry in the cache (local_default), returning it
2011-08-09 03:12:33,237 DEBUG [ServiceControlRequestHandler] Returning OK SOAP message
2011-08-09 03:12:34,519 DEBUG [WebServer] Incoming connection from /192.168.0.105:37652
2011-08-09 03:12:34,524 DEBUG [ServiceControlRequestHandler] ServiceControl request received for action '"urn:schemas-upnp-org:service:ContentDirectory:1#Browse"' from 192.168.0.105:
2011-08-09 03:12:34,524 DEBUG [RendererDAOImpl] Reading a Renderer with ip address 192.168.0.105
2011-08-09 03:12:34,530 DEBUG [ContentDirectory] Browse() called for renderer KDL-40EX521 (profile 1) with parameters: objectID = V_M, browseFlag = BrowseDirectChildren, filter = dc:title,av:mediaClass,dc:date,@childCount,res,upnp:class,res@resolution,upnp:album,upnp:genre,upnp:albumArtURI,upnp:albumArtURI@dlna:profileID,dc:creator,res@size,res@duration,res@bitrate,res@protocolInfo, startIndex = 0, count = 10, sortCriteria =
2011-08-09 03:12:34,531 DEBUG [VideoDAOImpl] Retrieving list of videos of type 2 (from=0, count=10)
2011-08-09 03:12:34,570 DEBUG [GenreDAOImpl] Reading a Genre (id = 9)
2011-08-09 03:12:34,578 DEBUG [MediaItemDAOImpl] Reading a MediaItem (id = 102)
2011-08-09 03:12:34,588 DEBUG [MediaItemDAOImpl] Getting file of media item 102
2011-08-09 03:12:34,592 DEBUG [VideoDAOImpl] Reading a Video (id = 102)
2011-08-09 03:12:34,606 DEBUG [VideoDeliveryEngine] Retrieving resource information for item 102 and profile Generic DLNA profile
2011-08-09 03:12:34,609 DEBUG [CoverImageDAOImpl] Reading a CoverImage (id = 102)
2011-08-09 03:12:34,688 DEBUG [GenreDAOImpl] Reading a Genre (id = 9)
2011-08-09 03:12:34,689 DEBUG [MediaItemDAOImpl] Reading a MediaItem (id = 103)
2011-08-09 03:12:34,690 DEBUG [MediaItemDAOImpl] Getting file of media item 103
2011-08-09 03:12:34,691 DEBUG [SubtitlesService] Found subtitle file: /Volumes/Expansion Drive/MOVIES/300 Spartans/MOVIES - 300 Spartans.srt
2011-08-09 03:12:34,691 DEBUG [VideoDAOImpl] Reading a Video (id = 103)
2011-08-09 03:12:34,692 DEBUG [VideoDeliveryEngine] Retrieving resource information for item 103 and profile Generic DLNA profile
2011-08-09 03:12:34,693 DEBUG [CoverImageDAOImpl] Reading a CoverImage (id = 103)
2011-08-09 03:12:34,694 DEBUG [GenreDAOImpl] Reading a Genre (id = 11)
2011-08-09 03:12:34,695 DEBUG [MediaItemDAOImpl] Reading a MediaItem (id = 130)
2011-08-09 03:12:34,695 DEBUG [MediaItemDAOImpl] Getting file of media item 130
2011-08-09 03:12:34,697 DEBUG [VideoDAOImpl] Reading a Video (id = 130)
2011-08-09 03:12:34,698 DEBUG [VideoDeliveryEngine] Retrieving resource information for item 130 and profile Generic DLNA profile
2011-08-09 03:12:34,698 DEBUG [CoverImageDAOImpl] Reading a CoverImage (id = 130)
2011-08-09 03:12:34,700 DEBUG [GenreDAOImpl] Reading a Genre (id = 9)
2011-08-09 03:12:34,700 DEBUG [MediaItemDAOImpl] Reading a MediaItem (id = 105)
2011-08-09 03:12:34,701 DEBUG [MediaItemDAOImpl] Getting file of media item 105
2011-08-09 03:12:34,702 DEBUG [SubtitlesService] Found subtitle file: /Volumes/Expansion Drive/MOVIES/Blood Diamond/MOVIES - Blood Diamond 2007.srt
2011-08-09 03:12:34,702 DEBUG [VideoDAOImpl] Reading a Video (id = 105)
2011-08-09 03:12:34,703 DEBUG [VideoDeliveryEngine] Retrieving resource information for item 105 and profile Generic DLNA profile
2011-08-09 03:12:34,703 DEBUG [CoverImageDAOImpl] Reading a CoverImage (id = 105)
2011-08-09 03:12:34,704 DEBUG [GenreDAOImpl] Reading a Genre (id = 9)
2011-08-09 03:12:34,705 DEBUG [MediaItemDAOImpl] Reading a MediaItem (id = 131)
2011-08-09 03:12:34,705 DEBUG [MediaItemDAOImpl] Getting file of media item 131
2011-08-09 03:12:34,707 DEBUG [SubtitlesService] Found subtitle file: /Volumes/Expansion Drive/MOVIES/The Bourne Ultimatum/MOVIES - The Bourne Ultimatum 2007.srt
2011-08-09 03:12:34,707 DEBUG [VideoDAOImpl] Reading a Video (id = 131)
2011-08-09 03:12:34,708 DEBUG [VideoDeliveryEngine] Retrieving resource information for item 131 and profile Generic DLNA profile
2011-08-09 03:12:34,708 DEBUG [CoverImageDAOImpl] Reading a CoverImage (id = 131)
2011-08-09 03:12:34,710 DEBUG [GenreDAOImpl] Reading a Genre (id = 11)
2011-08-09 03:12:34,710 DEBUG [MediaItemDAOImpl] Reading a MediaItem (id = 107)
2011-08-09 03:12:34,710 DEBUG [MediaItemDAOImpl] Getting file of media item 107
2011-08-09 03:12:34,711 DEBUG [VideoDAOImpl] Reading a Video (id = 107)
2011-08-09 03:12:34,712 DEBUG [VideoDeliveryEngine] Retrieving resource information for item 107 and profile Generic DLNA profile
2011-08-09 03:12:34,712 DEBUG [CoverImageDAOImpl] Reading a CoverImage (id = 107)
2011-08-09 03:12:34,713 DEBUG [GenreDAOImpl] Reading a Genre (id = 15)
2011-08-09 03:12:34,714 DEBUG [MediaItemDAOImpl] Reading a MediaItem (id = 132)
2011-08-09 03:12:34,714 DEBUG [MediaItemDAOImpl] Getting file of media item 132
2011-08-09 03:12:34,715 DEBUG [VideoDAOImpl] Reading a Video (id = 132)
2011-08-09 03:12:34,716 DEBUG [VideoDeliveryEngine] Retrieving resource information for item 132 and profile Generic DLNA profile
2011-08-09 03:12:34,716 DEBUG [CoverImageDAOImpl] Reading a CoverImage (id = 132)
2011-08-09 03:12:34,717 DEBUG [GenreDAOImpl] Reading a Genre (id = 9)
2011-08-09 03:12:34,717 DEBUG [MediaItemDAOImpl] Reading a MediaItem (id = 133)
2011-08-09 03:12:34,718 DEBUG [MediaItemDAOImpl] Getting file of media item 133
2011-08-09 03:12:34,719 DEBUG [SubtitlesService] Found subtitle file: /Volumes/Expansion Drive/MOVIES/The Godfather/The Godfather.srt
2011-08-09 03:12:34,719 DEBUG [VideoDAOImpl] Reading a Video (id = 133)
2011-08-09 03:12:34,720 DEBUG [VideoDeliveryEngine] Retrieving resource information for item 133 and profile Generic DLNA profile
2011-08-09 03:12:34,720 DEBUG [CoverImageDAOImpl] Reading a CoverImage (id = 133)
2011-08-09 03:12:34,721 DEBUG [GenreDAOImpl] Reading a Genre (id = 9)
2011-08-09 03:12:34,721 DEBUG [MediaItemDAOImpl] Reading a MediaItem (id = 124)
2011-08-09 03:12:34,722 DEBUG [MediaItemDAOImpl] Getting file of media item 124
2011-08-09 03:12:34,723 DEBUG [VideoDAOImpl] Reading a Video (id = 124)
2011-08-09 03:12:34,723 DEBUG [VideoDeliveryEngine] Retrieving resource information for item 124 and profile Generic DLNA profile
2011-08-09 03:12:34,724 DEBUG [CoverImageDAOImpl] Reading a CoverImage (id = 124)
2011-08-09 03:12:34,731 DEBUG [GenreDAOImpl] Reading a Genre (id = 12)
2011-08-09 03:12:34,732 DEBUG [MediaItemDAOImpl] Reading a MediaItem (id = 119)
2011-08-09 03:12:34,733 DEBUG [MediaItemDAOImpl] Getting file of media item 119
2011-08-09 03:12:34,734 DEBUG [VideoDAOImpl] Reading a Video (id = 119)
2011-08-09 03:12:34,735 DEBUG [VideoDeliveryEngine] Retrieving resource information for item 119 and profile Generic DLNA profile
2011-08-09 03:12:34,735 DEBUG [CoverImageDAOImpl] Reading a CoverImage (id = 119)
2011-08-09 03:12:34,737 DEBUG [VideoDAOImpl] Retrieving number of videos of type 2
2011-08-09 03:12:34,741 DEBUG [LocalContentCacheDecorator] Stored entry in the cache (local_default), returning it
2011-08-09 03:12:34,781 DEBUG [ServiceControlRequestHandler] Returning OK SOAP message
2011-08-09 03:12:34,843 DEBUG [WebServer] Incoming connection from /192.168.0.105:37653
2011-08-09 03:12:34,844 DEBUG [ServiceControlRequestHandler] ServiceControl request received for action '"urn:schemas-upnp-org:service:ContentDirectory:1#Browse"' from 192.168.0.105:
2011-08-09 03:12:34,844 DEBUG [RendererDAOImpl] Reading a Renderer with ip address 192.168.0.105
2011-08-09 03:12:34,849 DEBUG [ContentDirectory] Browse() called for renderer KDL-40EX521 (profile 1) with parameters: objectID = V_M, browseFlag = BrowseDirectChildren, filter = dc:title,av:mediaClass,dc:date,@childCount,res,upnp:class,res@resolution,upnp:album,upnp:genre,upnp:albumArtURI,upnp:albumArtURI@dlna:profileID,dc:creator,res@size,res@duration,res@bitrate,res@protocolInfo, startIndex = 10, count = 10, sortCriteria =
2011-08-09 03:12:34,850 DEBUG [VideoDAOImpl] Retrieving list of videos of type 2 (from=10, count=10)
2011-08-09 03:12:34,877 DEBUG [GenreDAOImpl] Reading a Genre (id = 11)
2011-08-09 03:12:34,878 DEBUG [MediaItemDAOImpl] Reading a MediaItem (id = 134)
2011-08-09 03:12:34,879 DEBUG [MediaItemDAOImpl] Getting file of media item 134
2011-08-09 03:12:34,880 DEBUG [VideoDAOImpl] Reading a Video (id = 134)
2011-08-09 03:12:34,880 DEBUG [VideoDeliveryEngine] Retrieving resource information for item 134 and profile Generic DLNA profile
2011-08-09 03:12:34,881 DEBUG [CoverImageDAOImpl] Reading a CoverImage (id = 134)
2011-08-09 03:12:34,881 DEBUG [GenreDAOImpl] Reading a Genre (id = 11)
2011-08-09 03:12:34,882 DEBUG [MediaItemDAOImpl] Reading a MediaItem (id = 135)
2011-08-09 03:12:34,882 DEBUG [MediaItemDAOImpl] Getting file of media item 135
2011-08-09 03:12:34,883 DEBUG [VideoDAOImpl] Reading a Video (id = 135)
2011-08-09 03:12:34,884 DEBUG [VideoDeliveryEngine] Retrieving resource information for item 135 and profile Generic DLNA profile
2011-08-09 03:12:34,884 DEBUG [CoverImageDAOImpl] Reading a CoverImage (id = 135)
2011-08-09 03:12:34,886 DEBUG [GenreDAOImpl] Reading a Genre (id = 11)
2011-08-09 03:12:34,886 DEBUG [MediaItemDAOImpl] Reading a MediaItem (id = 136)
2011-08-09 03:12:34,887 DEBUG [MediaItemDAOImpl] Getting file of media item 136
2011-08-09 03:12:34,888 DEBUG [VideoDAOImpl] Reading a Video (id = 136)
2011-08-09 03:12:34,888 DEBUG [VideoDeliveryEngine] Retrieving resource information for item 136 and profile Generic DLNA profile
2011-08-09 03:12:34,888 DEBUG [CoverImageDAOImpl] Reading a CoverImage (id = 136)
2011-08-09 03:12:34,889 DEBUG [GenreDAOImpl] Reading a Genre (id = 9)
2011-08-09 03:12:34,890 DEBUG [MediaItemDAOImpl] Reading a MediaItem (id = 120)
2011-08-09 03:12:34,890 DEBUG [MediaItemDAOImpl] Getting file of media item 120
2011-08-09 03:12:34,892 DEBUG [SubtitlesService] Found subtitle file: /Volumes/Expansion Drive/MOVIES/Harry Potter And The Deathly Hallows Part 1 - L3GiT/Harry Potter And The Deathly Hallows Part 1.srt
2011-08-09 03:12:34,892 DEBUG [VideoDAOImpl] Reading a Video (id = 120)
2011-08-09 03:12:34,893 DEBUG [VideoDeliveryEngine] Retrieving resource information for item 120 and profile Generic DLNA profile
2011-08-09 03:12:34,893 DEBUG [CoverImageDAOImpl] Reading a CoverImage (id = 120)
2011-08-09 03:12:34,897 DEBUG [GenreDAOImpl] Reading a Genre (id = 9)
2011-08-09 03:12:34,897 DEBUG [MediaItemDAOImpl] Reading a MediaItem (id = 122)
2011-08-09 03:12:34,898 DEBUG [MediaItemDAOImpl] Getting file of media item 122
2011-08-09 03:12:34,899 DEBUG [VideoDAOImpl] Reading a Video (id = 122)
2011-08-09 03:12:34,899 DEBUG [VideoDeliveryEngine] Retrieving resource information for item 122 and profile Generic DLNA profile
2011-08-09 03:12:34,900 DEBUG [CoverImageDAOImpl] Reading a CoverImage (id = 122)
2011-08-09 03:12:34,901 DEBUG [GenreDAOImpl] Reading a Genre (id = 9)
2011-08-09 03:12:34,902 DEBUG [MediaItemDAOImpl] Reading a MediaItem (id = 101)
2011-08-09 03:12:34,903 DEBUG [MediaItemDAOImpl] Getting file of media item 101
2011-08-09 03:12:34,916 DEBUG [VideoDAOImpl] Reading a Video (id = 101)
2011-08-09 03:12:34,918 DEBUG [VideoDeliveryEngine] Retrieving resource information for item 101 and profile Generic DLNA profile
2011-08-09 03:12:34,919 DEBUG [CoverImageDAOImpl] Reading a CoverImage (id = 101)
2011-08-09 03:12:34,921 DEBUG [GenreDAOImpl] Reading a Genre (id = 13)
2011-08-09 03:12:34,921 DEBUG [MediaItemDAOImpl] Reading a MediaItem (id = 123)
2011-08-09 03:12:34,922 DEBUG [MediaItemDAOImpl] Getting file of media item 123
2011-08-09 03:12:34,924 DEBUG [VideoDAOImpl] Reading a Video (id = 123)
2011-08-09 03:12:34,925 DEBUG [VideoDeliveryEngine] Retrieving resource information for item 123 and profile Generic DLNA profile
2011-08-09 03:12:34,925 DEBUG [CoverImageDAOImpl] Reading a CoverImage (id = 123)
2011-08-09 03:12:34,927 DEBUG [GenreDAOImpl] Reading a Genre (id = 9)
2011-08-09 03:12:34,927 DEBUG [MediaItemDAOImpl] Reading a MediaItem (id = 137)
2011-08-09 03:12:34,928 DEBUG [MediaItemDAOImpl] Getting file of media item 137
2011-08-09 03:12:34,929 DEBUG [SubtitlesService] Found subtitle file: /Volumes/Expansion Drive/MOVIES/The Men Who Stare at Goats/The Men Who Stare at Goats.srt
2011-08-09 03:12:34,929 DEBUG [VideoDAOImpl] Reading a Video (id = 137)
2011-08-09 03:12:34,930 DEBUG [VideoDeliveryEngine] Retrieving resource information for item 137 and profile Generic DLNA profile
2011-08-09 03:12:34,930 DEBUG [CoverImageDAOImpl] Reading a CoverImage (id = 137)
2011-08-09 03:12:34,931 DEBUG [GenreDAOImpl] Reading a Genre (id = 14)
2011-08-09 03:12:34,932 DEBUG [MediaItemDAOImpl] Reading a MediaItem (id = 126)
2011-08-09 03:12:34,932 DEBUG [MediaItemDAOImpl] Getting file of media item 126
2011-08-09 03:12:34,933 DEBUG [VideoDAOImpl] Reading a Video (id = 126)
2011-08-09 03:12:34,934 DEBUG [VideoDeliveryEngine] Retrieving resource information for item 126 and profile Generic DLNA profile
2011-08-09 03:12:34,934 DEBUG [CoverImageDAOImpl] Reading a CoverImage (id = 126)
2011-08-09 03:12:34,935 DEBUG [GenreDAOImpl] Reading a Genre (id = 15)
2011-08-09 03:12:34,936 DEBUG [MediaItemDAOImpl] Reading a MediaItem (id = 127)
2011-08-09 03:12:34,936 DEBUG [MediaItemDAOImpl] Getting file of media item 127
2011-08-09 03:12:34,937 DEBUG [VideoDAOImpl] Reading a Video (id = 127)
2011-08-09 03:12:34,938 DEBUG [VideoDeliveryEngine] Retrieving resource information for item 127 and profile Generic DLNA profile
2011-08-09 03:12:34,938 DEBUG [CoverImageDAOImpl] Reading a CoverImage (id = 127)
2011-08-09 03:12:34,939 DEBUG [VideoDAOImpl] Retrieving number of videos of type 2
2011-08-09 03:12:34,941 DEBUG [LocalContentCacheDecorator] Stored entry in the cache (local_default), returning it
2011-08-09 03:12:34,958 DEBUG [ServiceControlRequestHandler] Returning OK SOAP message
2011-08-09 03:12:35,026 DEBUG [WebServer] Incoming connection from /192.168.0.105:37654
2011-08-09 03:12:35,032 DEBUG [ResourceTransportRequestHandler] GET /resource/103/COVER_IMAGE HTTP/1.1, headers = [transferMode.dlna.org: Interactive,X-AV-Physical-Unit-Info: pa="BRAVIA KDL-40EX521";,X-AV-Client-Info: av=5.0; cn="Sony Corporation"; mn="BRAVIA KDL-40EX521"; mv="1.7";,Host: 192.168.0.101:8895]]
2011-08-09 03:12:35,032 DEBUG [RendererDAOImpl] Reading a Renderer with ip address 192.168.0.105
2011-08-09 03:12:35,034 DEBUG [ResourceTransportRequestHandler] Resource request accepted. Using client 'IPAddress=/192.168.0.105, Profile=Generic DLNA profile'
2011-08-09 03:12:35,036 DEBUG [ResourceTransportRequestHandler] Request for resource 103 and type 'COVER_IMAGE' received
2011-08-09 03:12:35,037 DEBUG [CoverImageDAOImpl] Reading a CoverImage (id = 103)
2011-08-09 03:12:35,037 DEBUG [CoverImageRetrievalStrategy] Retrieving Cover image with id 103
2011-08-09 03:12:35,040 DEBUG [ResourceTransportRequestHandler] Entity will be consumed till the end
2011-08-09 03:12:35,040 DEBUG [ResourceTransportRequestHandler] Creating stream entity with length: -1
2011-08-09 03:12:35,040 DEBUG [ResourceTransportRequestHandler] Sending file back
2011-08-09 03:12:35,040 DEBUG [ResourceTransportRequestHandler] HTTP/1.1 200 OK, headers = [[Content-Type: image/jpeg,Date: Tue, 09 Aug 2011 08:12:35 GMT,Server: Mac OS X, UPnP/1.0 DLNADOC/1.50, Serviio/0.5.2,Cache-control: no-cache,transferMode.dlna.org: Interactive]]
2011-08-09 03:12:35,073 DEBUG [WebServer] Incoming connection from /192.168.0.105:37655
2011-08-09 03:12:35,073 DEBUG [ServiceControlRequestHandler] ServiceControl request received for action '"urn:schemas-upnp-org:service:ContentDirectory:1#Browse"' from 192.168.0.105:
2011-08-09 03:12:35,074 DEBUG [RendererDAOImpl] Reading a Renderer with ip address 192.168.0.105
2011-08-09 03:12:35,079 DEBUG [ContentDirectory] Browse() called for renderer KDL-40EX521 (profile 1) with parameters: objectID = V_M, browseFlag = BrowseDirectChildren, filter = dc:title,av:mediaClass,dc:date,@childCount,res,upnp:class,res@resolution,upnp:album,upnp:genre,upnp:albumArtURI,upnp:albumArtURI@dlna:profileID,dc:creator,res@size,res@duration,res@bitrate,res@protocolInfo, startIndex = 20, count = 10, sortCriteria =
2011-08-09 03:12:35,079 DEBUG [VideoDAOImpl] Retrieving list of videos of type 2 (from=20, count=10)
2011-08-09 03:12:35,109 DEBUG [GenreDAOImpl] Reading a Genre (id = 11)
2011-08-09 03:12:35,110 DEBUG [MediaItemDAOImpl] Reading a MediaItem (id = 138)
2011-08-09 03:12:35,111 DEBUG [MediaItemDAOImpl] Getting file of media item 138
2011-08-09 03:12:35,112 DEBUG [VideoDAOImpl] Reading a Video (id = 138)
2011-08-09 03:12:35,123 DEBUG [VideoDeliveryEngine] Retrieving resource information for item 138 and profile Generic DLNA profile
2011-08-09 03:12:35,124 DEBUG [CoverImageDAOImpl] Reading a CoverImage (id = 138)
2011-08-09 03:12:35,125 DEBUG [GenreDAOImpl] Reading a Genre (id = 15)
2011-08-09 03:12:35,125 DEBUG [MediaItemDAOImpl] Reading a MediaItem (id = 139)
2011-08-09 03:12:35,126 DEBUG [MediaItemDAOImpl] Getting file of media item 139
2011-08-09 03:12:35,127 DEBUG [SubtitlesService] Found subtitle file: /Volumes/Expansion Drive/MOVIES/The Social Network/The Social Network.srt
2011-08-09 03:12:35,127 DEBUG [VideoDAOImpl] Reading a Video (id = 139)
2011-08-09 03:12:35,127 DEBUG [VideoDeliveryEngine] Retrieving resource information for item 139 and profile Generic DLNA profile
2011-08-09 03:12:35,127 DEBUG [CoverImageDAOImpl] Reading a CoverImage (id = 139)
2011-08-09 03:12:35,128 DEBUG [WebServer] Incoming connection from /192.168.0.105:37656
2011-08-09 03:12:35,128 DEBUG [ResourceTransportRequestHandler] GET /resource/130/COVER_IMAGE HTTP/1.1, headers = [transferMode.dlna.org: Interactive,X-AV-Physical-Unit-Info: pa="BRAVIA KDL-40EX521";,X-AV-Client-Info: av=5.0; cn="Sony Corporation"; mn="BRAVIA KDL-40EX521"; mv="1.7";,Host: 192.168.0.101:8895]]
2011-08-09 03:12:35,129 DEBUG [RendererDAOImpl] Reading a Renderer with ip address 192.168.0.105
2011-08-09 03:12:35,129 DEBUG [GenreDAOImpl] Reading a Genre (id = 11)
2011-08-09 03:12:35,129 DEBUG [ResourceTransportRequestHandler] Resource request accepted. Using client 'IPAddress=/192.168.0.105, Profile=Generic DLNA profile'
2011-08-09 03:12:35,129 DEBUG [ResourceTransportRequestHandler] Request for resource 130 and type 'COVER_IMAGE' received
2011-08-09 03:12:35,130 DEBUG [CoverImageDAOImpl] Reading a CoverImage (id = 130)
2011-08-09 03:12:35,130 DEBUG [MediaItemDAOImpl] Reading a MediaItem (id = 114)
2011-08-09 03:12:35,135 DEBUG [MediaItemDAOImpl] Getting file of media item 114
2011-08-09 03:12:35,135 DEBUG [CoverImageRetrievalStrategy] Retrieving Cover image with id 130
2011-08-09 03:12:35,136 DEBUG [ResourceTransportRequestHandler] Entity will be consumed till the end
2011-08-09 03:12:35,136 DEBUG [ResourceTransportRequestHandler] Creating stream entity with length: -1
2011-08-09 03:12:35,136 DEBUG [ResourceTransportRequestHandler] Sending file back
2011-08-09 03:12:35,137 DEBUG [ResourceTransportRequestHandler] HTTP/1.1 200 OK, headers = [[Content-Type: image/jpeg,Date: Tue, 09 Aug 2011 08:12:35 GMT,Server: Mac OS X, UPnP/1.0 DLNADOC/1.50, Serviio/0.5.2,Cache-control: no-cache,transferMode.dlna.org: Interactive]]
2011-08-09 03:12:35,139 DEBUG [VideoDAOImpl] Reading a Video (id = 114)
2011-08-09 03:12:35,140 DEBUG [VideoDeliveryEngine] Retrieving resource information for item 114 and profile Generic DLNA profile
2011-08-09 03:12:35,140 DEBUG [CoverImageDAOImpl] Reading a CoverImage (id = 114)
2011-08-09 03:12:35,152 DEBUG [GenreDAOImpl] Reading a Genre (id = 11)
2011-08-09 03:12:35,153 DEBUG [MediaItemDAOImpl] Reading a MediaItem (id = 115)
2011-08-09 03:12:35,153 DEBUG [MediaItemDAOImpl] Getting file of media item 115
2011-08-09 03:12:35,155 DEBUG [VideoDAOImpl] Reading a Video (id = 115)
2011-08-09 03:12:35,156 DEBUG [VideoDeliveryEngine] Retrieving resource information for item 115 and profile Generic DLNA profile
2011-08-09 03:12:35,156 DEBUG [CoverImageDAOImpl] Reading a CoverImage (id = 115)
2011-08-09 03:12:35,158 DEBUG [GenreDAOImpl] Reading a Genre (id = 11)
2011-08-09 03:12:35,158 DEBUG [MediaItemDAOImpl] Reading a MediaItem (id = 116)
2011-08-09 03:12:35,159 DEBUG [MediaItemDAOImpl] Getting file of media item 116
2011-08-09 03:12:35,160 DEBUG [VideoDAOImpl] Reading a Video (id = 116)
2011-08-09 03:12:35,161 DEBUG [VideoDeliveryEngine] Retrieving resource information for item 116 and profile Generic DLNA profile
2011-08-09 03:12:35,162 DEBUG [CoverImageDAOImpl] Reading a CoverImage (id = 116)
2011-08-09 03:12:35,163 DEBUG [GenreDAOImpl] Reading a Genre (id = 11)
2011-08-09 03:12:35,163 DEBUG [MediaItemDAOImpl] Reading a MediaItem (id = 117)
2011-08-09 03:12:35,164 DEBUG [MediaItemDAOImpl] Getting file of media item 117
2011-08-09 03:12:35,165 DEBUG [VideoDAOImpl] Reading a Video (id = 117)
2011-08-09 03:12:35,166 DEBUG [VideoDeliveryEngine] Retrieving resource information for item 117 and profile Generic DLNA profile
2011-08-09 03:12:35,166 DEBUG [CoverImageDAOImpl] Reading a CoverImage (id = 117)
2011-08-09 03:12:35,167 DEBUG [GenreDAOImpl] Reading a Genre (id = 11)
2011-08-09 03:12:35,168 DEBUG [MediaItemDAOImpl] Reading a MediaItem (id = 118)
2011-08-09 03:12:35,168 DEBUG [MediaItemDAOImpl] Getting file of media item 118
2011-08-09 03:12:35,169 DEBUG [VideoDAOImpl] Reading a Video (id = 118)
2011-08-09 03:12:35,170 DEBUG [VideoDeliveryEngine] Retrieving resource information for item 118 and profile Generic DLNA profile
2011-08-09 03:12:35,170 DEBUG [CoverImageDAOImpl] Reading a CoverImage (id = 118)
2011-08-09 03:12:35,171 DEBUG [GenreDAOImpl] Reading a Genre (id = 9)
2011-08-09 03:12:35,171 DEBUG [MediaItemDAOImpl] Reading a MediaItem (id = 164)
2011-08-09 03:12:35,171 DEBUG [MediaItemDAOImpl] Getting file of media item 164
2011-08-09 03:12:35,172 DEBUG [SubtitlesService] Found subtitle file: /Volumes/Expansion Drive/MOVIES/Wanted/Wanted.srt
2011-08-09 03:12:35,172 DEBUG [VideoDAOImpl] Reading a Video (id = 164)
2011-08-09 03:12:35,173 DEBUG [VideoDeliveryEngine] Retrieving resource information for item 164 and profile Generic DLNA profile
2011-08-09 03:12:35,173 DEBUG [CoverImageDAOImpl] Reading a CoverImage (id = 164)
2011-08-09 03:12:35,174 DEBUG [GenreDAOImpl] Reading a Genre (id = 11)
2011-08-09 03:12:35,175 DEBUG [MediaItemDAOImpl] Reading a MediaItem (id = 165)
2011-08-09 03:12:35,175 DEBUG [MediaItemDAOImpl] Getting file of media item 165
2011-08-09 03:12:35,176 DEBUG [VideoDAOImpl] Reading a Video (id = 165)
2011-08-09 03:12:35,177 DEBUG [VideoDeliveryEngine] Retrieving resource information for item 165 and profile Generic DLNA profile
2011-08-09 03:12:35,177 DEBUG [CoverImageDAOImpl] Reading a CoverImage (id = 165)
2011-08-09 03:12:35,178 DEBUG [VideoDAOImpl] Retrieving number of videos of type 2
2011-08-09 03:12:35,179 DEBUG [LocalContentCacheDecorator] Stored entry in the cache (local_default), returning it
2011-08-09 03:12:35,197 DEBUG [ServiceControlRequestHandler] Returning OK SOAP message
2011-08-09 03:12:35,277 DEBUG [WebServer] Incoming connection from /192.168.0.105:37657
2011-08-09 03:12:35,277 DEBUG [ResourceTransportRequestHandler] GET /resource/107/COVER_IMAGE HTTP/1.1, headers = [transferMode.dlna.org: Interactive,X-AV-Physical-Unit-Info: pa="BRAVIA KDL-40EX521";,X-AV-Client-Info: av=5.0; cn="Sony Corporation"; mn="BRAVIA KDL-40EX521"; mv="1.7";,Host: 192.168.0.101:8895]]
2011-08-09 03:12:35,277 DEBUG [RendererDAOImpl] Reading a Renderer with ip address 192.168.0.105
2011-08-09 03:12:35,278 DEBUG [ResourceTransportRequestHandler] Resource request accepted. Using client 'IPAddress=/192.168.0.105, Profile=Generic DLNA profile'
2011-08-09 03:12:35,279 DEBUG [ResourceTransportRequestHandler] Request for resource 107 and type 'COVER_IMAGE' received
2011-08-09 03:12:35,279 DEBUG [CoverImageDAOImpl] Reading a CoverImage (id = 107)
2011-08-09 03:12:35,279 DEBUG [CoverImageRetrievalStrategy] Retrieving Cover image with id 107
2011-08-09 03:12:35,280 DEBUG [ResourceTransportRequestHandler] Entity will be consumed till the end
2011-08-09 03:12:35,280 DEBUG [ResourceTransportRequestHandler] Creating stream entity with length: -1
2011-08-09 03:12:35,280 DEBUG [ResourceTransportRequestHandler] Sending file back
2011-08-09 03:12:35,280 DEBUG [ResourceTransportRequestHandler] HTTP/1.1 200 OK, headers = [[Content-Type: image/jpeg,Date: Tue, 09 Aug 2011 08:12:35 GMT,Server: Mac OS X, UPnP/1.0 DLNADOC/1.50, Serviio/0.5.2,Cache-control: no-cache,transferMode.dlna.org: Interactive]]
2011-08-09 03:12:35,355 DEBUG [WebServer] Incoming connection from /192.168.0.105:37658
2011-08-09 03:12:35,363 DEBUG [ResourceTransportRequestHandler] GET /resource/135/COVER_IMAGE HTTP/1.1, headers = [transferMode.dlna.org: Interactive,X-AV-Physical-Unit-Info: pa="BRAVIA KDL-40EX521";,X-AV-Client-Info: av=5.0; cn="Sony Corporation"; mn="BRAVIA KDL-40EX521"; mv="1.7";,Host: 192.168.0.101:8895]]
2011-08-09 03:12:35,364 DEBUG [RendererDAOImpl] Reading a Renderer with ip address 192.168.0.105
2011-08-09 03:12:35,365 DEBUG [ResourceTransportRequestHandler] Resource request accepted. Using client 'IPAddress=/192.168.0.105, Profile=Generic DLNA profile'
2011-08-09 03:12:35,365 DEBUG [ResourceTransportRequestHandler] Request for resource 135 and type 'COVER_IMAGE' received
2011-08-09 03:12:35,365 DEBUG [CoverImageDAOImpl] Reading a CoverImage (id = 135)
2011-08-09 03:12:35,366 DEBUG [CoverImageRetrievalStrategy] Retrieving Cover image with id 135
2011-08-09 03:12:35,366 DEBUG [ResourceTransportRequestHandler] Entity will be consumed till the end
2011-08-09 03:12:35,366 DEBUG [ResourceTransportRequestHandler] Creating stream entity with length: -1
2011-08-09 03:12:35,366 DEBUG [ResourceTransportRequestHandler] Sending file back
2011-08-09 03:12:35,366 DEBUG [ResourceTransportRequestHandler] HTTP/1.1 200 OK, headers = [[Content-Type: image/jpeg,Date: Tue, 09 Aug 2011 08:12:35 GMT,Server: Mac OS X, UPnP/1.0 DLNADOC/1.50, Serviio/0.5.2,Cache-control: no-cache,transferMode.dlna.org: Interactive]]
2011-08-09 03:12:35,421 DEBUG [WebServer] Incoming connection from /192.168.0.105:37659
2011-08-09 03:12:35,448 DEBUG [ResourceTransportRequestHandler] GET /resource/136/COVER_IMAGE HTTP/1.1, headers = [transferMode.dlna.org: Interactive,X-AV-Physical-Unit-Info: pa="BRAVIA KDL-40EX521";,X-AV-Client-Info: av=5.0; cn="Sony Corporation"; mn="BRAVIA KDL-40EX521"; mv="1.7";,Host: 192.168.0.101:8895]]
2011-08-09 03:12:35,449 DEBUG [RendererDAOImpl] Reading a Renderer with ip address 192.168.0.105
2011-08-09 03:12:35,450 DEBUG [ResourceTransportRequestHandler] Resource request accepted. Using client 'IPAddress=/192.168.0.105, Profile=Generic DLNA profile'
2011-08-09 03:12:35,450 DEBUG [ResourceTransportRequestHandler] Request for resource 136 and type 'COVER_IMAGE' received
2011-08-09 03:12:35,450 DEBUG [CoverImageDAOImpl] Reading a CoverImage (id = 136)
2011-08-09 03:12:35,451 DEBUG [CoverImageRetrievalStrategy] Retrieving Cover image with id 136
2011-08-09 03:12:35,451 DEBUG [ResourceTransportRequestHandler] Entity will be consumed till the end
2011-08-09 03:12:35,451 DEBUG [ResourceTransportRequestHandler] Creating stream entity with length: -1
2011-08-09 03:12:35,451 DEBUG [ResourceTransportRequestHandler] Sending file back
2011-08-09 03:12:35,451 DEBUG [ResourceTransportRequestHandler] HTTP/1.1 200 OK, headers = [[Content-Type: image/jpeg,Date: Tue, 09 Aug 2011 08:12:35 GMT,Server: Mac OS X, UPnP/1.0 DLNADOC/1.50, Serviio/0.5.2,Cache-control: no-cache,transferMode.dlna.org: Interactive]]
2011-08-09 03:12:35,512 DEBUG [WebServer] Incoming connection from /192.168.0.105:37660
2011-08-09 03:12:35,512 DEBUG [ResourceTransportRequestHandler] GET /resource/120/COVER_IMAGE HTTP/1.1, headers = [transferMode.dlna.org: Interactive,X-AV-Physical-Unit-Info: pa="BRAVIA KDL-40EX521";,X-AV-Client-Info: av=5.0; cn="Sony Corporation"; mn="BRAVIA KDL-40EX521"; mv="1.7";,Host: 192.168.0.101:8895]]
2011-08-09 03:12:35,513 DEBUG [RendererDAOImpl] Reading a Renderer with ip address 192.168.0.105
2011-08-09 03:12:35,513 DEBUG [ResourceTransportRequestHandler] Resource request accepted. Using client 'IPAddress=/192.168.0.105, Profile=Generic DLNA profile'
2011-08-09 03:12:35,514 DEBUG [ResourceTransportRequestHandler] Request for resource 120 and type 'COVER_IMAGE' received
2011-08-09 03:12:35,514 DEBUG [CoverImageDAOImpl] Reading a CoverImage (id = 120)
2011-08-09 03:12:35,514 DEBUG [CoverImageRetrievalStrategy] Retrieving Cover image with id 120
2011-08-09 03:12:35,515 DEBUG [ResourceTransportRequestHandler] Entity will be consumed till the end
2011-08-09 03:12:35,515 DEBUG [ResourceTransportRequestHandler] Creating stream entity with length: -1
2011-08-09 03:12:35,515 DEBUG [ResourceTransportRequestHandler] Sending file back
2011-08-09 03:12:35,515 DEBUG [ResourceTransportRequestHandler] HTTP/1.1 200 OK, headers = [[Content-Type: image/jpeg,Date: Tue, 09 Aug 2011 08:12:35 GMT,Server: Mac OS X, UPnP/1.0 DLNADOC/1.50, Serviio/0.5.2,Cache-control: no-cache,transferMode.dlna.org: Interactive]]
2011-08-09 03:12:35,581 DEBUG [WebServer] Incoming connection from /192.168.0.105:37661
2011-08-09 03:12:35,581 DEBUG [ResourceTransportRequestHandler] GET /resource/101/COVER_IMAGE HTTP/1.1, headers = [transferMode.dlna.org: Interactive,X-AV-Physical-Unit-Info: pa="BRAVIA KDL-40EX521";,X-AV-Client-Info: av=5.0; cn="Sony Corporation"; mn="BRAVIA KDL-40EX521"; mv="1.7";,Host: 192.168.0.101:8895]]
2011-08-09 03:12:35,581 DEBUG [RendererDAOImpl] Reading a Renderer with ip address 192.168.0.105
2011-08-09 03:12:35,582 DEBUG [ResourceTransportRequestHandler] Resource request accepted. Using client 'IPAddress=/192.168.0.105, Profile=Generic DLNA profile'
2011-08-09 03:12:35,583 DEBUG [ResourceTransportRequestHandler] Request for resource 101 and type 'COVER_IMAGE' received
2011-08-09 03:12:35,583 DEBUG [CoverImageDAOImpl] Reading a CoverImage (id = 101)
2011-08-09 03:12:35,583 DEBUG [CoverImageRetrievalStrategy] Retrieving Cover image with id 101
2011-08-09 03:12:35,583 DEBUG [ResourceTransportRequestHandler] Entity will be consumed till the end
2011-08-09 03:12:35,583 DEBUG [ResourceTransportRequestHandler] Creating stream entity with length: -1
2011-08-09 03:12:35,584 DEBUG [ResourceTransportRequestHandler] Sending file back
2011-08-09 03:12:35,584 DEBUG [ResourceTransportRequestHandler] HTTP/1.1 200 OK, headers = [[Content-Type: image/jpeg,Date: Tue, 09 Aug 2011 08:12:35 GMT,Server: Mac OS X, UPnP/1.0 DLNADOC/1.50, Serviio/0.5.2,Cache-control: no-cache,transferMode.dlna.org: Interactive]]
2011-08-09 03:12:35,651 DEBUG [WebServer] Incoming connection from /192.168.0.105:37662
2011-08-09 03:12:35,661 DEBUG [ResourceTransportRequestHandler] GET /resource/123/COVER_IMAGE HTTP/1.1, headers = [transferMode.dlna.org: Interactive,X-AV-Physical-Unit-Info: pa="BRAVIA KDL-40EX521";,X-AV-Client-Info: av=5.0; cn="Sony Corporation"; mn="BRAVIA KDL-40EX521"; mv="1.7";,Host: 192.168.0.101:8895]]
2011-08-09 03:12:35,661 DEBUG [RendererDAOImpl] Reading a Renderer with ip address 192.168.0.105
2011-08-09 03:12:35,662 DEBUG [ResourceTransportRequestHandler] Resource request accepted. Using client 'IPAddress=/192.168.0.105, Profile=Generic DLNA profile'
2011-08-09 03:12:35,663 DEBUG [ResourceTransportRequestHandler] Request for resource 123 and type 'COVER_IMAGE' received
2011-08-09 03:12:35,663 DEBUG [CoverImageDAOImpl] Reading a CoverImage (id = 123)
2011-08-09 03:12:35,667 DEBUG [CoverImageRetrievalStrategy] Retrieving Cover image with id 123
2011-08-09 03:12:35,667 DEBUG [ResourceTransportRequestHandler] Entity will be consumed till the end
2011-08-09 03:12:35,667 DEBUG [ResourceTransportRequestHandler] Creating stream entity with length: -1
2011-08-09 03:12:35,667 DEBUG [ResourceTransportRequestHandler] Sending file back
2011-08-09 03:12:35,667 DEBUG [ResourceTransportRequestHandler] HTTP/1.1 200 OK, headers = [[Content-Type: image/jpeg,Date: Tue, 09 Aug 2011 08:12:35 GMT,Server: Mac OS X, UPnP/1.0 DLNADOC/1.50, Serviio/0.5.2,Cache-control: no-cache,transferMode.dlna.org: Interactive]]
2011-08-09 03:12:35,727 DEBUG [WebServer] Incoming connection from /192.168.0.105:37663
2011-08-09 03:12:35,727 DEBUG [ResourceTransportRequestHandler] GET /resource/127/COVER_IMAGE HTTP/1.1, headers = [transferMode.dlna.org: Interactive,X-AV-Physical-Unit-Info: pa="BRAVIA KDL-40EX521";,X-AV-Client-Info: av=5.0; cn="Sony Corporation"; mn="BRAVIA KDL-40EX521"; mv="1.7";,Host: 192.168.0.101:8895]]
2011-08-09 03:12:35,728 DEBUG [RendererDAOImpl] Reading a Renderer with ip address 192.168.0.105
2011-08-09 03:12:35,728 DEBUG [ResourceTransportRequestHandler] Resource request accepted. Using client 'IPAddress=/192.168.0.105, Profile=Generic DLNA profile'
2011-08-09 03:12:35,729 DEBUG [ResourceTransportRequestHandler] Request for resource 127 and type 'COVER_IMAGE' received
2011-08-09 03:12:35,729 DEBUG [CoverImageDAOImpl] Reading a CoverImage (id = 127)
2011-08-09 03:12:35,729 DEBUG [CoverImageRetrievalStrategy] Retrieving Cover image with id 127
2011-08-09 03:12:35,729 DEBUG [ResourceTransportRequestHandler] Entity will be consumed till the end
2011-08-09 03:12:35,729 DEBUG [ResourceTransportRequestHandler] Creating stream entity with length: -1
2011-08-09 03:12:35,730 DEBUG [ResourceTransportRequestHandler] Sending file back
2011-08-09 03:12:35,730 DEBUG [ResourceTransportRequestHandler] HTTP/1.1 200 OK, headers = [[Content-Type: image/jpeg,Date: Tue, 09 Aug 2011 08:12:35 GMT,Server: Mac OS X, UPnP/1.0 DLNADOC/1.50, Serviio/0.5.2,Cache-control: no-cache,transferMode.dlna.org: Interactive]]
2011-08-09 03:12:35,776 DEBUG [WebServer] Incoming connection from /192.168.0.105:37664
2011-08-09 03:12:35,776 DEBUG [ResourceTransportRequestHandler] GET /resource/138/COVER_IMAGE HTTP/1.1, headers = [transferMode.dlna.org: Interactive,X-AV-Physical-Unit-Info: pa="BRAVIA KDL-40EX521";,X-AV-Client-Info: av=5.0; cn="Sony Corporation"; mn="BRAVIA KDL-40EX521"; mv="1.7";,Host: 192.168.0.101:8895]]
2011-08-09 03:12:35,776 DEBUG [RendererDAOImpl] Reading a Renderer with ip address 192.168.0.105
2011-08-09 03:12:35,777 DEBUG [ResourceTransportRequestHandler] Resource request accepted. Using client 'IPAddress=/192.168.0.105, Profile=Generic DLNA profile'
2011-08-09 03:12:35,777 DEBUG [ResourceTransportRequestHandler] Request for resource 138 and type 'COVER_IMAGE' received
2011-08-09 03:12:35,778 DEBUG [CoverImageDAOImpl] Reading a CoverImage (id = 138)
2011-08-09 03:12:35,778 DEBUG [CoverImageRetrievalStrategy] Retrieving Cover image with id 138
2011-08-09 03:12:35,778 DEBUG [ResourceTransportRequestHandler] Entity will be consumed till the end
2011-08-09 03:12:35,778 DEBUG [ResourceTransportRequestHandler] Creating stream entity with length: -1
2011-08-09 03:12:35,778 DEBUG [ResourceTransportRequestHandler] Sending file back
2011-08-09 03:12:35,779 DEBUG [ResourceTransportRequestHandler] HTTP/1.1 200 OK, headers = [[Content-Type: image/jpeg,Date: Tue, 09 Aug 2011 08:12:35 GMT,Server: Mac OS X, UPnP/1.0 DLNADOC/1.50, Serviio/0.5.2,Cache-control: no-cache,transferMode.dlna.org: Interactive]]
2011-08-09 03:12:35,832 DEBUG [WebServer] Incoming connection from /192.168.0.105:37665
2011-08-09 03:12:35,833 DEBUG [ResourceTransportRequestHandler] GET /resource/114/COVER_IMAGE HTTP/1.1, headers = [transferMode.dlna.org: Interactive,X-AV-Physical-Unit-Info: pa="BRAVIA KDL-40EX521";,X-AV-Client-Info: av=5.0; cn="Sony Corporation"; mn="BRAVIA KDL-40EX521"; mv="1.7";,Host: 192.168.0.101:8895]]
2011-08-09 03:12:35,833 DEBUG [RendererDAOImpl] Reading a Renderer with ip address 192.168.0.105
2011-08-09 03:12:35,834 DEBUG [ResourceTransportRequestHandler] Resource request accepted. Using client 'IPAddress=/192.168.0.105, Profile=Generic DLNA profile'
2011-08-09 03:12:35,834 DEBUG [ResourceTransportRequestHandler] Request for resource 114 and type 'COVER_IMAGE' received
2011-08-09 03:12:35,834 DEBUG [CoverImageDAOImpl] Reading a CoverImage (id = 114)
2011-08-09 03:12:35,835 DEBUG [CoverImageRetrievalStrategy] Retrieving Cover image with id 114
2011-08-09 03:12:35,835 DEBUG [ResourceTransportRequestHandler] Entity will be consumed till the end
2011-08-09 03:12:35,835 DEBUG [ResourceTransportRequestHandler] Creating stream entity with length: -1
2011-08-09 03:12:35,835 DEBUG [ResourceTransportRequestHandler] Sending file back
2011-08-09 03:12:35,835 DEBUG [ResourceTransportRequestHandler] HTTP/1.1 200 OK, headers = [[Content-Type: image/jpeg,Date: Tue, 09 Aug 2011 08:12:35 GMT,Server: Mac OS X, UPnP/1.0 DLNADOC/1.50, Serviio/0.5.2,Cache-control: no-cache,transferMode.dlna.org: Interactive]]
2011-08-09 03:12:35,884 DEBUG [WebServer] Incoming connection from /192.168.0.105:37666
2011-08-09 03:12:35,885 DEBUG [ResourceTransportRequestHandler] GET /resource/115/COVER_IMAGE HTTP/1.1, headers = [transferMode.dlna.org: Interactive,X-AV-Physical-Unit-Info: pa="BRAVIA KDL-40EX521";,X-AV-Client-Info: av=5.0; cn="Sony Corporation"; mn="BRAVIA KDL-40EX521"; mv="1.7";,Host: 192.168.0.101:8895]]
2011-08-09 03:12:35,885 DEBUG [RendererDAOImpl] Reading a Renderer with ip address 192.168.0.105
2011-08-09 03:12:35,886 DEBUG [ResourceTransportRequestHandler] Resource request accepted. Using client 'IPAddress=/192.168.0.105, Profile=Generic DLNA profile'
2011-08-09 03:12:35,886 DEBUG [ResourceTransportRequestHandler] Request for resource 115 and type 'COVER_IMAGE' received
2011-08-09 03:12:35,886 DEBUG [CoverImageDAOImpl] Reading a CoverImage (id = 115)
2011-08-09 03:12:35,887 DEBUG [CoverImageRetrievalStrategy] Retrieving Cover image with id 115
2011-08-09 03:12:35,887 DEBUG [ResourceTransportRequestHandler] Entity will be consumed till the end
2011-08-09 03:12:35,887 DEBUG [ResourceTransportRequestHandler] Creating stream entity with length: -1
2011-08-09 03:12:35,887 DEBUG [ResourceTransportRequestHandler] Sending file back
2011-08-09 03:12:35,887 DEBUG [ResourceTransportRequestHandler] HTTP/1.1 200 OK, headers = [[Content-Type: image/jpeg,Date: Tue, 09 Aug 2011 08:12:35 GMT,Server: Mac OS X, UPnP/1.0 DLNADOC/1.50, Serviio/0.5.2,Cache-control: no-cache,transferMode.dlna.org: Interactive]]
2011-08-09 03:12:35,942 DEBUG [WebServer] Incoming connection from /192.168.0.105:37667
2011-08-09 03:12:35,942 DEBUG [ResourceTransportRequestHandler] GET /resource/116/COVER_IMAGE HTTP/1.1, headers = [transferMode.dlna.org: Interactive,X-AV-Physical-Unit-Info: pa="BRAVIA KDL-40EX521";,X-AV-Client-Info: av=5.0; cn="Sony Corporation"; mn="BRAVIA KDL-40EX521"; mv="1.7";,Host: 192.168.0.101:8895]]
2011-08-09 03:12:35,943 DEBUG [RendererDAOImpl] Reading a Renderer with ip address 192.168.0.105
2011-08-09 03:12:35,944 DEBUG [ResourceTransportRequestHandler] Resource request accepted. Using client 'IPAddress=/192.168.0.105, Profile=Generic DLNA profile'
2011-08-09 03:12:35,944 DEBUG [ResourceTransportRequestHandler] Request for resource 116 and type 'COVER_IMAGE' received
2011-08-09 03:12:35,944 DEBUG [CoverImageDAOImpl] Reading a CoverImage (id = 116)
2011-08-09 03:12:35,945 DEBUG [CoverImageRetrievalStrategy] Retrieving Cover image with id 116
2011-08-09 03:12:35,945 DEBUG [ResourceTransportRequestHandler] Entity will be consumed till the end
2011-08-09 03:12:35,945 DEBUG [ResourceTransportRequestHandler] Creating stream entity with length: -1
2011-08-09 03:12:35,945 DEBUG [ResourceTransportRequestHandler] Sending file back
2011-08-09 03:12:35,945 DEBUG [ResourceTransportRequestHandler] HTTP/1.1 200 OK, headers = [[Content-Type: image/jpeg,Date: Tue, 09 Aug 2011 08:12:35 GMT,Server: Mac OS X, UPnP/1.0 DLNADOC/1.50, Serviio/0.5.2,Cache-control: no-cache,transferMode.dlna.org: Interactive]]
2011-08-09 03:12:36,004 DEBUG [WebServer] Incoming connection from /192.168.0.105:37668
2011-08-09 03:12:36,004 DEBUG [ResourceTransportRequestHandler] GET /resource/117/COVER_IMAGE HTTP/1.1, headers = [transferMode.dlna.org: Interactive,X-AV-Physical-Unit-Info: pa="BRAVIA KDL-40EX521";,X-AV-Client-Info: av=5.0; cn="Sony Corporation"; mn="BRAVIA KDL-40EX521"; mv="1.7";,Host: 192.168.0.101:8895]]
2011-08-09 03:12:36,004 DEBUG [RendererDAOImpl] Reading a Renderer with ip address 192.168.0.105
2011-08-09 03:12:36,005 DEBUG [ResourceTransportRequestHandler] Resource request accepted. Using client 'IPAddress=/192.168.0.105, Profile=Generic DLNA profile'
2011-08-09 03:12:36,006 DEBUG [ResourceTransportRequestHandler] Request for resource 117 and type 'COVER_IMAGE' received
2011-08-09 03:12:36,006 DEBUG [CoverImageDAOImpl] Reading a CoverImage (id = 117)
2011-08-09 03:12:36,006 DEBUG [CoverImageRetrievalStrategy] Retrieving Cover image with id 117
2011-08-09 03:12:36,006 DEBUG [ResourceTransportRequestHandler] Entity will be consumed till the end
2011-08-09 03:12:36,006 DEBUG [ResourceTransportRequestHandler] Creating stream entity with length: -1
2011-08-09 03:12:36,007 DEBUG [ResourceTransportRequestHandler] Sending file back
2011-08-09 03:12:36,007 DEBUG [ResourceTransportRequestHandler] HTTP/1.1 200 OK, headers = [[Content-Type: image/jpeg,Date: Tue, 09 Aug 2011 08:12:36 GMT,Server: Mac OS X, UPnP/1.0 DLNADOC/1.50, Serviio/0.5.2,Cache-control: no-cache,transferMode.dlna.org: Interactive]]


this is enough? here is something with .srt
<<

zip

User avatar

Serviio developer / Site Admin

Posts: 17215

Joined: Sat Oct 24, 2009 12:24 pm

Location: London, UK

Post Tue Aug 09, 2011 11:04 am

Re: subtitles on Sony kdl-40ex521

it only means Serviio found the subs, not that the TV is asking for them. BTW, it looks like you're using Generic profile anyway.
<<

Elfish

Streaming enthusiast

Posts: 23

Joined: Tue Aug 02, 2011 6:58 am

Post Tue Aug 09, 2011 11:34 am

Re: subtitles on Sony kdl-40ex521

is there a way to transcode them directly into the stream?
<<

Illico

User avatar

DLNA master

Posts: 4646

Joined: Fri Jul 23, 2010 8:08 am

Location: France

Post Tue Aug 09, 2011 11:47 am

Re: subtitles on Sony kdl-40ex521

Elfish wrote:is there a way to transcode them directly into the stream?

Ffmpeg does not support this yet (burned into video stream), but remux could probably be done.
Illico
Sony 2010 KDL-46EX501 | BDP-S373 | SMP-N100 | Windows 8-i7 | Network DD HD-CE1.5TLU2 | Livebox2-UHD86 | ServiiDroid | ServiiGo | BubbleUPnP
Serviio beta tester - Moderator
<<

Elfish

Streaming enthusiast

Posts: 23

Joined: Tue Aug 02, 2011 6:58 am

Post Tue Aug 09, 2011 11:51 am

Re: subtitles on Sony kdl-40ex521

ah ok.

good to know :)
<<

gusascencio

Serviio newbie

Posts: 5

Joined: Mon Aug 08, 2011 5:31 am

Post Wed Aug 10, 2011 1:45 am

Re: subtitles on Sony kdl-40ex521

zip wrote:it only means Serviio found the subs, not that the TV is asking for them. BTW, it looks like you're using Generic profile anyway.


so what can i do?
i already modify the profile to sony, the log still the some, just founding the sub but the tv dont ask for them
<<

Illico

User avatar

DLNA master

Posts: 4646

Joined: Fri Jul 23, 2010 8:08 am

Location: France

Post Wed Aug 10, 2011 6:54 am

Re: subtitles on Sony kdl-40ex521

gusascencio wrote:
zip wrote:it only means Serviio found the subs, not that the TV is asking for them. BTW, it looks like you're using Generic profile anyway.


so what can i do?
i already modify the profile to sony, the log still the some, just founding the sub but the tv dont ask for them


Not sure the 2011 TV supports, srt file...post the question on Sony Support Forum.

EDIT: I know that some renderer doesn't not support tag into the srt file and must be in a correct UTF-8 encoding. Lots of sony device support srt only on USB.
Illico
Sony 2010 KDL-46EX501 | BDP-S373 | SMP-N100 | Windows 8-i7 | Network DD HD-CE1.5TLU2 | Livebox2-UHD86 | ServiiDroid | ServiiGo | BubbleUPnP
Serviio beta tester - Moderator

Return to Sony

Who is online

Users browsing this forum: Baidu [Spider], Majestic-12 [Bot] and 11 guests

Powered by phpBB © 2000, 2002, 2005, 2007 phpBB Group.
Designed by ST Software for PTF.