FAQ  •  Register  •  Login

[SOLVED] Sony Bravia online stream blank display

<<

hodgsonio

Serviio newbie

Posts: 8

Joined: Tue Feb 12, 2013 10:32 pm

Post Wed Mar 20, 2013 4:17 pm

[SOLVED] Sony Bravia online stream blank display

Hi chaps,

Really impressed with Serviio. Great app. I'm just struglling to get online streaming to work from my Enigma2 based sat box. The URL works fine in VNC and is accepted in Serviio console but just displays blank screen and no audio on my Sony Bravia TV KDL-EX723. I've tried the fix recommended elsewhere in this forum to amend the profiles.xml for Sony 2012 as below:
<Video targetContainer="mpeg" targetVCodec="mpeg2video" targetACodec="ac3" aBitrate="384" DAR="16:9" forceInheritance="true">
<Matches container="asf" /> <!-- to support mms:// streams -->
<Matches container="flv" />
<Matches container="mpegts" vCodec="h264"/>
</Video>
</OnlineTranscoding>

This didnt work for me unfortunately.

Strange this is, when I first started playing around with this, I did originally get one of the channels to stream but I *think* the stream showed up as AVC rather than TS? If thats the case s there any way I could force the online streams to be AVC?

The FFMPEG output for one of the channels is below:

  Code:
C:\Program Files\Serviio\lib>ffmpeg -i "http://192.168.0.99:8001/1:0:1:C481:964:
2:11A0000:0:0:0" >output.txt
ffmpeg version 1.1.1 Copyright (c) 2000-2013 the FFmpeg developers
  built on Feb  5 2013 21:59:54 with gcc 4.7.2 (GCC)
  configuration: --enable-static --disable-shared --disable-ffplay --disable-ffs
erver --enable-memalign-hack --enable-libmp3lame --enable-libass --enable-librtm
p --enable-fontconfig --enable-libfreetype --enable-zlib --extra-libs='-lrtmp -l
polarssl -lws2_32 -lwinmm -lexpat -lfreetype -lfribidi -lz' --arch=x86 --enable-
runtime-cpudetect --enable-pthreads --target-os=mingw32 --cross-prefix=i686-w64-
mingw32- --pkg-config=pkg-config
  libavutil      52. 13.100 / 52. 13.100
  libavcodec     54. 86.100 / 54. 86.100
  libavformat    54. 59.106 / 54. 59.106
  libavdevice    54.  3.102 / 54.  3.102
  libavfilter     3. 32.100 /  3. 32.100
  libswscale      2.  1.103 /  2.  1.103
  libswresample   0. 17.102 /  0. 17.102
[mp3 @ 02E6D3E0] Header missing
[mp3 @ 02E46540] Header missing
[mpegts @ 02E25AE0] max_analyze_duration 5000000 reached at 5016000
[mpegts @ 02E25AE0] Estimating duration from bitrate, this may be inaccurate
Input #0, mpegts, from 'http://192.168.0.99:8001/1:0:1:C481:964:2:11A0000:0:0:0'
:
  Duration: N/A, start: 34095.468411, bitrate: 320 kb/s
  Program 50300
  Program 50305
    Stream #0:0[0x916]: Video: mpeg2video (Main) ([2][0][0][0] / 0x0002), yuv420
p, 544x576 [SAR 32:17 DAR 16:9], 25 fps, 25 tbr, 90k tbn, 50 tbc
    Stream #0:1[0x915](eng): Audio: mp2 ([4][0][0][0] / 0x0004), 48000 Hz, stere
o, s16p, 192 kb/s
    Stream #0:2[0x917](NAR): Audio: mp2 ([4][0][0][0] / 0x0004), 48000 Hz, stere
o, s16p, 128 kb/s (visual impaired)
    Stream #0:3[0x918](eng): Subtitle: dvb_teletext ([6][0][0][0] / 0x0006)
  Program 50310
  Program 50325
  Program 50330
  Program 50335
  Program 50340
  Program 50345
  Program 50350
  Program 50355
At least one output file must be specified

C:\Program Files\Serviio\lib>


Any help much appreciated, this is driving me nuts.
<<

newborn

Streaming enthusiast

Posts: 39

Joined: Sun Dec 23, 2012 2:38 pm

Post Wed Mar 20, 2013 11:38 pm

Re: Sony Bravia online stream blank display

Probably not the most sensible suggestion.. but I 'think' a lot of profile changes happened on bravia between 1.0.1 > As a test perhaps you could try 1.0.1 and see if its any different... If it works, you could backup the profile.xml and install the latest version then copy back in your profiles.xml. It 'might' quickly solve the problem.. Although we'd then need to reverse engineer between 1.0.1 and the latest in the quest for perfect profiles 8-)
<<

hodgsonio

Serviio newbie

Posts: 8

Joined: Tue Feb 12, 2013 10:32 pm

Post Sat Mar 23, 2013 10:01 pm

Re: Sony Bravia online stream blank display

Worth a punt but no change unfortunately... still a blank screen and no audio running on Serviio 1.01

Is there any way to force the online streaming to be AVC? Its currently MPEG2 but I definitely remember the filetype showing up once as AVC and this worked?!? No doubt when I was playing around with the different profiles selection.
<<

newborn

Streaming enthusiast

Posts: 39

Joined: Sun Dec 23, 2012 2:38 pm

Post Mon Mar 25, 2013 1:02 pm

