FAQ  •  Register  •  Login

MP4s and Panny V10

<<

enigmo

Serviio newbie

Posts: 11

Joined: Thu Feb 23, 2012 2:48 pm

Post Tue Feb 28, 2012 8:47 pm

MP4s and Panny V10

Has anyone got a profile they know works with a Viera V10? AVIs play perfectly, but MP4s refused to play at all. A small edit of the Viera profile:
<Transcoding>
<!-- remux DTS/FLAC/LPCM in MKV/MP4 to AC3 -->
<Video targetContainer="mpegts" targetVCodec="mpeg2video" maxVBitrate="17000" targetACodec="ac3" aBitrate="192">
<Matches container="matroska" vCodec="h264" aCodec="dca" />
<Matches container="matroska" vCodec="h264" aCodec="flac" />
<Matches container="matroska" vCodec="h264" aCodec="vorbis" />
<Matches container="mp4" />
<Matches container="3gp" vCodec="h264" />
</Video>

now makes the video work, if a little stretched, but still no audio. Just wondering if anyone had any ideas. I've had a look in the wiki and the V10 isn't listed there with a list of supported formats, so tried the Intel UPnP tools to try and interrogate the TV myself, but it doesn't appear in the list; thinking the TV might be too old to support UPnP, but might be wrong.
<<

Cerberus

User avatar

DLNA master

Posts: 4114

Joined: Sun Jan 02, 2011 5:20 pm

Location: Reading, UK

Post Tue Feb 28, 2012 8:56 pm

Re: MP4s and Panny V10

From what i can tell from google is the 2009 series (Models Z1, V10, G15) only support mpeg2 or dvix video and theres no information on what sound codec they use but i know they dont support mp3 and from your test i would guess they dont support ac3 either so guess it must be AAC.

so on those assumptions i guess profile would be somethig like this but will require testing.

  Code:
<Profile id="24" name="Panasonic Viera (2009)" extendsProfileId="1">
        <ContentDirectoryMessageBuilder>org.serviio.upnp.service.contentdirectory.PacketVideoDLNAMessageBuilder</ContentDirectoryMessageBuilder>
        <SubtitlesMimeType>text/srt</SubtitlesMimeType>
        <MediaFormatProfiles>
             <MediaFormatProfile mime-type="video/divx">AVI</MediaFormatProfile>
        </MediaFormatProfiles>
        <Transcoding>
           <!-- Remux WTV files to MPEG-PS with no transcoding-->
           <Video targetContainer="mpeg">
              <Matches container="wtv" />
           </Video>
           <!-- Unsupported codecs will be transcoded into mpeg-ts, mpeg2video and aac audio -->
           <Video targetContainer="mpegts" targetVCodec="mpeg2video" targetACodec="aac">           
              <Matches container="mp4" />
              <Matches container="asf" />
              <Matches container="flv" />
              <Matches container="ogg" />
              <Matches container="3gp" />
              <Matches container="matroska" />
              <Matches container="avi" vCodec="h264" />
              <Matches container="avi" vCodec="mpeg4" />
              <Matches container="avi" vCodec="mjpeg" />
              <Matches container="avi" vCodec="dvvideo" />
           </Video>
           <!-- unsupported audio will be transcoded into lpcm audio -->
           <Audio targetContainer="lpcm">
              <Matches container="flac" />
              <Matches container="ogg" />
              <Matches container="asf" />
              <Matches container="mp3" />
              <Matches container="adts" />
           </Audio>
        </Transcoding>     
    </Profile>
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
<<

enigmo

Serviio newbie

Posts: 11

Joined: Thu Feb 23, 2012 2:48 pm

Post Tue Feb 28, 2012 11:38 pm

Re: MP4s and Panny V10

Ta for trying, but that seemed to kill all files! All of them appeared as file not supported. Still carrying on tweaking the original profile to see what I can so. If any success I'll post back what I've done.
<<

Cerberus

User avatar

DLNA master

Posts: 4114

Joined: Sun Jan 02, 2011 5:20 pm

Location: Reading, UK

Post Wed Feb 29, 2012 12:31 am

Re: MP4s and Panny V10

enigmo wrote:Ta for trying, but that seemed to kill all files! All of them appeared as file not supported. Still carrying on tweaking the original profile to see what I can so. If any success I'll post back what I've done.


really hmm, ok then it has to be ac3 audio then, as nothing else makes sense. the original profile will be dissappearing so helping me o get a working profile is your best bet as 2010 and 2011 device have a new profile now so let get one for the 2009 devices like yours.

  Code:
<Profile id="24" name="Panasonic Viera (2009)" extendsProfileId="1">
        <ContentDirectoryMessageBuilder>org.serviio.upnp.service.contentdirectory.PacketVideoDLNAMessageBuilder</ContentDirectoryMessageBuilder>
        <SubtitlesMimeType>text/srt</SubtitlesMimeType>
        <MediaFormatProfiles>
             <MediaFormatProfile mime-type="video/divx">AVI</MediaFormatProfile>
        </MediaFormatProfiles>
        <Transcoding>
           <!-- Remux WTV files to MPEG-PS with no transcoding-->
           <Video targetContainer="mpeg">
              <Matches container="wtv" />
           </Video>
           <!-- Unsupported codecs will be transcoded into mpeg-ts, mpeg2video and aac audio -->
           <Video targetContainer="mpegts" targetVCodec="mpeg2video" targetACodec="ac3">           
              <Matches container="mp4" />
              <Matches container="asf" />
              <Matches container="flv" />
              <Matches container="ogg" />
              <Matches container="3gp" />
              <Matches container="matroska" />
              <Matches container="avi" vCodec="h264" />
              <Matches container="avi" vCodec="mpeg4" />
              <Matches container="avi" vCodec="mjpeg" />
              <Matches container="avi" vCodec="dvvideo" />
           </Video>
           <!-- unsupported audio will be transcoded into lpcm audio -->
           <Audio targetContainer="lpcm">
              <Matches container="flac" />
              <Matches container="ogg" />
              <Matches container="asf" />
              <Matches container="mp3" />
              <Matches container="adts" />
           </Audio>
        </Transcoding>     
    </Profile>
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
<<

enigmo

Serviio newbie

Posts: 11

Joined: Thu Feb 23, 2012 2:48 pm

Post Wed Feb 29, 2012 12:42 am

Re: MP4s and Panny V10

Weird, same problem; files not supported. I've tried dropping in the section from the Philips profile regarding mp4 as at least that gets the video working, if not the audio, but no joy as yet, but I may have done something wrong. And you are right; I'd never checked my audio shares before (just moved house and only just got this lot set up with a view to retiring my massive mythTV box) and mp3s indeed don't play natively, so that's something for me to look at too. I'll carry on tomorrow night.
<<

Cerberus

User avatar

DLNA master

Posts: 4114

Joined: Sun Jan 02, 2011 5:20 pm

Location: Reading, UK

Post Wed Feb 29, 2012 12:49 am

Re: MP4s and Panny V10

are u definately selecting the correct profile for the device in console cause thats impossible? one of the 2 profile i posted should work as there is no other options. please post your serviio log file too :)
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
<<

enigmo

Serviio newbie

Posts: 11

Joined: Thu Feb 23, 2012 2:48 pm

