FAQ  •  Register  •  Login

Sony Bravia 2010 series

<<

Illico

User avatar

DLNA master

Posts: 4646

Joined: Fri Jul 23, 2010 8:08 am

Location: France

Post Tue Jul 27, 2010 6:59 pm

Re: [Profile] Sony Bravia 2010 series (EX4, EX5, EX6, EX7, HX7)

Test continue....

I downloaded the sample of PaulBravia link and rename us, and share in C:\Sample local folder:
http://www.nextcomwireless.com/R5000/samples.htm
hbo_dtc_sd_MPEGTS-MPEG2-480x480-29.97fps-MP1L2-192Kbps-48KHz-Stereo.ts
hbo_trailer_6k_MPEGTS-MPEG2-1920x1080-29.97fps-AC3-384Kbps-48KHz-Stereo.ts
hbo_trailer_6ksd_MPEGTS-MPEG2-544x480-29.97fps-MP1L2-192Kbps-48KHz-Stereo.ts
hbo_trailer_dtc_MPEGTS-MPEG2-1280x1088-29.97fps-AC3-384Kbps-48KHz-Stereo.ts


I change Profile.xml like this for the test:
  Code:
   <Profile id="9" name="Sony Bravia TV" extendsProfileId="1">
      <Detection>
         <X-AV-Client-Info>BRAVIA.*</X-AV-Client-Info>
      </Detection>
      <MediaFormatProfiles>
         <MediaFormatProfile mime-type="video/mpeg" name="MPEG_TS_SD_EU_ISO">MPEG_TS_SD_EU</MediaFormatProfile>
      </MediaFormatProfiles>
</Profile>


All files appears on Serviio/Video/Folders/Sample menu with thumbnail and that steam without transcode!! great.
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
<<

zip

User avatar

Serviio developer / Site Admin

Posts: 17212

Joined: Sat Oct 24, 2009 12:24 pm

Location: London, UK

Post Tue Jul 27, 2010 7:21 pm

Re: [Profile] Sony Bravia 2010 series (EX4, EX5, EX6, EX7, HX7)

Hmm, interesting. Looks like mepgts has different mime type than it claims it supports... Maybe you don't even need the "name" attribute. You should do this for all mpegts formats (having mime type of video/vnd.dlna.mpeg-tts and change it to video/mpeg).

like:
  Code:
<MediaFormatProfiles>
 <MediaFormatProfile mime-type="video/mpeg">MPEG_TS_SD_EU</MediaFormatProfile>
 <MediaFormatProfile mime-type="video/mpeg">AVC_TS_MP_SD_AAC_MULT5</MediaFormatProfile>
 <MediaFormatProfile mime-type="video/mpeg">AVC_TS_MP_SD_MPEG1_L3</MediaFormatProfile>
 <MediaFormatProfile mime-type="video/mpeg">AVC_TS_MP_SD_AC3</MediaFormatProfile>
 <MediaFormatProfile mime-type="video/mpeg">AVC_TS_MP_HD_AAC_MULT5</MediaFormatProfile>
 <MediaFormatProfile mime-type="video/mpeg">AVC_TS_MP_HD_MPEG1_L3</MediaFormatProfile>
<!-- these are added in 0.4.2
 <MediaFormatProfile mime-type="video/mpeg">AVC_TS_MP_HD_AC3</MediaFormatProfile>
 <MediaFormatProfile mime-type="video/mpeg">AVC_TS_HD_50_LPCM_T</MediaFormatProfile> -->
</MediaFormatProfiles>
<<

Illico

User avatar

DLNA master

Posts: 4646

Joined: Fri Jul 23, 2010 8:08 am

Location: France

Post Tue Jul 27, 2010 7:27 pm

Re: [Profile] Sony Bravia 2010 series (EX4, EX5, EX6, EX7, HX7)

con't...

Test with following sample file:
Sample-BDAV-AVC-HL4.0-1280x720-25fps-AC3-192Kbps-48KHz-Stereo.m2ts

with following Profile.xml:
  Code:
   <Profile id="9" name="Sony Bravia TV" extendsProfileId="1">
      <Detection>
         <X-AV-Client-Info>BRAVIA.*</X-AV-Client-Info>
      </Detection>
      <MediaFormatProfiles>
         <MediaFormatProfile mime-type="video/mpeg" name="MPEG_TS_SD_EU_ISO">MPEG_TS_SD_EU</MediaFormatProfile>
         <MediaFormatProfile mime-type="video/vnd.dlna.mpeg-tts" name="AVC_TS_HD_24_AC3">AVC_TS_MP_HD_AC3</MediaFormatProfile>
      </MediaFormatProfiles>
   </Profile>