Re: Sony Bravia online stream blank display

viewtopic.php?f=11&t=3662 is worth a read (last page)
<<

Illico

User avatar

DLNA master

Posts: 4646

Joined: Fri Jul 23, 2010 8:08 am

Location: France

Post Mon Mar 25, 2013 8:36 pm

Re: Sony Bravia online stream blank display

There were probably something weird on your online stream from sat box. I suggest to force video transcoding.

Could you confirm that you used "Sony Bravia TV (2012)" profile?
Could you edit your profiles.xml and add the following custom profile just before the last </Profiles> element ?

  Code:
   <Profile id="custom" name="Sony Bravia TV with recorder" extendsProfileId="sony2012">
       <OnlineTranscoding>
         <Video targetContainer="mpegts" targetVCodec="mpeg2video" forceVTranscoding="true" maxVBitrate="17000" targetACodec="ac3" aBitrate="384" DAR="16:9" forceInheritance="true">
            <Matches container="mpegts" vCodec="mpeg2video" aCodec="mp2" />
         </Video>
      </OnlineTranscoding>
    </Profile>
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
<<

hodgsonio

Serviio newbie

Posts: 8

Joined: Tue Feb 12, 2013 10:32 pm

Post Tue Mar 26, 2013 8:39 pm

Re: Sony Bravia online stream blank display

YOU LITTLE BEAUTY!!!

Thats got it Illico, thankyou very much!!

Display is small but I can play around with this now using the thread newborn mentioned.

Cheers guys, you've made my day.
<<

Illico

User avatar

DLNA master

Posts: 4646

Joined: Fri Jul 23, 2010 8:08 am

Location: France

Post Wed Mar 27, 2013 7:33 am

Re: Sony Bravia online stream blank display

hodgsonio wrote:Display is small but I can play around with this now using the thread newborn mentioned.

Do you try remove this DAR="16:9" on previous code ?
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
<<

hodgsonio

Serviio newbie

Posts: 8

Joined: Tue Feb 12, 2013 10:32 pm

Post Mon Apr 01, 2013 3:10 pm

Re: Sony Bravia online stream blank display

Thats got it! Many, many thanks Illico
<<

mackowiakp

Serviio lover

Posts: 71

Joined: Tue Feb 11, 2014 8:31 pm

Post Thu Feb 13, 2014 7:35 am

Re: [SOLVED] Sony Bravia online stream blank display

hodgsonio wrote:Really impressed with Serviio. Great app. I'm just struglling to get online streaming to work from my Enigma2 based sat box. The URL works fine in VNC and is accepted in Serviio console


I try to get streaming for my E2 based satbox working, but I can not get it listed in Serviio web console in "Online" section. Of course it work for me in VLC, so I use ready, VLC working url to define streaming source.
My question is. How You defined new streaming source for E2, to be listed in Serviio console?
<<

hodgsonio

Serviio newbie

Posts: 8

Joined: Tue Feb 12, 2013 10:32 pm

Post Fri Feb 14, 2014 9:56 am

Re: [SOLVED] Sony Bravia online stream blank display

mackowiakp wrote:
hodgsonio wrote:Really impressed with Serviio. Great app. I'm just struglling to get online streaming to work from my Enigma2 based sat box. The URL works fine in VNC and is accepted in Serviio console


I try to get streaming for my E2 based satbox working, but I can not get it listed in Serviio web console in "Online" section. Of course it work for me in VLC, so I use ready, VLC working url to define streaming source.
My question is. How You defined new streaming source for E2, to be listed in Serviio console?



Easiest way is to go into Open Webif of your Engima2 box and right-click and copy the link address/URL of the channel you want to stream. Then just reformat the URL for Serviio as follows:

Eg, the OpenWebif URL is:
http://192.168.0.101/web/stream.m3u?ref=1:0:19:1B1C:802:2:11A0000:0:0:0:&name=BBC%20Two%20HD
For Serviio, change this to:
http://192.168.0.101:8001/1:0:19:1B1C:802:2:11A0000:0:0:0

Obviously changing IP and port to whatever your Engima2 box uses. Also, from memory I think I had to remove the last colon (:) from the URL to get this to work in Serviio
<<

mackowiakp

Serviio lover

Posts: 71

Joined: Tue Feb 11, 2014 8:31 pm

Post Fri Feb 14, 2014 10:59 am

Re: [SOLVED] Sony Bravia online stream blank display

I created links necessary for Servioo in the same way like You. So in my case it looks like:
http://pvr:8001/1:0:1:10E2:3E8:13E:820000:0:0:0

It works if such link is placed as streaming source in VLC. Moreover, in Serviio console is check it as correct streaming URL. But still it is not listed in "Online" option of Serviio WEB console or on TV. I dont know what to do...
<<

hodgsonio

Serviio newbie

Posts: 8

Joined: Tue Feb 12, 2013 10:32 pm

Post Fri Feb 14, 2014 11:10 am

Re: [SOLVED] Sony Bravia online stream blank display

I had similar problem and it was caused by one URL being incorrectly formatted which stopped Serviio displaying all streams (not just the incorrect one)

Have you tried removing all URLs in Serviio console and then just testing with one URL initially?
<<

mackowiakp

Serviio lover

Posts: 71

Joined: Tue Feb 11, 2014 8:31 pm

Post Fri Feb 14, 2014 12:37 pm

Re: [SOLVED] Sony Bravia online stream blank display