Post Wed Feb 29, 2012 9:53 am

Re: MP4s and Panny V10

Will do so tonight. I'll drop in both your profiles and restart the machine in between changes to make sure everything is properly restarted and see what works.
Do you want the regular log, or a debug level one?
<<

Cerberus

User avatar

DLNA master

Posts: 4114

Joined: Sun Jan 02, 2011 5:20 pm

Location: Reading, UK

Post Wed Feb 29, 2012 11:14 am

Re: MP4s and Panny V10

enigmo wrote:Will do so tonight. I'll drop in both your profiles and restart the machine in between changes to make sure everything is properly restarted and see what works.
Do you want the regular log, or a debug level one?


normal log, should be fine.
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
<<

enigmo

Serviio newbie

Posts: 11

Joined: Thu Feb 23, 2012 2:48 pm

Post Wed Feb 29, 2012 8:50 pm

Re: MP4s and Panny V10

I dropped in both your profiles:
  Code:
<Profile id="22" name="Panasonic Viera (2009a)" extendsProfileId="1">
        <ContentDirectoryMessageBuilder>org.serviio.upnp.service.contentdirectory.PacketVideoDLNAMessageBuilder</ContentDirectoryMessageBuilder>
        <SubtitlesMimeType>text/srt</SubtitlesMimeType>
        <MediaFormatProfiles>
             <MediaFormatProfile mime-type="video/divx">AVI</MediaFormatProfile>
        </MediaFormatProfiles>
        <Transcoding>
           <!-- Remux WTV files to MPEG-PS with no transcoding-->
           <Video targetContainer="mpeg">
              <Matches container="wtv" />
           </Video>
           <!-- Unsupported codecs will be transcoded into mpeg-ts, mpeg2video and aac audio -->
           <Video targetContainer="mpegts" targetVCodec="mpeg2video" targetACodec="aac">           
              <Matches container="mp4" />
              <Matches container="asf" />
              <Matches container="flv" />
              <Matches container="ogg" />
              <Matches container="3gp" />
              <Matches container="matroska" />
              <Matches container="avi" vCodec="h264" />
              <Matches container="avi" vCodec="mpeg4" />
              <Matches container="avi" vCodec="mjpeg" />
              <Matches container="avi" vCodec="dvvideo" />
           </Video>
           <!-- unsupported audio will be transcoded into lpcm audio -->
           <Audio targetContainer="lpcm">
              <Matches container="flac" />
              <Matches container="ogg" />
              <Matches container="asf" />
              <Matches container="mp3" />
              <Matches container="adts" />
           </Audio>
        </Transcoding>     
    </Profile>

<Profile id="23" name="Panasonic Viera (2009b)" extendsProfileId="1">
        <ContentDirectoryMessageBuilder>org.serviio.upnp.service.contentdirectory.PacketVideoDLNAMessageBuilder</ContentDirectoryMessageBuilder>
        <SubtitlesMimeType>text/srt</SubtitlesMimeType>
        <MediaFormatProfiles>
             <MediaFormatProfile mime-type="video/divx">AVI</MediaFormatProfile>
        </MediaFormatProfiles>
        <Transcoding>
           <!-- Remux WTV files to MPEG-PS with no transcoding-->
           <Video targetContainer="mpeg">
              <Matches container="wtv" />
           </Video>
           <!-- Unsupported codecs will be transcoded into mpeg-ts, mpeg2video and aac audio -->
           <Video targetContainer="mpegts" targetVCodec="mpeg2video" targetACodec="ac3">           
              <Matches container="mp4" />
              <Matches container="asf" />
              <Matches container="flv" />
              <Matches container="ogg" />
              <Matches container="3gp" />
              <Matches container="matroska" />
              <Matches container="avi" vCodec="h264" />
              <Matches container="avi" vCodec="mpeg4" />
              <Matches container="avi" vCodec="mjpeg" />
              <Matches container="avi" vCodec="dvvideo" />
           </Video>
           <!-- unsupported audio will be transcoded into lpcm audio -->
           <Audio targetContainer="lpcm">
              <Matches container="flac" />
              <Matches container="ogg" />
              <Matches container="asf" />
              <Matches container="mp3" />
              <Matches container="adts" />
           </Audio>
        </Transcoding>     
    </Profile>


And tried both, a couple of minutes apart, restarting Serviio fully between each attempt, trying an mp4 each time. Both times, the error 'File Not Supported' appeared on the TV, just like the original Viera profile does.
Log file for this evening:
  Code:
2012-02-29 19:19:44,156 INFO  [LibraryAdditionsCheckerThread] Finished looking for newly added files
2012-02-29 19:19:44,156 WARN  [IndexedDiskCache] Region [thumbnails] Disk cache not shutdown properly, shutting down now.
2012-02-29 19:19:44,157 WARN  [IndexedDiskCache] Region [online_technical_metadata] Disk cache not shutdown properly, shutting down now.
2012-02-29 19:19:44,256 INFO  [LibraryUpdatesCheckerThread] Finished looking for updates to currently shared files
2012-02-29 19:19:44,356 INFO  [FeedUpdaterThread] Finished looking for online resources information
2012-02-29 19:19:44,456 INFO  [PluginCompilerThread] Finished looking for plugins
2012-02-29 19:19:44,556 INFO  [WebServer] WebServer shutting down
2012-02-29 19:19:44,556 INFO  [DiscoveryAdvertisementNotifier] Leaving DiscoveryAdvertisementNotifier
2012-02-29 19:19:44,556 INFO  [EventDispatcher] Leaving EventDispatcher
2012-02-29 19:19:44,556 INFO  [EventSubscriptionExpirationChecker] Leaving EventSubscriptionExpirationChecker, removing all event subscriptions
2012-02-29 19:19:44,649 INFO  [DiscoverySSDPMessageListener] Leaving DiscoverySSDPMessageListener
2012-02-29 19:19:44,649 INFO  [DatabaseManager] Shutting down database
2012-02-29 19:19:46,268 INFO  [AbstractTranscodingDeliveryEngine] Cleaning transcode engine and its data
2012-02-29 19:19:46,610 INFO  [ServiioConsole] Leaving Serviio Console
2012-02-29 19:19:57,617 INFO  [MediaServer] ------------------------------------------------------------------------
2012-02-29 19:19:57,618 INFO  [MediaServer] Serviio DLNA media streaming server v 0.6.2 (rev. aec3abd196d6+)
2012-02-29 19:19:57,618 INFO  [MediaServer] Petr Nejedly 2009-2011
2012-02-29 19:19:57,618 INFO  [MediaServer] http://www.serviio.org
2012-02-29 19:19:57,618 INFO  [MediaServer]
2012-02-29 19:19:57,618 INFO  [MediaServer] Java 1.6.0_29-Sun Microsystems Inc.
2012-02-29 19:19:57,618 INFO  [MediaServer] OS Windows Server 2008 x86 6.0
2012-02-29 19:19:57,619 INFO  [MediaServer] File encoding: windows-1252
2012-02-29 19:19:57,619 INFO  [MediaServer] Headless mode enabled: true
2012-02-29 19:19:57,619 INFO  [MediaServer] User home dir: C:\
2012-02-29 19:19:57,619 INFO  [MediaServer] Temp dir: C:\Windows\TEMP\
2012-02-29 19:19:57,619 INFO  [MediaServer] ------------------------------------------------------------------------
2012-02-29 19:19:57,724 INFO  [RestletServer] Starting Restlet server exposed on port 23423
2012-02-29 19:19:57,775 INFO  [DBSchemaUpdateExecutor] Checking if DB schema needs to be updated
2012-02-29 19:19:58,896 INFO  [ProfilesDefinitionParser] Parsing Profiles definition
2012-02-29 19:19:59,217 INFO  [ProfilesDefinitionParser] Added profile 'Generic DLNA profile' (id=1)
2012-02-29 19:19:59,436 INFO  [ProfilesDefinitionParser] Added profile 'Samsung TV (B-series)' (id=2)
2012-02-29 19:19:59,568 INFO  [ProfilesDefinitionParser] Added profile 'Xbox 360' (id=3)
2012-02-29 19:19:59,760 INFO  [ProfilesDefinitionParser] Added profile 'Playstation 3' (id=4)
2012-02-29 19:19:59,854 INFO  [ProfilesDefinitionParser] Added profile 'Samsung TV (A-series)' (id=5)
2012-02-29 19:19:59,928 INFO  [ProfilesDefinitionParser] Added profile 'DirecTV HD-DVR' (id=6)
2012-02-29 19:20:00,255 INFO  [ProfilesDefinitionParser] Added profile 'Samsung TV / player (C/D-series)' (id=7)
2012-02-29 19:20:00,281 INFO  [ProfilesDefinitionParser] Added profile 'LG TV / player' (id=8)
2012-02-29 19:20:00,563 INFO  [ProfilesDefinitionParser] Added profile 'Sony Bravia TV (2011)' (id=9)
2012-02-29 19:20:01,029 INFO  [ProfilesDefinitionParser] Added profile 'Sony BD Player / SMP' (id=10)
2012-02-29 19:20:01,240 INFO  [ProfilesDefinitionParser] Added profile 'Panasonic Viera' (id=12)
2012-02-29 19:20:01,437 INFO  [ProfilesDefinitionParser] Added profile 'Toshiba REGZA' (id=13)
2012-02-29 19:20:01,545 INFO  [ProfilesDefinitionParser] Added profile 'WDTV Live' (id=14)
2012-02-29 19:20:01,568 INFO  [ProfilesDefinitionParser] Added profile 'LaCie LaCinema Media Player' (id=15)
2012-02-29 19:20:01,652 INFO  [ProfilesDefinitionParser] Added profile 'Manta WIFI Centre' (id=16)
2012-02-29 19:20:01,693 INFO  [ProfilesDefinitionParser] Added profile 'Pure Flow' (id=17)
2012-02-29 19:20:01,829 INFO  [ProfilesDefinitionParser] Added profile 'Sharp Aquos' (id=18)
2012-02-29 19:20:01,896 INFO  [ProfilesDefinitionParser] Added profile 'Sony Bravia TV (2010)' (id=19)
2012-02-29 19:20:02,075 INFO  [ProfilesDefinitionParser] Added profile 'Philips' (id=20)
2012-02-29 19:20:02,182 INFO  [ProfilesDefinitionParser] Added profile 'Sony Bravia TV (2009)' (id=21)
2012-02-29 19:20:02,351 INFO  [ProfilesDefinitionParser] Added profile 'Panasonic Viera (2009a)' (id=22)
2012-02-29 19:20:02,526 INFO  [ProfilesDefinitionParser] Added profile 'Panasonic Viera (2009b)' (id=23)
2012-02-29 19:20:02,783 INFO  [WebServer] Socket buffer set to 65535 bytes
2012-02-29 19:20:02,784 INFO  [Device] Created UPnP Device with UUID: eeb251f6-ddcc-353c-a76c-cdd9723f2f9d, bound address: 192.168.0.110
2012-02-29 19:20:02,809 INFO  [PluginCompilerThread] Looking for plugins at C:\Program Files\Serviio\bin\..\plugins
2012-02-29 19:20:02,813 INFO  [PluginCompilerThread] Started looking for plugins
2012-02-29 19:20:03,037 INFO  [AbstractTranscodingDeliveryEngine] Cleaning transcode engine and its data
2012-02-29 19:20:03,109 INFO  [EventSubscriptionExpirationChecker] Starting EventSubscriptionExpirationChecker
2012-02-29 19:20:03,112 INFO  [RendererSearchSender] Searching for Renderer devices
2012-02-29 19:20:03,182 INFO  [WebServer] WebServer starting on port 8895
2012-02-29 19:20:03,182 INFO  [DiscoveryAdvertisementNotifier] Starting DiscoveryAdvertisementNotifier
2012-02-29 19:20:03,183 INFO  [EventDispatcher] Starting EventDispatcher
2012-02-29 19:20:03,184 INFO  [RendererExpirationChecker] Starting RendererExpirationChecker
2012-02-29 19:20:03,201 INFO  [DiscoverySSDPMessageListener] Starting DiscoverySSDPMessageListener using interface eth3 (Intel(R) 82578DM Gigabit Network Connection) and address 192.168.0.110, timeout = 0
2012-02-29 19:20:10,802 INFO  [ServiioConsole] Starting Serviio Console
2012-02-29 19:20:10,958 INFO  [ServiioConsole] Connecting to Serviio REST on localhost:23423
2012-02-29 19:20:11,379 INFO  [Messages] Loaded console message bundle for locale: en
2012-02-29 19:20:11,457 INFO  [UpdateChecker] Checking if a new version is available
2012-02-29 19:20:12,986 INFO  [ContentDirectoryDefinitionParser] Parsing ContentDirectory definition
2012-02-29 19:20:13,235 INFO  [BrowsingCategoriesMessages] Loaded browsing categories message bundle for locale: en
2012-02-29 19:20:29,336 INFO  [LibraryAdditionsCheckerThread] Started looking for newly added files
2012-02-29 19:20:29,336 INFO  [LibraryUpdatesCheckerThread] Started looking for updates to currently shared files
2012-02-29 19:20:29,336 INFO  [FeedUpdaterThread] Started looking for information about online resources
2012-02-29 19:20:30,266 INFO  [WebServer] WebServer shutting down
2012-02-29 19:20:30,266 INFO  [DiscoveryAdvertisementNotifier] Leaving DiscoveryAdvertisementNotifier
2012-02-29 19:20:30,297 INFO  [EventDispatcher] Leaving EventDispatcher
2012-02-29 19:20:30,297 INFO  [EventSubscriptionExpirationChecker] Leaving EventSubscriptionExpirationChecker, removing all event subscriptions
2012-02-29 19:20:30,406 INFO  [DiscoverySSDPMessageListener] Leaving DiscoverySSDPMessageListener
2012-02-29 19:20:30,406 INFO  [WebServer] WebServer starting on port 8895
2012-02-29 19:20:30,406 INFO  [EventSubscriptionExpirationChecker] Starting EventSubscriptionExpirationChecker
2012-02-29 19:20:30,406 INFO  [RendererSearchSender] Searching for Renderer devices
2012-02-29 19:20:30,406 INFO  [DiscoveryAdvertisementNotifier] Starting DiscoveryAdvertisementNotifier
2012-02-29 19:20:30,406 INFO  [EventDispatcher] Starting EventDispatcher
2012-02-29 19:20:30,407 INFO  [DiscoverySSDPMessageListener] Starting DiscoverySSDPMessageListener using interface eth3 (Intel(R) 82578DM Gigabit Network Connection) and address 192.168.0.110, timeout = 0
2012-02-29 19:20:33,274 INFO  [RendererExpirationChecker] Leaving RendererExpirationChecker
2012-02-29 19:20:37,096 WARN  [IndexedDiskCache] Region [thumbnails] Disk cache not shutdown properly, shutting down now.
2012-02-29 19:20:37,096 WARN  [IndexedDiskCache] Region [online_technical_metadata] Disk cache not shutdown properly, shutting down now.
2012-02-29 19:20:37,096 INFO  [LibraryAdditionsCheckerThread] Finished looking for newly added files
2012-02-29 19:20:37,236 WARN  [LibraryUpdatesCheckerThread] An error occured while scanning for items to be removed or updated, will continue
org.serviio.db.dao.PersistenceException: Cannot get file of media item: 128
   at org.serviio.library.dao.MediaItemDAOImpl.getFile(MediaItemDAOImpl.java:148)
   at org.serviio.library.local.service.MediaService.getFile(MediaService.java:45)
   at org.serviio.library.local.metadata.LibraryUpdatesCheckerThread.searchForRemovedAndUpdatedFiles(LibraryUpdatesCheckerThread.java:162)
   at org.serviio.library.local.metadata.LibraryUpdatesCheckerThread.run(LibraryUpdatesCheckerThread.java:96)