Another Sample file appears on menu without thumbnail and NOT work
Sample-MPEGTS-AVC-ML4.0-1920x1088-29.97fps-AC3-384Kbps-48KHz-Stereo.ts

That works
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
<<

Illico

User avatar

DLNA master

Posts: 4646

Joined: Fri Jul 23, 2010 8:08 am

Location: France

Post Tue Jul 27, 2010 7:34 pm

Re: [Profile] Sony Bravia 2010 series (EX4, EX5, EX6, EX7, HX7)

zip wrote:Hmm, interesting. Looks like mepgts has different mime type than it claims it supports... Maybe you don't even need the "name" attribute. You should do this for all mpegts formats (having mime type of video/vnd.dlna.mpeg-tts and change it to video/mpeg).[/code]


I'm not sure to understand!!

So,I try with following Profile.xml:
  Code:
   <Profile id="9" name="Sony Bravia TV" extendsProfileId="1">
      <Detection>
         <X-AV-Client-Info>BRAVIA.*</X-AV-Client-Info>
      </Detection>
         <MediaFormatProfiles>
            <MediaFormatProfile mime-type="video/mpeg">MPEG_TS_SD_EU</MediaFormatProfile>
            <MediaFormatProfile mime-type="video/mpeg">AVC_TS_MP_SD_AAC_MULT5</MediaFormatProfile>
            <MediaFormatProfile mime-type="video/mpeg">AVC_TS_MP_SD_MPEG1_L3</MediaFormatProfile>
            <MediaFormatProfile mime-type="video/mpeg">AVC_TS_MP_SD_AC3</MediaFormatProfile>
            <MediaFormatProfile mime-type="video/mpeg">AVC_TS_MP_HD_AAC_MULT5</MediaFormatProfile>
            <MediaFormatProfile mime-type="video/mpeg">AVC_TS_MP_HD_MPEG1_L3</MediaFormatProfile>
            <!-- these are added in 0.4.2
            <MediaFormatProfile mime-type="video/mpeg">AVC_TS_MP_HD_AC3</MediaFormatProfile>
            <MediaFormatProfile mime-type="video/mpeg">AVC_TS_HD_50_LPCM_T</MediaFormatProfile> -->
         </MediaFormatProfiles>
   </Profile>

These previous files appears on Serviio/Video/Folders/Sample with thumbnail but NOT work.
hbo_dtc_sd_MPEGTS-MPEG2-480x480-29.97fps-MP1L2-192Kbps-48KHz-Stereo.ts
hbo_trailer_6k_MPEGTS-MPEG2-1920x1080-29.97fps-AC3-384Kbps-48KHz-Stereo.ts
hbo_trailer_6ksd_MPEGTS-MPEG2-544x480-29.97fps-MP1L2-192Kbps-48KHz-Stereo.ts
hbo_trailer_dtc_MPEGTS-MPEG2-1280x1088-29.97fps-AC3-384Kbps-48KHz-Stereo.ts
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
<<

zip

User avatar

Serviio developer / Site Admin

Posts: 17212

Joined: Sat Oct 24, 2009 12:24 pm

Location: London, UK

Post Tue Jul 27, 2010 8:03 pm

Re: [Profile] Sony Bravia 2010 series (EX4, EX5, EX6, EX7, HX7)

Hmm, ok, so maybe it needs the proper DLNA profile name, try this:

  Code:
   <Profile id="9" name="Sony Bravia TV" extendsProfileId="1">
      <Detection>
         <X-AV-Client-Info>BRAVIA.*</X-AV-Client-Info>
      </Detection>
         <MediaFormatProfiles>
            <MediaFormatProfile mime-type="video/mpeg">MPEG_TS_SD_EU</MediaFormatProfile>
            <MediaFormatProfile mime-type="video/mpeg" name="AVC_TS_JP_AAC_T">AVC_TS_MP_SD_AAC_MULT5</MediaFormatProfile>
            <MediaFormatProfile mime-type="video/mpeg" name="MPEG_TS_SD_EU">AVC_TS_MP_SD_MPEG1_L3</MediaFormatProfile>
            <MediaFormatProfile mime-type="video/mpeg" name="MPEG_TS_SD_EU">AVC_TS_MP_SD_AC3</MediaFormatProfile>
            <MediaFormatProfile mime-type="video/mpeg" name="AVC_TS_HD_EU">AVC_TS_MP_HD_AAC_MULT5</MediaFormatProfile>
            <MediaFormatProfile mime-type="video/mpeg" name="AVC_TS_HD_EU">AVC_TS_MP_HD_MPEG1_L3</MediaFormatProfile>
            <!-- these are added in 0.4.2
            <MediaFormatProfile mime-type="video/mpeg" name="AVC_TS_HD_50_AC3">AVC_TS_MP_HD_AC3</MediaFormatProfile>
            <MediaFormatProfile mime-type="video/mpeg" name="AVC_TS_HD_EU">AVC_TS_HD_50_LPCM_T</MediaFormatProfile> -->
         </MediaFormatProfiles>
   </Profile>