I have only one link defined in Serviio console. I did not entered more. Just one.
<<

mackowiakp

Serviio lover

Posts: 71

Joined: Tue Feb 11, 2014 8:31 pm

Post Sun Feb 16, 2014 9:31 am

Re: [SOLVED] Sony Bravia online stream blank display

Finally - thanks to You - I got it working. With some unwanted features :D

I defined "Live stream" as http://pvr:8001/1:0:1:10E2:3E8:13E:820000:0:0:0 Now it is listed in "Online" section of Serviio WEB console in is playable on my tablet in local network using DLNA Android client.
But it takes a lot of time between defining new "Live stream" and it presence in "online" section of Serviio WEB console. I want to use Serviio only for streaming TV content from satbox via internet to my tablet. So transcoding and authorisation is major problem for me at this time.

As it is noticeable, Serviio streams over port 8895:

  Code:
 [maciek@piotr bin]$ netstat -at|grep tablet
    tcp        0      0 piotr:8895                  tablet:34614                ESTABLISHED
    tcp        0  42264 piotr:8895                  tablet:54492                ESTABLISHED
    tcp        0      0 piotr:8895                  tablet:39361                ESTABLISHED


Lets start with transcoding. The stream I present in this post is SD, 576i mpg2 type. But different channel uses different resolution and encoding. So I have:
- SD, 576, mpeg2
- SD, 576, X.264
- HD 1080, X264

I want to define profile to transcode all above streams to SD, 576, mpg2 as first option or lower necessary bandwidth to aprox 0,7 Mbps, by lowering resolution and/or quality.

Next problem is authorisation of access from Internet to avoid unwanted usage. Keep in mind that it is practically impossible to use (for my customers) mechanisms like OpenVPN or SSH because of necessity of rooting Android devices. I use rooted devices but warranty is lost.

How can I reach my goal?
<<

mackowiakp

Serviio lover

Posts: 71

Joined: Tue Feb 11, 2014 8:31 pm

Post Mon Feb 24, 2014 9:06 pm

Re: [SOLVED] Sony Bravia online stream blank display

I use Serviio to stream TV programs from my Enigma E2 baser satbox over Internet. I defined some live stream, most of them working properly.
But some channels not. As far as I know (if I am not wrong), non-working over streaming TV channels, are broadcasted as 576 SD resolution but uses H.264 encoding stream, basically dedicated for HD broadcasting.
Maybe I am wrong, but is it problem for Servvio to transcode it? How can I solve or workaround such problem?
<<

Illico

User avatar

DLNA master

Posts: 4646

Joined: Fri Jul 23, 2010 8:08 am

Location: France

Post Tue Feb 25, 2014 7:55 am

Re: [SOLVED] Sony Bravia online stream blank display

Could you provide informations about these streams ? see signature links.
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
<<

mackowiakp

Serviio lover

Posts: 71

Joined: Tue Feb 11, 2014 8:31 pm

Post Tue Feb 25, 2014 6:18 pm

Re: [SOLVED] Sony Bravia online stream blank display

OK. So You have info about non-working stream from Enigma E2:

  Code:
[maciek@piotr Pobrane]$ ffmpeg -i http://pvr:8001/1:0:1:4288:2BC0:13E:820000:0:0:0
ffmpeg version 2.0.3 Copyright (c) 2000-2013 the FFmpeg developers
  built on Feb  9 2014 23:12:38 with gcc 4.8.2 (GCC)
  configuration: --prefix=/usr --enable-shared --libdir=/usr/lib64 --shlibdir=/usr/lib64 --incdir=/usr/include --disable-stripping --enable-postproc --enable-gpl --enable-pthreads --enable-libtheora --enable-libvorbis --disable-encoder=vorbis --enable-libvpx --enable-x11grab --enable-runtime-cpudetect --enable-libdc1394 --enable-libschroedinger --enable-librtmp --enable-libspeex --enable-libfreetype --enable-libnut --enable-libgsm --enable-libcelt --enable-libopus --disable-libopencv --enable-libopenjpeg --enable-libtwolame --enable-libxavs --enable-frei0r --enable-libmodplug --enable-libass --enable-gnutls --enable-libcdio --enable-libpulse --enable-libv4l2 --enable-libmp3lame --enable-libopencore-amrnb --enable-libopencore-amrwb --enable-version3 --enable-libx264 --enable-libvo-aacenc --enable-libvo-amrwbenc --enable-libxvid
  libavutil      52. 38.100 / 52. 38.100
  libavcodec     55. 18.102 / 55. 18.102
  libavformat    55. 12.100 / 55. 12.100
  libavdevice    55.  3.100 / 55.  3.100
  libavfilter     3. 79.101 /  3. 79.101
  libswscale      2.  3.100 /  2.  3.100
  libswresample   0. 17.102 /  0. 17.102
  libpostproc    52.  3.100 / 52.  3.100