Caused by: java.sql.SQLNonTransientConnectionException: Connection closed by unknown interrupt.
   at org.apache.derby.impl.jdbc.SQLExceptionFactory40.getSQLException(Unknown Source)
   at org.apache.derby.impl.jdbc.Util.generateCsSQLException(Unknown Source)
   at org.apache.derby.impl.jdbc.TransactionResourceImpl.wrapInSQLException(Unknown Source)
   at org.apache.derby.impl.jdbc.TransactionResourceImpl.handleException(Unknown Source)
   at org.apache.derby.impl.jdbc.EmbedConnection.handleException(Unknown Source)
   at org.apache.derby.impl.jdbc.ConnectionChild.handleException(Unknown Source)
   at org.apache.derby.impl.jdbc.EmbedStatement.executeStatement(Unknown Source)
   at org.apache.derby.impl.jdbc.EmbedPreparedStatement.executeStatement(Unknown Source)
   at org.apache.derby.impl.jdbc.EmbedPreparedStatement.executeQuery(Unknown Source)
   at org.serviio.library.dao.MediaItemDAOImpl.getFile(MediaItemDAOImpl.java:136)
   ... 3 more
Caused by: java.sql.SQLException: Connection closed by unknown interrupt.
   at org.apache.derby.impl.jdbc.SQLExceptionFactory.getSQLException(Unknown Source)
   at org.apache.derby.impl.jdbc.SQLExceptionFactory40.wrapArgsForTransportAcrossDRDA(Unknown Source)
   ... 13 more
Caused by: ERROR 08000: Connection closed by unknown interrupt.
   at org.apache.derby.iapi.error.StandardException.newException(Unknown Source)
   at org.apache.derby.iapi.util.InterruptStatus.setInterrupted(Unknown Source)
   at org.apache.derby.iapi.util.InterruptStatus.throwIf(Unknown Source)
   at org.apache.derby.impl.sql.execute.BasicNoPutResultSetImpl.checkCancellationFlag(Unknown Source)
   at org.apache.derby.impl.sql.execute.TableScanResultSet.getNextRowCore(Unknown Source)
   at org.apache.derby.impl.sql.execute.IndexRowToBaseRowResultSet.getNextRowCore(Unknown Source)
   at org.apache.derby.impl.sql.execute.JoinResultSet.openCore(Unknown Source)
   at org.apache.derby.impl.sql.execute.JoinResultSet.openCore(Unknown Source)
   at org.apache.derby.impl.sql.execute.ProjectRestrictResultSet.openCore(Unknown Source)
   at org.apache.derby.impl.sql.execute.BasicNoPutResultSetImpl.open(Unknown Source)
   at org.apache.derby.impl.sql.GenericPreparedStatement.executeStmt(Unknown Source)
   at org.apache.derby.impl.sql.GenericPreparedStatement.execute(Unknown Source)
   ... 7 more
