FAQ  •  Register  •  Login

Only Audio and Black Screen in online sources - KDL-46z5500

<<

nichibus

Serviio newbie

Posts: 7

Joined: Sun Mar 31, 2013 2:25 pm

Post Tue Apr 02, 2013 1:39 pm

Only Audio and Black Screen in online sources - KDL-46z5500

I have a Sony KDL-46Z5500 and I can view all futubox channel about Cinema in HD but no channel about sport.
I can hear only the audio, no video in online sources futubox sports channels.
I have Serviio 1.2.1 and in profile I use "Sony Bravia TV (2009)".
Someone can help me?
Thanks
<<

Illico

User avatar

DLNA master

Posts: 4646

Joined: Fri Jul 23, 2010 8:08 am

Location: France

Post Tue Apr 02, 2013 6:42 pm

Re: Only Audio and Black Screen in online sources - KDL-46z5

Could you provide information about the online url ?
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
<<

nichibus

Serviio newbie

Posts: 7

Joined: Sun Mar 31, 2013 2:25 pm

Post Tue Apr 02, 2013 8:45 pm

Re: Only Audio and Black Screen in online sources - KDL-46z5

Using ffmpeg:
This on-line source is Ok:
  Code:
Metadata:
  Server                NGINX RTMP (github.com/arut/nginx-rtmp-module)
  width                 1280.00
  height                720.00
  displayWidth          1280.00
  displayHeight         720.00
  duration              0.00
  framerate             25.00
  fps                   25.00
  videodatarate         0.00
  videocodecid          0.00
  audiodatarate         0.00
  audiocodecid          0.00
Input #0, flv, from 'rtmp://s01.futubox.to/live?lp=............ live=1':
  Metadata:
    Server          : NGINX RTMP (github.com/arut/nginx-rtmp-module)
    displayWidth    : 1280
    displayHeight   : 720
    fps             : 25
    profile         :
    level           :
  Duration: 00:00:00.00, start: 0.000000, bitrate: N/A
    Stream #0:0: Video: h264 (Main), yuv420p, 1280x720 [SAR 1:1 DAR 16:9], 25 tb
r, 1k tbn, 50 tbc
    Stream #0:1: Audio: aac, 48000 Hz, stereo, fltp
At least one output file must be specified


In this second on-line source I can only hear the Audio. The screen is black.
  Code:
Metadata:
  Server                NGINX RTMP (github.com/arut/nginx-rtmp-module)
  width                 1024.00
  height                576.00
  displayWidth          1024.00
  displayHeight         576.00
  duration              0.00
  framerate             25.00
  fps                   25.00
  videodatarate         0.00
  videocodecid          0.00
  audiodatarate         0.00
  audiocodecid          0.00
Input #0, flv, from 'rtmp://s01.futubox.to/live?lp=........... live=1':
  Metadata:
    Server          : NGINX RTMP (github.com/arut/nginx-rtmp-module)
    displayWidth    : 1024
    displayHeight   : 576
    fps             : 25
    profile         :
    level           :
  Duration: 00:00:00.00, start: 677.494000, bitrate: N/A
    Stream #0:0: Video: h264 (Main), yuv420p, 1024x576 [SAR 1:1 DAR 16:9], 25 tb
r, 1k tbn, 50 tbc
    Stream #0:1: Audio: aac, 48000 Hz, stereo, fltp
At least one output file must be specified


Thanks
<<

Illico

User avatar

DLNA master

Posts: 4646

Joined: Fri Jul 23, 2010 8:08 am

Location: France

Post Wed Apr 03, 2013 7:31 am

Re: Only Audio and Black Screen in online sources - KDL-46z5

That could be the 1024x576 resolution that 2009 models does not support....
Look at this ticket: https://bitbucket.org/xnejp03/serviio/i ... resolution

In this case you have to force transcode of all h264 video like this:

  Code:
   <Profile id="sony2009" name="Sony Bravia TV (2009)" extendsProfileId="sony2010">
      <!-- 2009 and earlier models need a separate profile -->
      <Detection>
         <UPnPSearch>
            <!-- 2009 models known to support UPnPSearch -->
            <FriendlyName>BRAVIA KDL-\d{2}(WE5|(E53|E55|V55|V56|W55|W57|Z55|Z57)\d0) *</FriendlyName>
         </UPnPSearch>
         <HttpHeaders>
            <!-- 2008 models, and possibly older or different region 2009 firmwares which may not support UPnPSearch -->
            <X-AV-Client-Info>.*BRAVIA KDL-\d{2}(([A-Z](1|5|E1|R1|BR45|BR9|[1357]0\d{2}|4\d{3}))|(S55|S57|W51|Z51|Z58)\d0).*</X-AV-Client-Info>
         </HttpHeaders>
      </Detection>
      <Transcoding>
         <!-- Transcode baseline h264 in mp4/non-isom container -->
         <Video targetContainer="mpegts" targetVCodec="mpeg2video" maxVBitrate="17000" targetACodec="ac3" aBitrate="192" DAR="16:9">
            <Matches container="mp4" vCodec="h264" profile="baseline" ftypNotIn="isom" />
         </Video>
         <Video targetContainer="mpeg" targetACodec="ac3">
            <Matches container="mpeg" vCodec="mpeg2video" aCodec="mp2" />
         </Video>
      </Transcoding>
      <OnlineTranscoding>
         <Video targetContainer="mpegts" targetVCodec="mpeg2video" maxVBitrate="17000" targetACodec="ac3" aBitrate="192" DAR="16:9">
            <Matches container="mp4" vCodec="h264" profile="baseline" ftypNotIn="isom" /> <!-- Transcode baseline h264 in mp4/non-isom container -->
            <Matches container="*" vCodec="h264"/><!-- Some h264 resolution not supported -->
         </Video>
      </OnlineTranscoding>
   </Profile>