[NULL @ 0x211df20] non-existing PPS referenced
[h264 @ 0x211df20] non-existing PPS 0 referenced
[h264 @ 0x211df20] decode_slice_header error
[h264 @ 0x211df20] no frame!
[h264 @ 0x211df20] non-existing PPS referenced
[h264 @ 0x211df20] non-existing PPS 0 referenced
[h264 @ 0x211df20] decode_slice_header error
[h264 @ 0x211df20] no frame!
[h264 @ 0x211df20] non-existing PPS referenced
[h264 @ 0x211df20] non-existing PPS 0 referenced
[h264 @ 0x211df20] decode_slice_header error
[h264 @ 0x211df20] no frame!
[h264 @ 0x211df20] non-existing PPS referenced
[h264 @ 0x211df20] non-existing PPS 0 referenced
[h264 @ 0x211df20] decode_slice_header error
[h264 @ 0x211df20] no frame!
[h264 @ 0x211df20] mmco: unref short failure
[h264 @ 0x211df20] number of reference frames (0+4) exceeds max (3; probably corrupt input), discarding one
[mpegts @ 0x212bd20] Could not find codec parameters for stream 0 (Video: h264 ([27][0][0][0] / 0x001B)): unspecified size                                     
Consider increasing the value for the 'analyzeduration' and 'probesize' options
[mpegts @ 0x212bd20] Could not find codec parameters for stream 1 (Audio: mp3 ([4][0][0][0] / 0x0004), 0 channels, s16p): unspecified frame size               
Consider increasing the value for the 'analyzeduration' and 'probesize' options
[mpegts @ 0x212bd20] Could not find codec parameters for stream 2 (Video: h264 ([27][0][0][0] / 0x001B)): unspecified size                                     
Consider increasing the value for the 'analyzeduration' and 'probesize' options
[mpegts @ 0x212bd20] Could not find codec parameters for stream 3 (Audio: mp3 ([4][0][0][0] / 0x0004), 0 channels): unspecified frame size                     
Consider increasing the value for the 'analyzeduration' and 'probesize' options
[mpegts @ 0x212bd20] Could not find codec parameters for stream 4 (Video: h264 ([27][0][0][0] / 0x001B)): unspecified size                                     
Consider increasing the value for the 'analyzeduration' and 'probesize' options
[mpegts @ 0x212bd20] Could not find codec parameters for stream 5 (Audio: mp3 ([4][0][0][0] / 0x0004), 0 channels): unspecified frame size                     
Consider increasing the value for the 'analyzeduration' and 'probesize' options
[mpegts @ 0x212bd20] Could not find codec parameters for stream 6 (Video: h264 ([27][0][0][0] / 0x001B)): unspecified size                                     
Consider increasing the value for the 'analyzeduration' and 'probesize' options
[mpegts @ 0x212bd20] Could not find codec parameters for stream 7 (Audio: mp3 ([4][0][0][0] / 0x0004), 0 channels): unspecified frame size                     
Consider increasing the value for the 'analyzeduration' and 'probesize' options
[mpegts @ 0x212bd20] Could not find codec parameters for stream 8 (Video: h264 ([27][0][0][0] / 0x001B)): unspecified size                                     
Consider increasing the value for the 'analyzeduration' and 'probesize' options
[mpegts @ 0x212bd20] Could not find codec parameters for stream 9 (Audio: mp3 ([4][0][0][0] / 0x0004), 0 channels): unspecified frame size                     
Consider increasing the value for the 'analyzeduration' and 'probesize' options
[mpegts @ 0x212bd20] Could not find codec parameters for stream 10 (Video: h264 ([27][0][0][0] / 0x001B)): unspecified size                                     
Consider increasing the value for the 'analyzeduration' and 'probesize' options
[mpegts @ 0x212bd20] Could not find codec parameters for stream 11 (Audio: mp3 ([4][0][0][0] / 0x0004), 0 channels): unspecified frame size                     
Consider increasing the value for the 'analyzeduration' and 'probesize' options
[mpegts @ 0x212bd20] Could not find codec parameters for stream 12 (Video: h264 ([27][0][0][0] / 0x001B)): unspecified size                                     
Consider increasing the value for the 'analyzeduration' and 'probesize' options
[mpegts @ 0x212bd20] Could not find codec parameters for stream 13 (Audio: mp3 ([4][0][0][0] / 0x0004), 0 channels): unspecified frame size                     
Consider increasing the value for the 'analyzeduration' and 'probesize' options
[mpegts @ 0x212bd20] Could not find codec parameters for stream 14 (Audio: mp3 ([4][0][0][0] / 0x0004), 0 channels): unspecified frame size                     
Consider increasing the value for the 'analyzeduration' and 'probesize' options
[mpegts @ 0x212bd20] Could not find codec parameters for stream 15 (Video: h264 ([27][0][0][0] / 0x001B)): unspecified size                                     
Consider increasing the value for the 'analyzeduration' and 'probesize' options
[mpegts @ 0x212bd20] Could not find codec parameters for stream 16 (Audio: mp3 ([4][0][0][0] / 0x0004), 0 channels): unspecified frame size                     
Consider increasing the value for the 'analyzeduration' and 'probesize' options
[mpegts @ 0x212bd20] Could not find codec parameters for stream 17 (Video: h264 ([27][0][0][0] / 0x001B)): unspecified size                                     
Consider increasing the value for the 'analyzeduration' and 'probesize' options
[mpegts @ 0x212bd20] Could not find codec parameters for stream 18 (Audio: mp3 ([4][0][0][0] / 0x0004), 0 channels): unspecified frame size                     
Consider increasing the value for the 'analyzeduration' and 'probesize' options
[mpegts @ 0x212bd20] Could not find codec parameters for stream 21 (Video: h264 ([27][0][0][0] / 0x001B)): unspecified size                                     
Consider increasing the value for the 'analyzeduration' and 'probesize' options
[mpegts @ 0x212bd20] Could not find codec parameters for stream 22 (Audio: mp3 ([4][0][0][0] / 0x0004), 0 channels): unspecified frame size                     
Consider increasing the value for the 'analyzeduration' and 'probesize' options
[mpegts @ 0x212bd20] Could not find codec parameters for stream 23 (Video: h264 ([27][0][0][0] / 0x001B)): unspecified size                                     
Consider increasing the value for the 'analyzeduration' and 'probesize' options
[mpegts @ 0x212bd20] Could not find codec parameters for stream 24 (Audio: mp3 ([4][0][0][0] / 0x0004), 0 channels): unspecified frame size                     
Consider increasing the value for the 'analyzeduration' and 'probesize' options
[mpegts @ 0x212bd20] Could not find codec parameters for stream 25 (Video: h264 ([27][0][0][0] / 0x001B)): unspecified size                                     
Consider increasing the value for the 'analyzeduration' and 'probesize' options
[mpegts @ 0x212bd20] Could not find codec parameters for stream 26 (Audio: mp3 ([4][0][0][0] / 0x0004), 0 channels): unspecified frame size                     
Consider increasing the value for the 'analyzeduration' and 'probesize' options
[mpegts @ 0x212bd20] Could not find codec parameters for stream 27 (Video: h264 ([27][0][0][0] / 0x001B)): unspecified size                                     
Consider increasing the value for the 'analyzeduration' and 'probesize' options
[mpegts @ 0x212bd20] Could not find codec parameters for stream 28 (Audio: mp3 ([4][0][0][0] / 0x0004), 0 channels): unspecified frame size                     
Consider increasing the value for the 'analyzeduration' and 'probesize' options
[mpegts @ 0x212bd20] Could not find codec parameters for stream 29 (Video: h264 ([27][0][0][0] / 0x001B)): unspecified size                                     
Consider increasing the value for the 'analyzeduration' and 'probesize' options
[mpegts @ 0x212bd20] Could not find codec parameters for stream 30 (Audio: mp3 ([4][0][0][0] / 0x0004), 0 channels): unspecified frame size                     
Consider increasing the value for the 'analyzeduration' and 'probesize' options
[mpegts @ 0x212bd20] Could not find codec parameters for stream 31 (Video: h264 ([27][0][0][0] / 0x001B)): unspecified size                                     
Consider increasing the value for the 'analyzeduration' and 'probesize' options
[mpegts @ 0x212bd20] Could not find codec parameters for stream 32 (Audio: mp3 ([4][0][0][0] / 0x0004), 0 channels): unspecified frame size                     
Consider increasing the value for the 'analyzeduration' and 'probesize' options
[mpegts @ 0x212bd20] Could not find codec parameters for stream 33 (Video: h264 ([27][0][0][0] / 0x001B)): unspecified size                                     
Consider increasing the value for the 'analyzeduration' and 'probesize' options
[mpegts @ 0x212bd20] Could not find codec parameters for stream 34 (Audio: mp3 ([4][0][0][0] / 0x0004), 0 channels): unspecified frame size                     
Consider increasing the value for the 'analyzeduration' and 'probesize' options
[mpegts @ 0x212bd20] Could not find codec parameters for stream 35 (Video: h264 ([27][0][0][0] / 0x001B)): unspecified size                                     
Consider increasing the value for the 'analyzeduration' and 'probesize' options
[mpegts @ 0x212bd20] Could not find codec parameters for stream 36 (Audio: mp3 ([4][0][0][0] / 0x0004), 0 channels): unspecified frame size                     
Consider increasing the value for the 'analyzeduration' and 'probesize' options
[mpegts @ 0x212bd20] Could not find codec parameters for stream 37 (Video: h264 ([27][0][0][0] / 0x001B)): unspecified size                                     
Consider increasing the value for the 'analyzeduration' and 'probesize' options
[mpegts @ 0x212bd20] Could not find codec parameters for stream 38 (Audio: mp3 ([4][0][0][0] / 0x0004), 0 channels): unspecified frame size                     
Consider increasing the value for the 'analyzeduration' and 'probesize' options
[mpegts @ 0x212bd20] Could not find codec parameters for stream 39 (Video: h264 ([27][0][0][0] / 0x001B)): unspecified size                                     
Consider increasing the value for the 'analyzeduration' and 'probesize' options
[mpegts @ 0x212bd20] Could not find codec parameters for stream 40 (Audio: mp3 ([4][0][0][0] / 0x0004), 0 channels): unspecified frame size                     
Consider increasing the value for the 'analyzeduration' and 'probesize' options
[mpegts @ 0x212bd20] Could not find codec parameters for stream 41 (Video: h264 ([27][0][0][0] / 0x001B)): unspecified size                                     
Consider increasing the value for the 'analyzeduration' and 'probesize' options
[mpegts @ 0x212bd20] Could not find codec parameters for stream 42 (Audio: mp3 ([4][0][0][0] / 0x0004), 0 channels): unspecified frame size                     
Consider increasing the value for the 'analyzeduration' and 'probesize' options
[mpegts @ 0x212bd20] Could not find codec parameters for stream 43 (Video: h264 ([27][0][0][0] / 0x001B)): unspecified size                                     
Consider increasing the value for the 'analyzeduration' and 'probesize' options
[mpegts @ 0x212bd20] Could not find codec parameters for stream 44 (Audio: mp3 ([4][0][0][0] / 0x0004), 0 channels): unspecified frame size                     
Consider increasing the value for the 'analyzeduration' and 'probesize' options
[mpegts @ 0x212bd20] Could not find codec parameters for stream 45 (Video: h264 ([27][0][0][0] / 0x001B)): unspecified size                                     
Consider increasing the value for the 'analyzeduration' and 'probesize' options
[mpegts @ 0x212bd20] Could not find codec parameters for stream 46 (Audio: mp3 ([4][0][0][0] / 0x0004), 0 channels): unspecified frame size                     
Consider increasing the value for the 'analyzeduration' and 'probesize' options
[mpegts @ 0x212bd20] Could not find codec parameters for stream 47 (Video: h264 ([27][0][0][0] / 0x001B)): unspecified size                                     
Consider increasing the value for the 'analyzeduration' and 'probesize' options
[mpegts @ 0x212bd20] Could not find codec parameters for stream 48 (Audio: mp3 ([4][0][0][0] / 0x0004), 0 channels): unspecified frame size                     
Consider increasing the value for the 'analyzeduration' and 'probesize' options
[mpegts @ 0x212bd20] Could not find codec parameters for stream 49 (Video: h264 ([27][0][0][0] / 0x001B)): unspecified size                                     
Consider increasing the value for the 'analyzeduration' and 'probesize' options
[mpegts @ 0x212bd20] Could not find codec parameters for stream 50 (Audio: mp3 ([4][0][0][0] / 0x0004), 0 channels): unspecified frame size                     
Consider increasing the value for the 'analyzeduration' and 'probesize' options
[mpegts @ 0x212bd20] Could not find codec parameters for stream 51 (Video: h264 ([27][0][0][0] / 0x001B)): unspecified size                                     
Consider increasing the value for the 'analyzeduration' and 'probesize' options
[mpegts @ 0x212bd20] Could not find codec parameters for stream 52 (Audio: mp3 ([4][0][0][0] / 0x0004), 0 channels): unspecified frame size                     
Consider increasing the value for the 'analyzeduration' and 'probesize' options
[mpegts @ 0x212bd20] Could not find codec parameters for stream 53 (Video: h264 ([27][0][0][0] / 0x001B)): unspecified size                                     
Consider increasing the value for the 'analyzeduration' and 'probesize' options
[mpegts @ 0x212bd20] Could not find codec parameters for stream 54 (Audio: mp3 ([4][0][0][0] / 0x0004), 0 channels): unspecified frame size                     
Consider increasing the value for the 'analyzeduration' and 'probesize' options
[mpegts @ 0x212bd20] Could not find codec parameters for stream 55 (Video: h264 ([27][0][0][0] / 0x001B)): unspecified size                                     
Consider increasing the value for the 'analyzeduration' and 'probesize' options
[mpegts @ 0x212bd20] Could not find codec parameters for stream 56 (Audio: mp3 ([4][0][0][0] / 0x0004), 0 channels): unspecified frame size                     
Consider increasing the value for the 'analyzeduration' and 'probesize' options
[mpegts @ 0x212bd20] Could not find codec parameters for stream 57 (Video: h264 ([27][0][0][0] / 0x001B)): unspecified size                                     
Consider increasing the value for the 'analyzeduration' and 'probesize' options
[mpegts @ 0x212bd20] Could not find codec parameters for stream 58 (Audio: mp3 ([4][0][0][0] / 0x0004), 0 channels): unspecified frame size                     
Consider increasing the value for the 'analyzeduration' and 'probesize' options
Input #0, mpegts, from 'http://pvr:8001/1:0:1:4288:2BC0:13E:820000:0:0:0':
  Duration: N/A, start: 85346.536122, bitrate: 192 kb/s
  Program 17001
    Stream #0:25[0x101]: Video: h264 ([27][0][0][0] / 0x001B), 90k tbr, 90k tbn
    Stream #0:26[0x201]: Audio: mp3 ([4][0][0][0] / 0x0004), 0 channels
  Program 17002
    Stream #0:27[0x102]: Video: h264 ([27][0][0][0] / 0x001B), 90k tbr, 90k tbn
    Stream #0:28[0x202]: Audio: mp3 ([4][0][0][0] / 0x0004), 0 channels
  Program 17003
    Stream #0:29[0x103]: Video: h264 ([27][0][0][0] / 0x001B), 90k tbr, 90k tbn
    Stream #0:30[0x203]: Audio: mp3 ([4][0][0][0] / 0x0004), 0 channels
  Program 17004
    Stream #0:31[0x104]: Video: h264 ([27][0][0][0] / 0x001B), 90k tbr, 90k tbn
    Stream #0:32[0x204]: Audio: mp3 ([4][0][0][0] / 0x0004), 0 channels
  Program 17005
    Stream #0:33[0x105]: Video: h264 ([27][0][0][0] / 0x001B), 90k tbr, 90k tbn
    Stream #0:34[0x205]: Audio: mp3 ([4][0][0][0] / 0x0004), 0 channels
  Program 17006
    Stream #0:35[0x106]: Video: h264 ([27][0][0][0] / 0x001B), 90k tbr, 90k tbn
    Stream #0:36[0x206]: Audio: mp3 ([4][0][0][0] / 0x0004), 0 channels
  Program 17007
    Stream #0:37[0x107]: Video: h264 ([27][0][0][0] / 0x001B), 90k tbr, 90k tbn
    Stream #0:38[0x207]: Audio: mp3 ([4][0][0][0] / 0x0004), 0 channels
  Program 17008
    Stream #0:39[0x108]: Video: h264 ([27][0][0][0] / 0x001B), 90k tbr, 90k tbn
    Stream #0:40[0x208]: Audio: mp3 ([4][0][0][0] / 0x0004), 0 channels
  Program 17009
    Stream #0:41[0x109]: Video: h264 ([27][0][0][0] / 0x001B), 90k tbr, 90k tbn
    Stream #0:42[0x209]: Audio: mp3 ([4][0][0][0] / 0x0004), 0 channels
  Program 17010
    Stream #0:43[0x110]: Video: h264 ([27][0][0][0] / 0x001B), 90k tbr, 90k tbn
    Stream #0:44[0x210]: Audio: mp3 ([4][0][0][0] / 0x0004), 0 channels
  Program 17011
    Stream #0:45[0x111]: Video: h264 ([27][0][0][0] / 0x001B), 90k tbr, 90k tbn
    Stream #0:46[0x211]: Audio: mp3 ([4][0][0][0] / 0x0004), 0 channels
  Program 17012
    Stream #0:47[0x112]: Video: h264 ([27][0][0][0] / 0x001B), 90k tbr, 90k tbn
    Stream #0:48[0x212]: Audio: mp3 ([4][0][0][0] / 0x0004), 0 channels
  Program 17013
    Stream #0:49[0x113]: Video: h264 ([27][0][0][0] / 0x001B), 90k tbr, 90k tbn
    Stream #0:50[0x213]: Audio: mp3 ([4][0][0][0] / 0x0004), 0 channels
  Program 17014
    Stream #0:51[0x114]: Video: h264 ([27][0][0][0] / 0x001B), 90k tbr, 90k tbn
    Stream #0:52[0x214]: Audio: mp3 ([4][0][0][0] / 0x0004), 0 channels
  Program 17015
    Stream #0:53[0x115]: Video: h264 ([27][0][0][0] / 0x001B), 90k tbr, 90k tbn
    Stream #0:54[0x215]: Audio: mp3 ([4][0][0][0] / 0x0004), 0 channels
  Program 17016
    Stream #0:55[0x116]: Video: h264 ([27][0][0][0] / 0x001B), 90k tbr, 90k tbn
    Stream #0:56[0x216]: Audio: mp3 ([4][0][0][0] / 0x0004), 0 channels
  Program 17017
    Stream #0:57[0x117]: Video: h264 ([27][0][0][0] / 0x001B), 90k tbr, 90k tbn
    Stream #0:58[0x217]: Audio: mp3 ([4][0][0][0] / 0x0004), 0 channels
  Program 17018
    Stream #0:0[0x118]: Video: h264 ([27][0][0][0] / 0x001B), 90k tbr, 90k tbn, 180k tbc
    Stream #0:1[0x218]: Audio: mp3 ([4][0][0][0] / 0x0004), 0 channels, s16p
  Program 17019
    Stream #0:2[0x119]: Video: h264 ([27][0][0][0] / 0x001B), 90k tbr, 90k tbn
    Stream #0:3[0x219]: Audio: mp3 ([4][0][0][0] / 0x0004), 0 channels
  Program 17020
    Stream #0:4[0x100]: Video: h264 ([27][0][0][0] / 0x001B), 90k tbr, 90k tbn
    Stream #0:5[0x200]: Audio: mp3 ([4][0][0][0] / 0x0004), 0 channels
  Program 17021
  Program 17022
  Program 17023
    Stream #0:6[0x123]: Video: h264 ([27][0][0][0] / 0x001B), 90k tbr, 90k tbn
    Stream #0:7[0x223]: Audio: mp3 ([4][0][0][0] / 0x0004), 0 channels
  Program 17024
    Stream #0:8[0x124]: Video: h264 ([27][0][0][0] / 0x001B), 90k tbr, 90k tbn
    Stream #0:9[0x224]: Audio: mp3 ([4][0][0][0] / 0x0004), 0 channels
  Program 17025
    Stream #0:10[0x125]: Video: h264 ([27][0][0][0] / 0x001B), 90k tbr, 90k tbn
    Stream #0:11[0x225]: Audio: mp3 ([4][0][0][0] / 0x0004), 0 channels
  Program 17026
    Stream #0:12[0x126]: Video: h264 ([27][0][0][0] / 0x001B), 90k tbr, 90k tbn
    Stream #0:13[0x226](pol): Audio: mp3 ([4][0][0][0] / 0x0004), 0 channels
    Stream #0:14[0x326](eng): Audio: mp3 ([4][0][0][0] / 0x0004), 0 channels
  Program 17027
    Stream #0:15[0x127]: Video: h264 ([27][0][0][0] / 0x001B), 90k tbr, 90k tbn
    Stream #0:16[0x227]: Audio: mp3 ([4][0][0][0] / 0x0004), 0 channels
  Program 17028
  Program 17029
    Stream #0:17[0x129]: Video: h264 ([27][0][0][0] / 0x001B), 90k tbr, 90k tbn
    Stream #0:18[0x229]: Audio: mp3 ([4][0][0][0] / 0x0004), 0 channels
  Program 17030
    Stream #0:17[0x129]: Video: h264 ([27][0][0][0] / 0x001B), 90k tbr, 90k tbn
    Stream #0:18[0x229]: Audio: mp3 ([4][0][0][0] / 0x0004), 0 channels
  Program 17031
    Stream #0:17[0x129]: Video: h264 ([27][0][0][0] / 0x001B), 90k tbr, 90k tbn
    Stream #0:18[0x229]: Audio: mp3 ([4][0][0][0] / 0x0004), 0 channels
  Program 17032
    Stream #0:19[0x132]: Video: h264 (High) ([27][0][0][0] / 0x001B), yuv420p, 720x576 [SAR 16:11 DAR 20:11], 25 fps, 25 tbr, 90k tbn, 50 tbc
    Stream #0:20[0x232]: Audio: mp2 ([4][0][0][0] / 0x0004), 48000 Hz, stereo, s16p, 192 kb/s
  Program 17033
    Stream #0:21[0x133]: Video: h264 ([27][0][0][0] / 0x001B), 90k tbr, 90k tbn
    Stream #0:22[0x233]: Audio: mp3 ([4][0][0][0] / 0x0004), 0 channels
  Program 17034
    Stream #0:23[0x134]: Video: h264 ([27][0][0][0] / 0x001B), 90k tbr, 90k tbn
    Stream #0:24[0x234]: Audio: mp3 ([4][0][0][0] / 0x0004), 0 channels