<<

Illico

User avatar

DLNA master

Posts: 4646

Joined: Fri Jul 23, 2010 8:08 am

Location: France

Post Tue Jul 27, 2010 8:09 pm

Re: [Profile] Sony Bravia 2010 series (EX4, EX5, EX6, EX7, HX7)

zip wrote:Hmm, ok, so maybe it needs the proper DLNA profile name, try this:


Sorry but nothing run,
now the only profile that works is viewtopic.php?f=5&t=425&start=20#p2441
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
<<

zip

User avatar

Serviio developer / Site Admin

Posts: 17212

Joined: Sat Oct 24, 2009 12:24 pm

Location: London, UK

Post Tue Jul 27, 2010 8:40 pm

Re: [Profile] Sony Bravia 2010 series (EX4, EX5, EX6, EX7, HX7)

Well these are all the profiles that Serviio supports (mpegts) that you need to get working, I think their names are quite descriptive, so you'll have to try until it works.
<<

Illico

User avatar

DLNA master

Posts: 4646

Joined: Fri Jul 23, 2010 8:08 am

Location: France

Post Tue Jul 27, 2010 8:54 pm

Re: [Profile] Sony Bravia 2010 series (EX4, EX5, EX6, EX7, HX7)

Thx

I updated the first post with "Profile.xml" for tonight, I'will continue another day...
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
<<

PaulBravia

Streaming enthusiast

Posts: 20

Joined: Sat Jul 24, 2010 2:13 am

Post Tue Jul 27, 2010 11:11 pm

Re: [Profile] Sony Bravia 2010 series (EX4, EX5, EX6, EX7, HX7)

Hmm, ok, so maybe it needs the proper DLNA profile name, try this:


I tested on my KDL-40WE5 get the icon but when select on TV get "Playback not Available"

  Code:
 <Profile id="9" name="Sony Bravia TV" extendsProfileId="1">
           
            <Detection>
                <X-AV-Client-Info>BRAVIA.*</X-AV-Client-Info>
            </Detection>

            <MediaFormatProfiles>
               <MediaFormatProfile mime-type="video/mpeg" name="MPEG_TS_SD_EU_ISO">MPEG_TS_SD_EU</MediaFormatProfile>
               <MediaFormatProfile mime-type="video/vnd.dlna.mpeg-tts" name="AVC_TS_HD_24_AC3">AVC_TS_MP_HD_AC3</MediaFormatProfile>
            </MediaFormatProfiles>

            <Transcoding>

                <Video targetContainer="mpeg" targetVCodec="mpeg2video" targetACodec="ac3">
                   <Matches container="asf" />
                   <Matches container="avi" />
                   <Matches container="matroska" />
                   <Matches container="mp4" />                                                   
                </Video>

            </Transcoding>

         </Profile>

Best Profile so far, using Illico's MediaFormatProfile and removing <Matches container="mpegts" /> for no transcoding of MPEG-TS.

Looking at the sink file for 40EW5, there is mention of 50 and 60. Being from downunder we are PAL 50hz while the test samples are from HBO channel in USA being NTSC 60hz. Does this have to be catered for also in MediaFormatProfiles?

Cheers
Paul Bravia
<<

Illico

User avatar

DLNA master

Posts: 4646

Joined: Fri Jul 23, 2010 8:08 am

Location: France

Post Wed Jul 28, 2010 8:52 pm