2012-02-29 19:20:37,236 INFO  [LibraryUpdatesCheckerThread] Finished looking for updates to currently shared files
2012-02-29 19:20:37,314 INFO  [FeedUpdaterThread] Finished looking for online resources information
2012-02-29 19:20:37,423 INFO  [PluginCompilerThread] Finished looking for plugins
2012-02-29 19:20:37,532 INFO  [EventSubscriptionExpirationChecker] Leaving EventSubscriptionExpirationChecker, removing all event subscriptions
2012-02-29 19:20:37,532 INFO  [EventDispatcher] Leaving EventDispatcher
2012-02-29 19:20:37,532 INFO  [DiscoveryAdvertisementNotifier] Leaving DiscoveryAdvertisementNotifier
2012-02-29 19:20:37,532 INFO  [WebServer] WebServer shutting down
2012-02-29 19:20:37,595 INFO  [DiscoverySSDPMessageListener] Leaving DiscoverySSDPMessageListener
2012-02-29 19:20:37,595 INFO  [DatabaseManager] Shutting down database
2012-02-29 19:20:37,735 INFO  [AbstractTranscodingDeliveryEngine] Cleaning transcode engine and its data
2012-02-29 19:20:38,219 INFO  [ServiioConsole] Leaving Serviio Console
2012-02-29 19:20:47,095 INFO  [MediaServer] ------------------------------------------------------------------------
2012-02-29 19:20:47,095 INFO  [MediaServer] Serviio DLNA media streaming server v 0.6.2 (rev. aec3abd196d6+)
2012-02-29 19:20:47,095 INFO  [MediaServer] Petr Nejedly 2009-2011
2012-02-29 19:20:47,095 INFO  [MediaServer] http://www.serviio.org
2012-02-29 19:20:47,095 INFO  [MediaServer]
2012-02-29 19:20:47,095 INFO  [MediaServer] Java 1.6.0_29-Sun Microsystems Inc.
2012-02-29 19:20:47,095 INFO  [MediaServer] OS Windows Server 2008 x86 6.0
2012-02-29 19:20:47,095 INFO  [MediaServer] File encoding: windows-1252
2012-02-29 19:20:47,095 INFO  [MediaServer] Headless mode enabled: true
2012-02-29 19:20:47,095 INFO  [MediaServer] User home dir: C:\
2012-02-29 19:20:47,095 INFO  [MediaServer] Temp dir: C:\Windows\TEMP\
2012-02-29 19:20:47,095 INFO  [MediaServer] ------------------------------------------------------------------------
2012-02-29 19:20:47,173 INFO  [RestletServer] Starting Restlet server exposed on port 23423
2012-02-29 19:20:47,204 INFO  [DBSchemaUpdateExecutor] Checking if DB schema needs to be updated
2012-02-29 19:20:48,031 INFO  [ProfilesDefinitionParser] Parsing Profiles definition
2012-02-29 19:20:48,343 INFO  [ProfilesDefinitionParser] Added profile 'Generic DLNA profile' (id=1)
2012-02-29 19:20:48,546 INFO  [ProfilesDefinitionParser] Added profile 'Samsung TV (B-series)' (id=2)
2012-02-29 19:20:48,671 INFO  [ProfilesDefinitionParser] Added profile 'Xbox 360' (id=3)
2012-02-29 19:20:48,858 INFO  [ProfilesDefinitionParser] Added profile 'Playstation 3' (id=4)
2012-02-29 19:20:48,952 INFO  [ProfilesDefinitionParser] Added profile 'Samsung TV (A-series)' (id=5)
2012-02-29 19:20:49,014 INFO  [ProfilesDefinitionParser] Added profile 'DirecTV HD-DVR' (id=6)
2012-02-29 19:20:49,326 INFO  [ProfilesDefinitionParser] Added profile 'Samsung TV / player (C/D-series)' (id=7)
2012-02-29 19:20:49,342 INFO  [ProfilesDefinitionParser] Added profile 'LG TV / player' (id=8)
2012-02-29 19:20:49,622 INFO  [ProfilesDefinitionParser] Added profile 'Sony Bravia TV (2011)' (id=9)
2012-02-29 19:20:50,059 INFO  [ProfilesDefinitionParser] Added profile 'Sony BD Player / SMP' (id=10)
2012-02-29 19:20:50,262 INFO  [ProfilesDefinitionParser] Added profile 'Panasonic Viera' (id=12)
2012-02-29 19:20:50,434 INFO  [ProfilesDefinitionParser] Added profile 'Toshiba REGZA' (id=13)
2012-02-29 19:20:50,558 INFO  [ProfilesDefinitionParser] Added profile 'WDTV Live' (id=14)
2012-02-29 19:20:50,574 INFO  [ProfilesDefinitionParser] Added profile 'LaCie LaCinema Media Player' (id=15)
2012-02-29 19:20:50,668 INFO  [ProfilesDefinitionParser] Added profile 'Manta WIFI Centre' (id=16)
2012-02-29 19:20:50,699 INFO  [ProfilesDefinitionParser] Added profile 'Pure Flow' (id=17)
2012-02-29 19:20:50,839 INFO  [ProfilesDefinitionParser] Added profile 'Sharp Aquos' (id=18)
2012-02-29 19:20:50,902 INFO  [ProfilesDefinitionParser] Added profile 'Sony Bravia TV (2010)' (id=19)
2012-02-29 19:20:51,073 INFO  [ProfilesDefinitionParser] Added profile 'Philips' (id=20)
2012-02-29 19:20:51,182 INFO  [ProfilesDefinitionParser] Added profile 'Sony Bravia TV (2009)' (id=21)
2012-02-29 19:20:51,354 INFO  [ProfilesDefinitionParser] Added profile 'Panasonic Viera (2009a)' (id=22)
2012-02-29 19:20:51,526 INFO  [ProfilesDefinitionParser] Added profile 'Panasonic Viera (2009b)' (id=23)
2012-02-29 19:20:51,697 INFO  [WebServer] Socket buffer set to 65535 bytes
2012-02-29 19:20:51,697 INFO  [Device] Created UPnP Device with UUID: eeb251f6-ddcc-353c-a76c-cdd9723f2f9d, bound address: 192.168.0.110
2012-02-29 19:20:51,713 INFO  [PluginCompilerThread] Looking for plugins at C:\Program Files\Serviio\bin\..\plugins
2012-02-29 19:20:51,713 INFO  [PluginCompilerThread] Started looking for plugins
2012-02-29 19:20:51,744 INFO  [AbstractTranscodingDeliveryEngine] Cleaning transcode engine and its data
2012-02-29 19:20:51,806 INFO  [EventSubscriptionExpirationChecker] Starting EventSubscriptionExpirationChecker
2012-02-29 19:20:51,806 INFO  [EventDispatcher] Starting EventDispatcher
2012-02-29 19:20:51,806 INFO  [DiscoveryAdvertisementNotifier] Starting DiscoveryAdvertisementNotifier
2012-02-29 19:20:51,806 INFO  [RendererSearchSender] Searching for Renderer devices
2012-02-29 19:20:51,806 INFO  [RendererExpirationChecker] Starting RendererExpirationChecker
2012-02-29 19:20:51,806 INFO  [WebServer] WebServer starting on port 8895
2012-02-29 19:20:51,822 INFO  [DiscoverySSDPMessageListener] Starting DiscoverySSDPMessageListener using interface eth3 (Intel(R) 82578DM Gigabit Network Connection) and address 192.168.0.110, timeout = 0
2012-02-29 19:20:55,472 INFO  [ServiioConsole] Starting Serviio Console
2012-02-29 19:20:55,535 INFO  [ServiioConsole] Connecting to Serviio REST on localhost:23423
2012-02-29 19:20:58,546 INFO  [Messages] Loaded console message bundle for locale: en
2012-02-29 19:20:58,655 INFO  [UpdateChecker] Checking if a new version is available
2012-02-29 19:21:00,168 INFO  [ContentDirectoryDefinitionParser] Parsing ContentDirectory definition
2012-02-29 19:21:00,496 INFO  [BrowsingCategoriesMessages] Loaded browsing categories message bundle for locale: en
2012-02-29 19:21:18,077 INFO  [LibraryAdditionsCheckerThread] Started looking for newly added files
2012-02-29 19:21:18,077 INFO  [LibraryUpdatesCheckerThread] Started looking for updates to currently shared files
2012-02-29 19:21:18,077 INFO  [FeedUpdaterThread] Started looking for information about online resources
2012-02-29 19:22:09,809 INFO  [DiscoveryAdvertisementNotifier] Leaving DiscoveryAdvertisementNotifier
2012-02-29 19:22:09,809 INFO  [WebServer] WebServer shutting down
2012-02-29 19:22:09,809 INFO  [EventDispatcher] Leaving EventDispatcher
2012-02-29 19:22:09,840 INFO  [EventSubscriptionExpirationChecker] Leaving EventSubscriptionExpirationChecker, removing all event subscriptions
2012-02-29 19:22:09,887 INFO  [DiscoverySSDPMessageListener] Leaving DiscoverySSDPMessageListener
2012-02-29 19:22:09,887 INFO  [WebServer] WebServer starting on port 8895
2012-02-29 19:22:09,887 INFO  [EventSubscriptionExpirationChecker] Starting EventSubscriptionExpirationChecker
2012-02-29 19:22:09,887 INFO  [RendererSearchSender] Searching for Renderer devices
2012-02-29 19:22:09,887 INFO  [DiscoveryAdvertisementNotifier] Starting DiscoveryAdvertisementNotifier
2012-02-29 19:22:09,887 INFO  [EventDispatcher] Starting EventDispatcher
2012-02-29 19:22:09,888 INFO  [DiscoverySSDPMessageListener] Starting DiscoverySSDPMessageListener using interface eth3 (Intel(R) 82578DM Gigabit Network Connection) and address 192.168.0.110, timeout = 0
2012-02-29 19:22:11,936 INFO  [RendererExpirationChecker] Leaving RendererExpirationChecker
2012-02-29 19:22:15,851 WARN  [IndexedDiskCache] Region [online_technical_metadata] Disk cache not shutdown properly, shutting down now.
2012-02-29 19:22:15,851 INFO  [LibraryAdditionsCheckerThread] Finished looking for newly added files
2012-02-29 19:22:15,851 WARN  [IndexedDiskCache] Region [thumbnails] Disk cache not shutdown properly, shutting down now.
2012-02-29 19:22:15,960 INFO  [LibraryUpdatesCheckerThread] Finished looking for updates to currently shared files
2012-02-29 19:22:16,070 INFO  [FeedUpdaterThread] Finished looking for online resources information
2012-02-29 19:22:16,179 INFO  [PluginCompilerThread] Finished looking for plugins
2012-02-29 19:22:16,288 INFO  [WebServer] WebServer shutting down
2012-02-29 19:22:16,288 INFO  [DiscoveryAdvertisementNotifier] Leaving DiscoveryAdvertisementNotifier
2012-02-29 19:22:16,288 INFO  [EventSubscriptionExpirationChecker] Leaving EventSubscriptionExpirationChecker, removing all event subscriptions
2012-02-29 19:22:16,288 INFO  [EventDispatcher] Leaving EventDispatcher
2012-02-29 19:22:16,350 INFO  [DiscoverySSDPMessageListener] Leaving DiscoverySSDPMessageListener
2012-02-29 19:22:16,366 INFO  [DatabaseManager] Shutting down database
2012-02-29 19:22:16,506 INFO  [AbstractTranscodingDeliveryEngine] Cleaning transcode engine and its data
2012-02-29 19:22:17,006 INFO  [ServiioConsole] Leaving Serviio Console
2012-02-29 19:22:26,615 INFO  [MediaServer] ------------------------------------------------------------------------
2012-02-29 19:22:26,615 INFO  [MediaServer] Serviio DLNA media streaming server v 0.6.2 (rev. aec3abd196d6+)
2012-02-29 19:22:26,615 INFO  [MediaServer] Petr Nejedly 2009-2011
2012-02-29 19:22:26,615 INFO  [MediaServer] http://www.serviio.org
2012-02-29 19:22:26,615 INFO  [MediaServer]
2012-02-29 19:22:26,615 INFO  [MediaServer] Java 1.6.0_29-Sun Microsystems Inc.
2012-02-29 19:22:26,615 INFO  [MediaServer] OS Windows Server 2008 x86 6.0
2012-02-29 19:22:26,615 INFO  [MediaServer] File encoding: windows-1252
2012-02-29 19:22:26,615 INFO  [MediaServer] Headless mode enabled: true
2012-02-29 19:22:26,615 INFO  [MediaServer] User home dir: C:\
2012-02-29 19:22:26,615 INFO  [MediaServer] Temp dir: C:\Windows\TEMP\
2012-02-29 19:22:26,615 INFO  [MediaServer] ------------------------------------------------------------------------
2012-02-29 19:22:26,693 INFO  [RestletServer] Starting Restlet server exposed on port 23423
2012-02-29 19:22:26,740 INFO  [DBSchemaUpdateExecutor] Checking if DB schema needs to be updated
2012-02-29 19:22:27,614 INFO  [ProfilesDefinitionParser] Parsing Profiles definition
2012-02-29 19:22:27,910 INFO  [ProfilesDefinitionParser] Added profile 'Generic DLNA profile' (id=1)
2012-02-29 19:22:28,113 INFO  [ProfilesDefinitionParser] Added profile 'Samsung TV (B-series)' (id=2)
2012-02-29 19:22:28,269 INFO  [ProfilesDefinitionParser] Added profile 'Xbox 360' (id=3)
2012-02-29 19:22:28,425 INFO  [ProfilesDefinitionParser] Added profile 'Playstation 3' (id=4)
2012-02-29 19:22:28,518 INFO  [ProfilesDefinitionParser] Added profile 'Samsung TV (A-series)' (id=5)
2012-02-29 19:22:28,581 INFO  [ProfilesDefinitionParser] Added profile 'DirecTV HD-DVR' (id=6)
2012-02-29 19:22:28,893 INFO  [ProfilesDefinitionParser] Added profile 'Samsung TV / player (C/D-series)' (id=7)
2012-02-29 19:22:28,924 INFO  [ProfilesDefinitionParser] Added profile 'LG TV / player' (id=8)
2012-02-29 19:22:29,205 INFO  [ProfilesDefinitionParser] Added profile 'Sony Bravia TV (2011)' (id=9)
2012-02-29 19:22:29,642 INFO  [ProfilesDefinitionParser] Added profile 'Sony BD Player / SMP' (id=10)
2012-02-29 19:22:29,844 INFO  [ProfilesDefinitionParser] Added profile 'Panasonic Viera' (id=12)
2012-02-29 19:22:30,032 INFO  [ProfilesDefinitionParser] Added profile 'Toshiba REGZA' (id=13)
2012-02-29 19:22:30,141 INFO  [ProfilesDefinitionParser] Added profile 'WDTV Live' (id=14)
2012-02-29 19:22:30,156 INFO  [ProfilesDefinitionParser] Added profile 'LaCie LaCinema Media Player' (id=15)
2012-02-29 19:22:30,250 INFO  [ProfilesDefinitionParser] Added profile 'Manta WIFI Centre' (id=16)
2012-02-29 19:22:30,281 INFO  [ProfilesDefinitionParser] Added profile 'Pure Flow' (id=17)
2012-02-29 19:22:30,422 INFO  [ProfilesDefinitionParser] Added profile 'Sharp Aquos' (id=18)
2012-02-29 19:22:30,500 INFO  [ProfilesDefinitionParser] Added profile 'Sony Bravia TV (2010)' (id=19)
2012-02-29 19:22:30,671 INFO  [ProfilesDefinitionParser] Added profile 'Philips' (id=20)
2012-02-29 19:22:30,780 INFO  [ProfilesDefinitionParser] Added profile 'Sony Bravia TV (2009)' (id=21)
2012-02-29 19:22:30,952 INFO  [ProfilesDefinitionParser] Added profile 'Panasonic Viera (2009a)' (id=22)
2012-02-29 19:22:31,139 INFO  [ProfilesDefinitionParser] Added profile 'Panasonic Viera (2009b)' (id=23)
2012-02-29 19:22:31,295 INFO  [WebServer] Socket buffer set to 65535 bytes
2012-02-29 19:22:31,295 INFO  [Device] Created UPnP Device with UUID: eeb251f6-ddcc-353c-a76c-cdd9723f2f9d, bound address: 192.168.0.110
2012-02-29 19:22:31,311 INFO  [PluginCompilerThread] Looking for plugins at C:\Program Files\Serviio\bin\..\plugins
2012-02-29 19:22:31,326 INFO  [PluginCompilerThread] Started looking for plugins
2012-02-29 19:22:31,342 INFO  [AbstractTranscodingDeliveryEngine] Cleaning transcode engine and its data
2012-02-29 19:22:31,404 INFO  [EventSubscriptionExpirationChecker] Starting EventSubscriptionExpirationChecker
2012-02-29 19:22:31,404 INFO  [WebServer] WebServer starting on port 8895
2012-02-29 19:22:31,404 INFO  [EventDispatcher] Starting EventDispatcher
2012-02-29 19:22:31,404 INFO  [DiscoveryAdvertisementNotifier] Starting DiscoveryAdvertisementNotifier
2012-02-29 19:22:31,404 INFO  [RendererSearchSender] Searching for Renderer devices
2012-02-29 19:22:31,404 INFO  [RendererExpirationChecker] Starting RendererExpirationChecker
2012-02-29 19:22:31,405 INFO  [DiscoverySSDPMessageListener] Starting DiscoverySSDPMessageListener using interface eth3 (Intel(R) 82578DM Gigabit Network Connection) and address 192.168.0.110, timeout = 0
2012-02-29 19:22:32,105 INFO  [ServiioConsole] Starting Serviio Console
2012-02-29 19:22:32,168 INFO  [ServiioConsole] Connecting to Serviio REST on localhost:23423
2012-02-29 19:22:37,799 INFO  [Messages] Loaded console message bundle for locale: en
2012-02-29 19:22:37,908 INFO  [UpdateChecker] Checking if a new version is available
2012-02-29 19:22:39,328 INFO  [ContentDirectoryDefinitionParser] Parsing ContentDirectory definition
2012-02-29 19:22:39,593 INFO  [BrowsingCategoriesMessages] Loaded browsing categories message bundle for locale: en
2012-02-29 19:22:57,538 INFO  [LibraryAdditionsCheckerThread] Started looking for newly added files
2012-02-29 19:22:57,538 INFO  [LibraryUpdatesCheckerThread] Started looking for updates to currently shared files
2012-02-29 19:22:57,538 INFO  [FeedUpdaterThread] Started looking for information about online resources
2012-02-29 19:23:06,841 INFO  [WebServer] WebServer shutting down
2012-02-29 19:23:06,841 INFO  [DiscoveryAdvertisementNotifier] Leaving DiscoveryAdvertisementNotifier
2012-02-29 19:23:06,841 INFO  [EventDispatcher] Leaving EventDispatcher
2012-02-29 19:23:06,872 INFO  [EventSubscriptionExpirationChecker] Leaving EventSubscriptionExpirationChecker, removing all event subscriptions
2012-02-29 19:23:06,950 INFO  [DiscoverySSDPMessageListener] Leaving DiscoverySSDPMessageListener
2012-02-29 19:23:06,950 INFO  [WebServer] WebServer starting on port 8895
2012-02-29 19:23:06,950 INFO  [EventSubscriptionExpirationChecker] Starting EventSubscriptionExpirationChecker
2012-02-29 19:23:06,950 INFO  [RendererSearchSender] Searching for Renderer devices
2012-02-29 19:23:06,950 INFO  [DiscoveryAdvertisementNotifier] Starting DiscoveryAdvertisementNotifier
2012-02-29 19:23:06,950 INFO  [EventDispatcher] Starting EventDispatcher
2012-02-29 19:23:06,953 INFO  [DiscoverySSDPMessageListener] Starting DiscoverySSDPMessageListener using interface eth3 (Intel(R) 82578DM Gigabit Network Connection) and address 192.168.0.110, timeout = 0
2012-02-29 19:23:11,431 INFO  [RendererExpirationChecker] Leaving RendererExpirationChecker
2012-02-29 19:23:12,133 WARN  [IndexedDiskCache] Region [online_technical_metadata] Disk cache not shutdown properly, shutting down now.
2012-02-29 19:23:12,133 WARN  [IndexedDiskCache] Region [thumbnails] Disk cache not shutdown properly, shutting down now.
2012-02-29 19:23:12,149 INFO  [LibraryAdditionsCheckerThread] Finished looking for newly added files
2012-02-29 19:23:12,243 INFO  [LibraryUpdatesCheckerThread] Finished looking for updates to currently shared files
2012-02-29 19:23:12,352 INFO  [FeedUpdaterThread] Finished looking for online resources information
2012-02-29 19:23:12,461 INFO  [PluginCompilerThread] Finished looking for plugins
2012-02-29 19:23:12,570 INFO  [WebServer] WebServer shutting down
2012-02-29 19:23:12,586 INFO  [DiscoveryAdvertisementNotifier] Leaving DiscoveryAdvertisementNotifier
2012-02-29 19:23:12,586 INFO  [EventDispatcher] Leaving EventDispatcher
2012-02-29 19:23:12,586 INFO  [EventSubscriptionExpirationChecker] Leaving EventSubscriptionExpirationChecker, removing all event subscriptions
2012-02-29 19:23:12,648 INFO  [DiscoverySSDPMessageListener] Leaving DiscoverySSDPMessageListener
2012-02-29 19:23:12,648 INFO  [DatabaseManager] Shutting down database
2012-02-29 19:23:12,820 INFO  [AbstractTranscodingDeliveryEngine] Cleaning transcode engine and its data
2012-02-29 19:23:13,303 INFO  [ServiioConsole] Leaving Serviio Console
2012-02-29 19:23:21,291 INFO  [MediaServer] ------------------------------------------------------------------------
2012-02-29 19:23:21,291 INFO  [MediaServer] Serviio DLNA media streaming server v 0.6.2 (rev. aec3abd196d6+)
2012-02-29 19:23:21,291 INFO  [MediaServer] Petr Nejedly 2009-2011
2012-02-29 19:23:21,291 INFO  [MediaServer] http://www.serviio.org
2012-02-29 19:23:21,291 INFO  [MediaServer]
2012-02-29 19:23:21,291 INFO  [MediaServer] Java 1.6.0_29-Sun Microsystems Inc.
2012-02-29 19:23:21,291 INFO  [MediaServer] OS Windows Server 2008 x86 6.0
2012-02-29 19:23:21,291 INFO  [MediaServer] File encoding: windows-1252
2012-02-29 19:23:21,291 INFO  [MediaServer] Headless mode enabled: true
2012-02-29 19:23:21,291 INFO  [MediaServer] User home dir: C:\
2012-02-29 19:23:21,291 INFO  [MediaServer] Temp dir: C:\Windows\TEMP\
2012-02-29 19:23:21,291 INFO  [MediaServer] ------------------------------------------------------------------------
2012-02-29 19:23:21,384 INFO  [RestletServer] Starting Restlet server exposed on port 23423
2012-02-29 19:23:21,415 INFO  [DBSchemaUpdateExecutor] Checking if DB schema needs to be updated
2012-02-29 19:23:22,289 INFO  [ProfilesDefinitionParser] Parsing Profiles definition
2012-02-29 19:23:22,601 INFO  [ProfilesDefinitionParser] Added profile 'Generic DLNA profile' (id=1)
2012-02-29 19:23:22,788 INFO  [ProfilesDefinitionParser] Added profile 'Samsung TV (B-series)' (id=2)
2012-02-29 19:23:22,929 INFO  [ProfilesDefinitionParser] Added profile 'Xbox 360' (id=3)
2012-02-29 19:23:23,069 INFO  [ProfilesDefinitionParser] Added profile 'Playstation 3' (id=4)
2012-02-29 19:23:23,163 INFO  [ProfilesDefinitionParser] Added profile 'Samsung TV (A-series)' (id=5)
2012-02-29 19:23:23,225 INFO  [ProfilesDefinitionParser] Added profile 'DirecTV HD-DVR' (id=6)
2012-02-29 19:23:23,553 INFO  [ProfilesDefinitionParser] Added profile 'Samsung TV / player (C/D-series)' (id=7)
2012-02-29 19:23:23,568 INFO  [ProfilesDefinitionParser] Added profile 'LG TV / player' (id=8)
2012-02-29 19:23:23,849 INFO  [ProfilesDefinitionParser] Added profile 'Sony Bravia TV (2011)' (id=9)
2012-02-29 19:23:24,286 INFO  [ProfilesDefinitionParser] Added profile 'Sony BD Player / SMP' (id=10)
2012-02-29 19:23:24,473 INFO  [ProfilesDefinitionParser] Added profile 'Panasonic Viera' (id=12)
2012-02-29 19:23:24,660 INFO  [ProfilesDefinitionParser] Added profile 'Toshiba REGZA' (id=13)
2012-02-29 19:23:24,769 INFO  [ProfilesDefinitionParser] Added profile 'WDTV Live' (id=14)
2012-02-29 19:23:24,785 INFO  [ProfilesDefinitionParser] Added profile 'LaCie LaCinema Media Player' (id=15)
2012-02-29 19:23:24,879 INFO  [ProfilesDefinitionParser] Added profile 'Manta WIFI Centre' (id=16)
2012-02-29 19:23:24,910 INFO  [ProfilesDefinitionParser] Added profile 'Pure Flow' (id=17)
2012-02-29 19:23:25,050 INFO  [ProfilesDefinitionParser] Added profile 'Sharp Aquos' (id=18)
2012-02-29 19:23:25,113 INFO  [ProfilesDefinitionParser] Added profile 'Sony Bravia TV (2010)' (id=19)
2012-02-29 19:23:25,284 INFO  [ProfilesDefinitionParser] Added profile 'Philips' (id=20)
2012-02-29 19:23:25,393 INFO  [ProfilesDefinitionParser] Added profile 'Sony Bravia TV (2009)' (id=21)
2012-02-29 19:23:25,565 INFO  [ProfilesDefinitionParser] Added profile 'Panasonic Viera (2009a)' (id=22)
2012-02-29 19:23:25,737 INFO  [ProfilesDefinitionParser] Added profile 'Panasonic Viera (2009b)' (id=23)
2012-02-29 19:23:25,908 INFO  [WebServer] Socket buffer set to 65535 bytes
2012-02-29 19:23:25,908 INFO  [Device] Created UPnP Device with UUID: eeb251f6-ddcc-353c-a76c-cdd9723f2f9d, bound address: 192.168.0.110
2012-02-29 19:23:25,924 INFO  [PluginCompilerThread] Looking for plugins at C:\Program Files\Serviio\bin\..\plugins
2012-02-29 19:23:25,924 INFO  [PluginCompilerThread] Started looking for plugins
2012-02-29 19:23:25,955 INFO  [AbstractTranscodingDeliveryEngine] Cleaning transcode engine and its data
2012-02-29 19:23:26,017 INFO  [WebServer] WebServer starting on port 8895
2012-02-29 19:23:26,017 INFO  [EventSubscriptionExpirationChecker] Starting EventSubscriptionExpirationChecker
2012-02-29 19:23:26,017 INFO  [EventDispatcher] Starting EventDispatcher
2012-02-29 19:23:26,017 INFO  [DiscoveryAdvertisementNotifier] Starting DiscoveryAdvertisementNotifier
2012-02-29 19:23:26,017 INFO  [RendererSearchSender] Searching for Renderer devices
2012-02-29 19:23:26,017 INFO  [RendererExpirationChecker] Starting RendererExpirationChecker
2012-02-29 19:23:26,018 INFO  [DiscoverySSDPMessageListener] Starting DiscoverySSDPMessageListener using interface eth3 (Intel(R) 82578DM Gigabit Network Connection) and address 192.168.0.110, timeout = 0
2012-02-29 19:23:29,264 INFO  [ServiioConsole] Starting Serviio Console
2012-02-29 19:23:29,327 INFO  [ServiioConsole] Connecting to Serviio REST on localhost:23423
2012-02-29 19:23:32,337 INFO  [Messages] Loaded console message bundle for locale: en
2012-02-29 19:23:32,447 INFO  [UpdateChecker] Checking if a new version is available
2012-02-29 19:23:34,053 INFO  [ContentDirectoryDefinitionParser] Parsing ContentDirectory definition
2012-02-29 19:23:34,303 INFO  [BrowsingCategoriesMessages] Loaded browsing categories message bundle for locale: en
2012-02-29 19:23:52,232 INFO  [FeedUpdaterThread] Started looking for information about online resources
2012-02-29 19:23:52,233 INFO  [LibraryAdditionsCheckerThread] Started looking for newly added files
2012-02-29 19:23:52,234 INFO  [LibraryUpdatesCheckerThread] Started looking for updates to currently shared files