At least one output file must be specified


In comparison to above, info from working stream:

  Code:
[maciek@piotr Pobrane]$ ffmpeg -i http://pvr:8001/1:0:1:390B:32C8:13E:820000:0:0:0
ffmpeg version 2.0.3 Copyright (c) 2000-2013 the FFmpeg developers
  built on Feb  9 2014 23:12:38 with gcc 4.8.2 (GCC)
  configuration: --prefix=/usr --enable-shared --libdir=/usr/lib64 --shlibdir=/usr/lib64 --incdir=/usr/include --disable-stripping --enable-postproc --enable-gpl --enable-pthreads --enable-libtheora --enable-libvorbis --disable-encoder=vorbis --enable-libvpx --enable-x11grab --enable-runtime-cpudetect --enable-libdc1394 --enable-libschroedinger --enable-librtmp --enable-libspeex --enable-libfreetype --enable-libnut --enable-libgsm --enable-libcelt --enable-libopus --disable-libopencv --enable-libopenjpeg --enable-libtwolame --enable-libxavs --enable-frei0r --enable-libmodplug --enable-libass --enable-gnutls --enable-libcdio --enable-libpulse --enable-libv4l2 --enable-libmp3lame --enable-libopencore-amrnb --enable-libopencore-amrwb --enable-version3 --enable-libx264 --enable-libvo-aacenc --enable-libvo-amrwbenc --enable-libxvid
  libavutil      52. 38.100 / 52. 38.100
  libavcodec     55. 18.102 / 55. 18.102
  libavformat    55. 12.100 / 55. 12.100
  libavdevice    55.  3.100 / 55.  3.100
  libavfilter     3. 79.101 /  3. 79.101
  libswscale      2.  3.100 /  2.  3.100
  libswresample   0. 17.102 /  0. 17.102
  libpostproc    52.  3.100 / 52.  3.100