Re: [Profile] Sony Bravia 2010 series (EX4, EX5, EX6, EX7, HX7)

  Code:
   <Profile id="9" name="Sony Bravia TV" extendsProfileId="1">
      <Detection>
         <X-AV-Client-Info>.*BRAVIA.*</X-AV-Client-Info>
      </Detection>
      <MediaFormatProfiles>
         <MediaFormatProfile mime-type="video/mpeg" name="MPEG_TS_SD_EU_ISO">MPEG_TS_SD_EU</MediaFormatProfile>
         <!-- <MediaFormatProfile mime-type="video/mpeg" name="AVC_TS_HD_EU_ISO">AVC_TS_MP_HD_AC3</MediaFormatProfile> -->
         <MediaFormatProfile mime-type="video/vnd.dlna.mpeg-tts" name="AVC_TS_HD_EU">AVC_TS_MP_HD_AC3</MediaFormatProfile>
      </MediaFormatProfiles>
      <Transcoding>
         <!-- Parser takes the first match, in the order specifed in this profile. -->
         <!-- First remux all h264 video on MPEG-TS stream with ac3 audio transcoding, expected profile AVC_TS_MP_HD_AC3 -->
         <Video targetContainer="mpegts" targetACodec="ac3">
            <Matches container="avi" vCodec="h264" />
            <Matches container="mp4" vCodec="h264" />
            <Matches container="matroska" vCodec="h264" />
            <Matches container="mpegts" aCodec="aac" /> <!-- if audio different to ac3, must be transcoded -->
            <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. -->
         <Video targetContainer="mpegts" targetVCodec="mpeg2video" targetACodec="ac3">
            <Matches container="asf" />
            <Matches container="avi" />
            <Matches container="mp4" />
            <Matches container="matroska" />
         </Video>
      </Transcoding>
      <AutomaticImageRotation>true</AutomaticImageRotation>
   </Profile>

I don't know why, I had to change/toogle between two MediaFormatProfile to work?:! I don't know what are the differences...
<MediaFormatProfile mime-type="video/mpeg" name="AVC_TS_HD_EU_ISO">AVC_TS_MP_HD_AC3</MediaFormatProfile>
<MediaFormatProfile mime-type="video/vnd.dlna.mpeg-tts" name="AVC_TS_HD_EU">AVC_TS_MP_HD_AC3</MediaFormatProfile>


Well, all is great with this profile, the following files format were supported and tested
- AVI with VC1/MPEG4Xvid/MPEG4Divx5 video and MP3/AAC audio
- BDAV with AVC and AC3
- DIVX with MPEG4Divx5 and MP3
- MKV with AVC / MPEG4Divx5 and AAC/AC3
- MP4 with AVC / MPEG4 and AAC
- MPEG-TS with MPEG2 / and MP1L2 / AC3
- MPEG-PS with MPEG1 video and MP1L2 audio

One MOV file failed du to ffmpeg not supported transcode MPEG2 with 10fps of the sample file
One MP4 file failed due to ffmpeg not supported transcode MPEG2 with 15fps of the sample file
One MPEGTS failed due to ffmpeg not supported a non monotone timestamp of the sample file
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
<<

zip

User avatar

Serviio developer / Site Admin

Posts: 17212

Joined: Sat Oct 24, 2009 12:24 pm

Location: London, UK

Post Wed Jul 28, 2010 9:00 pm

Re: [Profile] Sony Bravia 2010 series (EX4, EX5, EX6, EX7, HX7)

Great stuff.
<<

Illico

User avatar

DLNA master

Posts: 4646

Joined: Fri Jul 23, 2010 8:08 am

Location: France

Post Wed Jul 28, 2010 9:09 pm

Re: [Profile] Sony Bravia 2010 series (EX4, EX5, EX6, EX7, HX7)

THX,
I could not complete verification because, I create "C:\Sample" with some different format (with limited size...) but I have another External-Network Hard Disk I can't share, nothing added to the database? :cry:
:arrow: viewtopic.php?f=5&t=433&start=0
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
<<

PaulBravia

Streaming enthusiast

Posts: 20

Joined: Sat Jul 24, 2010 2:13 am

Post Thu Jul 29, 2010 6:32 am

Re: [Profile] Sony Bravia 2010 series (EX4, EX5, EX6, EX7, HX7)

Hi Ilico
Does the Iron Man 2 Trailer 'Iron_Man_2-DivXPlusHD.mkv' icon appear on Serviio with your new sony bravia profile and play?

This file can be downloaded from http://www.divx.com/en/electronics/solu ... s-hd/video

Cheers,
Paul
<<

Illico

User avatar

DLNA master

Posts: 4646

Joined: Fri Jul 23, 2010 8:08 am

Location: France

Post Thu Jul 29, 2010 7:18 am

Re: [Profile] Sony Bravia 2010 series (EX4, EX5, EX6, EX7, HX7)