Looking back earlier in the logs, I can see where Serviio loads the profiles, where it adds and removed files from the library, but it doesn't say anything about media playback, successful or otherwise, but I don't know if it should. Rechecking the Philips profile, that does still show mp4 video with no audio.
<<

Cerberus

User avatar

DLNA master

Posts: 4114

Joined: Sun Jan 02, 2011 5:20 pm

Location: Reading, UK

Post Wed Feb 29, 2012 9:01 pm

Re: MP4s and Panny V10

i really dont know that makes no sense at all, will have to have a look next time im off as im working next 4 days.
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
<<

enigmo

Serviio newbie

Posts: 11

Joined: Thu Feb 23, 2012 2:48 pm

Post Wed Feb 29, 2012 9:13 pm

Re: MP4s and Panny V10

Not a problem. Thanks loads for having a look anyway, and in the meantime I'll continue experimenting and if I come up with anything positive (or broken but in a new and interesting way) I'll post back :)
<<

Moickle

Serviio newbie

Posts: 1

Joined: Wed Mar 28, 2012 7:34 pm

Post Wed Mar 28, 2012 7:55 pm

Re: MP4s and Panny V10

Hello, I also have a Panasonic V10 and also can't get the renderer to work properly. Aside from that, it works just great with the normally supported Panasonic formats. Please could you help me find an answer?

Awesome job on the software BTW!
<<

enigmo

Serviio newbie

Posts: 11

Joined: Thu Feb 23, 2012 2:48 pm

Post Sat Mar 31, 2012 12:53 pm

Re: MP4s and Panny V10

I'm still fiddling with mine. At the moment I've fallen back on my old PVR box while I get this sorted and to tide over as I'm busy with work and studying at the moment, but if I come up with anything workable I'll be dropping it back here.
On a related note, Panasonic have said they will absolutely not be updating the codecs of the V10 tellys, and any future firmware updates will simply be interactive or stability updates. I gave their customer svscs dept a bit of a mild bollocking over not even supporting MP3, which was a format 10 years mature before our TVs were even released, but besides an apology there doesn't look like anything Panasonic will help us with.

Return to Panasonic

Who is online

Users browsing this forum: No registered users and 8 guests

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