[mpeg2video @ 0x1c3fea0] Invalid frame dimensions 0x0.
    Last message repeated 4 times
Input #0, mpegts, from 'http://pvr:8001/1:0:1:390B:32C8:13E:820000:0:0:0':
  Duration: N/A, start: 7358.158889, bitrate: 256 kb/s
  Program 14602
  Program 14603
    Stream #0:0[0x1839]: Video: mpeg2video (Main) ([2][0][0][0] / 0x0002), yuv420p, 704x576 [SAR 16:11 DAR 16:9], 25 fps, 25 tbr, 90k tbn, 50 tbc
    Stream #0:1[0x1843](pol): Audio: mp2 ([4][0][0][0] / 0x0004), 48000 Hz, stereo, s16p, 128 kb/s
    Stream #0:2[0x1844](eng): Audio: mp2 ([4][0][0][0] / 0x0004), 48000 Hz, stereo, s16p, 128 kb/s
  Program 14604
  Program 14605
  Program 14607
  Program 14612
  Program 14613
  Program 14606
  Program 14610
  Program 14623
  Program 14615
At least one output file must be specified


Both stream can be streamed to PC in local network, via Firefox and VLC as renderer.
<<

Illico

User avatar

DLNA master

Posts: 4646

Joined: Fri Jul 23, 2010 8:08 am

Location: France

Post Tue Feb 25, 2014 8:29 pm

Re: [SOLVED] Sony Bravia online stream blank display

mackowiakp wrote:OK. So You have info about non-working stream from Enigma E2.

I think that serviio could not support these streams.
Because there were multiple video streams and serviio only extract the first one during transcoding process..and this one is not valid.
Only the 19# and 20# are valid.
<<

mackowiakp

Serviio lover

Posts: 71

Joined: Tue Feb 11, 2014 8:31 pm

Post Tue Feb 25, 2014 8:35 pm

Re: [SOLVED] Sony Bravia online stream blank display

Is any workaround?
<<

Illico

User avatar

DLNA master

Posts: 4646

Joined: Fri Jul 23, 2010 8:08 am

Location: France

Post Wed Feb 26, 2014 4:09 pm

Re: [SOLVED] Sony Bravia online stream blank display

Outside serviio, with ffmpeg command line or TsMuxer tools, you have to manually remux the stream and select proper track numbers. If its a live stream, you could not.
Next

Return to Sony

Who is online

Users browsing this forum: No registered users and 27 guests

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