Yes, this is one file of my - MKV with AVC/AAC - samples.
Maches with:
<Matches container="matroska" vCodec="h264" />
And remux on
<Video targetContainer="mpegts" targetACodec="ac3">
Video copy, Audio transcode to ac3 and AVC_TS_MP_HD_AC3 profile used.

Nevertheless, as indicated higher, it is necessary to modify/toggle profiles between mime-type="video/vnd.dlna.mpeg-tts" or mime-type="video/mpeg" sometime to run, I have to investigate.
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
<<

Illico

User avatar

DLNA master

Posts: 4646

Joined: Fri Jul 23, 2010 8:08 am

Location: France

Post Thu Jul 29, 2010 1:30 pm

Re: [Profile] Sony Bravia 2010 series (EX4, EX5, EX6, EX7, HX7)

...Looking at the sink file for 40EW5, there is mention of 50 and 60. Being from downunder we are PAL 50hz while the test samples are from HBO channel in USA being NTSC 60hz. Does this have to be catered for also in MediaFormatProfiles?...

I really have difficulty in understanding how work profile and mime/type.

For example what's the difference between following profiles found in WE5 sink :

video/vnd.dlna.mpeg-tts DLNA.ORG_PN=AVC_TS_HD_24_AC3
video/mpeg DLNA.ORG_PN=AVC_TS_HD_24_AC3_ISO

or between:

video/vnd.dlna.mpeg-tts DLNA.ORG_PN=AVC_TS_HD_60_AC3
video/vnd.dlna.mpeg-tts DLNA.ORG_PN=AVC_TS_HD_60_AC3_T
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
<<

zip

User avatar

Serviio developer / Site Admin

Posts: 17212

Joined: Sat Oct 24, 2009 12:24 pm

Location: London, UK

Post Thu Jul 29, 2010 1:39 pm

Re: [Profile] Sony Bravia 2010 series (EX4, EX5, EX6, EX7, HX7)

Those ending with _ISO should use "video/mpeg" the other ones (without suffix and _T) should have "video/vnd.dlna.mpeg-tts".

From DLNA spec:
MPEG2TS can have 3 DLNA Transport Packets. These consist of a 188-byte ISO MPEG2 TS packet, a 192-byte packet consisting of a 188-byte ISO MPEG2 TS packet preceded by a 4-byte timestamp zero-value timestamp field, and a 192-byte packet consisting of a 188-byte ISO MPEG2 TS packet preceded by a 4-byte valid timestamp.


At the moment Serviio doesn't distinguish between them and serves them using the profiles provided above.

It looks like the TV is sensitive to it. It might be that the profile name is really not too important as long as the mime type is correct. Can you post ffmpeg -i on two files, one that works with video/mpeg and one that wotks with video/vnd.dlna.mpeg-tts?
<<

Illico

User avatar

DLNA master

Posts: 4646

Joined: Fri Jul 23, 2010 8:08 am

Location: France

Post Thu Jul 29, 2010 3:25 pm

Re: [Profile] Sony Bravia 2010 series (EX4, EX5, EX6, EX7, HX7)

hum, do you have an idea for the latest http-get line of the EX500 sink file (see first post of the topic), what this?
http-get:*:video/x-mp2t-mphl-188:*
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
<<

zip

User avatar

Serviio developer / Site Admin

Posts: 17212

Joined: Sat Oct 24, 2009 12:24 pm

Location: London, UK

Post Thu Jul 29, 2010 3:36 pm

Re: [Profile] Sony Bravia 2010 series (EX4, EX5, EX6, EX7, HX7)

No, but seeing it starts with X usually means it's a non standard. Seems like mpegts, try to use it if it fixes your problem.
<<

bstick

Serviio newbie

Posts: 8

Joined: Tue Jul 20, 2010 7:46 am

Post Tue Aug 10, 2010 8:32 pm

Re: [Profile] Sony Bravia 2010 series (EX4, EX5, EX6, EX7, HX7)

Have been away for a bit so now catching up on developments here...and wondering if anyone has been able to get of these models to display subtitles?
<<

Illico

User avatar

DLNA master

Posts: 4646

Joined: Fri Jul 23, 2010 8:08 am

Location: France

Post Wed Aug 11, 2010 12:43 pm

Re: [Profile] Sony Bravia 2010 series (EX4, EX5, EX6, EX7, HX7)

bstick wrote:...wondering if anyone has been able to get of these models to display subtitles?

Don't try...
You could test with following
<SubtitlesMimeType>text/srt</SubtitlesMimeType>
or
<SubtitlesMimeType>smi/caption</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
PreviousNext

Return to Sony

Who is online

Users browsing this forum: No registered users and 30 guests

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