Only Online videos are concerned ?
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
<<

nichibus

Serviio newbie

Posts: 7

Joined: Sun Mar 31, 2013 2:25 pm

Post Thu Apr 04, 2013 8:26 am

Re: Only Audio and Black Screen in online sources - KDL-46z5

Thank you, now streaming is almost ok.
But now the online videos are all jerky, what can I do? I try selecting low quality in preferred online content, but nothing.
Also sometimes when I open a streaming of an online video, my TV Sony get this message: "Unable to access the server. Check the settings of the server".

Thanks

P.S. I tried with a local video but I can not see it if the resolution is 1024x576 with h264 codec.
<<

Illico

User avatar

DLNA master

Posts: 4646

Joined: Fri Jul 23, 2010 8:08 am

Location: France

Post Thu Apr 04, 2013 9:03 am

Re: Only Audio and Black Screen in online sources - KDL-46z5

Is it due to ffmpeg encoding process that overload your cpu ?
Or something on transcoding result that Bravia does not support. Could you copy the temporary transcoding resulting file and add it to the local library and check if video are still jerky?

The error message is probably due to a timeout, because transcoding is not ready. What's happen when you retry to play the same file after this message ?
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
<<

nichibus

Serviio newbie

Posts: 7

Joined: Sun Mar 31, 2013 2:25 pm

Post Thu Apr 04, 2013 11:23 am

Re: Only Audio and Black Screen in online sources - KDL-46z5

ffmpeg.exe is ok, is max 50% of CPU.
I saw that the problem of video jerky and the TV Sony Message there are after about 10 minutes i turn on my PC.
I think the problem is ServiioService.exe.
When ServiioService.exe is about 2% of my CPU is all OK and I can stream online video. But after some minutes ServioService.exe process go to 50%-60% of CPU and my CPU goes overload with ffmpeg encoding process.
Even if I turn off the streaming from my TV, the ServiioService.exe remain 50%-60% of CPU until I turn off my PC.
Why ServiioService after some minuts go to 50% of my CPU? When I start my PC ServvioService is only 2-3% and all is Ok.
Thanks
<<

Illico

User avatar

DLNA master

Posts: 4646

Joined: Fri Jul 23, 2010 8:08 am

Location: France

Post Thu Apr 04, 2013 12:00 pm

Re: Only Audio and Black Screen in online sources - KDL-46z5

nichibus wrote:Why ServiioService after some minuts go to 50% of my CPU?

Don't know.
Do you keep enable the automatic library refresh (on serviio console)?
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
<<

nichibus

Serviio newbie

Posts: 7

Joined: Sun Mar 31, 2013 2:25 pm

Post Thu Apr 04, 2013 1:06 pm

Re: Only Audio and Black Screen in online sources - KDL-46z5

No, I disable the automatic library refresh
<<

nichibus

Serviio newbie

Posts: 7

Joined: Sun Mar 31, 2013 2:25 pm

Post Tue Apr 16, 2013 7:46 am

Re: Only Audio and Black Screen in online sources - KDL-46z5

I solved the problem of ServiioService.exe that overload my CPU installing Serviio 1.0.1
Now the trascoding of online video is OK.
Thanks very much Illico :)
<<

Illico

User avatar

DLNA master

Posts: 4646

Joined: Fri Jul 23, 2010 8:08 am

Location: France

Post Tue Apr 16, 2013 11:45 am

Re: Only Audio and Black Screen in online sources - KDL-46z5

nichibus wrote:I solved the problem of ServiioService.exe that overload my CPU installing Serviio 1.0.1)

What was the problem?
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
<<

nichibus

Serviio newbie

Posts: 7

Joined: Sun Mar 31, 2013 2:25 pm

Post Tue Apr 16, 2013 11:20 pm

Re: Only Audio and Black Screen in online sources - KDL-46z5

nichibus wrote:ffmpeg.exe is ok, is max 50% of CPU.
I saw that the problem of video jerky and the TV Sony Message there are after about 10 minutes i turn on my PC.
I think the problem is ServiioService.exe.
When ServiioService.exe is about 2% of my CPU is all OK and I can stream online video. But after some minutes ServioService.exe process go to 50%-60% of CPU and my CPU goes overload with ffmpeg encoding process.
Even if I turn off the streaming from my TV, the ServiioService.exe remain 50%-60% of CPU until I turn off my PC.
Why ServiioService after some minuts go to 50% of my CPU? When I start my PC ServvioService is only 2-3% and all is Ok.
Thanks

This was the problem: ServioService.exe process goes to 60% of CPU and so my CPU goes overload with ffmpeg encoding process.
Now with Serviio 1.0.1, ServiioService.exe goes 5% max of CPU and ffmpeg encoding process is ok. My CPU does not go overload.

Return to Sony

Who is online

Users browsing this forum: No registered users and 4 guests

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