NextPVR Forums
  • ______
  • Home
  • New Posts
  • Wiki
  • Members
  • Help
  • Search
  • Register
  • Login
  • Home
  • Wiki
  • Members
  • Help
  • Search
NextPVR Forums Public Developers v
« Previous 1 … 3 4 5 6 7 … 93 Next »
Media Browser Integration

 
  • 0 Vote(s) - 0 Average
Media Browser Integration
mvallevand
Online

Posting Freak

Ontario Canada
Posts: 53,175
Threads: 958
Joined: May 2006
#481
2014-04-12, 12:33 PM
Svekke Wrote:What do you mean by you need to send .1-.3 ?

web.log.1 web.log.2 web.log.3

Quote:I give you also a little bit information.
I was watching tv (live-2BE .....). Then my sister started the recording (live-libelle...).
It works for my sister, she don't see anything wrong. But at that moment mine just stops playing.

I can start it again. There is no problem then. She don't get kicked from the recording...

There is some odd stuff at around 22:42 in NRecord in but I'd like to see what web.log was asking. If you stiill have the MB3 log that might show the ffmpeg calls

Martin
Svekke
Offline

Member

Posts: 121
Threads: 7
Joined: Oct 2012
#482
2014-04-12, 07:25 PM
mvallevand Wrote:web.log.1 web.log.2 web.log.3



There is some odd stuff at around 22:42 in NRecord in but I'd like to see what web.log was asking. If you stiill have the MB3 log that might show the ffmpeg calls

Martin

In attachment the logs.
mvallevand
Online

Posting Freak

Ontario Canada
Posts: 53,175
Threads: 958
Joined: May 2006
#483
2014-04-12, 08:40 PM
Yes it looks like when she started live-libelle NextPVR got confused when ffmpeg tried to open it three times quickly

2014-04-11 22:42:20.117 [DEBUG][66] Got Web Request (192.168.1.151): /live channeloid=7154&client=MB3.17
2014-04-11 22:42:24.789 [DEBUG][18] Got Web Request (192.168.1.151): /live channeloid=7154&client=MB3.17
2014-04-11 22:42:26.211 [DEBUG][30] Got Web Request (192.168.1.151): /live channeloid=7154&client=MB3.17

and when it stopped two of those it dropped your stream too

2014-04-11 22:43:04.027 [INFO][39] AnalogRecorder stream count now 0

Martin
Svekke
Offline

Member

Posts: 121
Threads: 7
Joined: Oct 2012
#484
2014-04-13, 08:55 AM
mvallevand Wrote:Yes it looks like when she started live-libelle NextPVR got confused when ffmpeg tried to open it three times quickly

2014-04-11 22:42:20.117 [DEBUG][66] Got Web Request (192.168.1.151): /live channeloid=7154&client=MB3.17
2014-04-11 22:42:24.789 [DEBUG][18] Got Web Request (192.168.1.151): /live channeloid=7154&client=MB3.17
2014-04-11 22:42:26.211 [DEBUG][30] Got Web Request (192.168.1.151): /live channeloid=7154&client=MB3.17

and when it stopped two of those it dropped your stream too

2014-04-11 22:43:04.027 [INFO][39] AnalogRecorder stream count now 0

Martin

And what could be the problem? Or how can i solve it?
mvallevand
Online

Posting Freak

Ontario Canada
Posts: 53,175
Threads: 958
Joined: May 2006
#485
2014-04-13, 02:16 PM
Svekke Wrote:And what could be the problem? Or how can i solve it?

The big problem in on the MB3 side trying to transcode live streams. On your forums this is a issue with live tv in general for several users. On-the-fly transcoding with ffmpeg as been a challenge for NextPVR too and the magic command line has never been found. You will find that apps that have more control of the mux like XBMC, VLC, MPC--HC to name a few don't have this same trouble streaming.

There seems to be a bug on the server side too trying to resolve multiple simultaneous stream open and close request for the same client but that should go away if ffmpeg was behaving nicely.

Martin
lukemb3
Offline

Member

Posts: 109
Threads: 1
Joined: Jul 2013
#486
2014-04-14, 03:39 AM
Well about transcoding, there's a way we can optimize and avoid that, but I honestly didn't understand the response on the last page when I posted this question:

What kind of media info are you able to report on live channel streams? In the GetChannelStream method, would it be possible to add information about the format getting sent back.

I didn't understand it just because i don't really know all of the npvr lingo. But in the latest nuget package, the get stream method allows you to attach media info to the LiveStreamInfo object that you send back. If that can be populated somehow then we can begin to identify scenarios in which transcoding can be avoided.
mvallevand
Online

Posting Freak

Ontario Canada
Posts: 53,175
Threads: 958
Joined: May 2006
#487
2014-04-14, 03:53 AM (This post was last modified: 2014-04-14, 03:59 AM by mvallevand.)
It wouldn't help Svekke, at all because his analog channels would need to be transcoded

As I wrote nothing on the stream, but we could pass an educated guesses based on the channel. Do you have the remuxing working now based on this info? If so (and you have cleaned out that dlna spew) I'll put out a patch to test it, I do have some h264 channels. Let me know what I have to return and we can work from there.

Martin
lukemb3
Offline

Member

Posts: 109
Threads: 1
Joined: Jul 2013
#488
2014-04-14, 04:06 AM
No the server currently won't do anything with the information yet. The object is a list of streams inside the container. It's basically the same as an ffprobe dump:

http://paste2.org/3mb6mnY5

Note that you don't have to supply all of that data, but the more the better. if the client asks for h264 under a certain bitrate, then we can stream copy. but if they also say they need baseline profile or under a certain level/framerate, then we'd have to look at that data, and if it's missing it will transcode.
lukemb3
Offline

Member

Posts: 109
Threads: 1
Joined: Jul 2013
#489
2014-04-14, 04:09 AM
As for the dlna logging messages, you guys are working on dev builds of the server, so you can basically assume there will always be things in progress that may not yet be working correctly.

If you prefer to stay on release builds that is fine. It means we'll add features to the server, wait a few weeks for it to be released and then sync up about adding them into the plugin.
mvallevand
Online

Posting Freak

Ontario Canada
Posts: 53,175
Threads: 958
Joined: May 2006
#490
2014-04-14, 04:32 AM
lukemb3 Wrote:Note that you don't have to supply all of that data, but the more the better. if the client asks for h264 under a certain bitrate, then we can stream copy. but if they also say they need baseline profile or under a certain level/framerate, then we'd have to look at that data, and if it's missing it will transcode.

If you want it all you'd have to use the time shifting mode and then read it with MediaInfo, otherwise it is h264 or MPEG2

Martin
« Next Oldest | Next Newest »

Users browsing this thread: 2 Guest(s)

Pages (56): « Previous 1 … 47 48 49 50 51 … 56 Next »
Jump to page 


Possibly Related Threads…
Thread Author Replies Views Last Post
  Looking for C# UPnP Media Server code bgowland 5 7,759 2016-12-16, 08:25 PM
Last Post: mvallevand
  Media\Show Directory mvallevand 12 6,132 2014-07-02, 10:58 AM
Last Post: sub
  Media\Shows Metadata mvallevand 2 1,944 2013-05-22, 04:09 AM
Last Post: mvallevand
  Streaming media imilne 44 13,224 2012-12-14, 04:05 AM
Last Post: mvallevand
  SkyDrive Eplorer Integration Released.....also available for Mac and iPad UncleJohnsBand 0 1,483 2012-04-24, 01:06 AM
Last Post: UncleJohnsBand
  Building a list of files in media folders (npvr Music and Videos) bgowland 2 1,955 2012-02-05, 10:29 AM
Last Post: bgowland
  Windows Media Connect - Storing stuff on a Home Server psycik 3 2,764 2009-09-29, 03:47 AM
Last Post: mvallevand
  Plugin notification of stopped media mvallevand 7 2,414 2009-08-19, 11:16 PM
Last Post: mvallevand
  GBPVR Media Events KingArgyle 1 1,622 2005-03-27, 07:12 PM
Last Post: sub

  • View a Printable Version
  • Subscribe to this thread
Forum Jump:

© Designed by D&D, modified by NextPVR - Powered by MyBB

Linear Mode
Threaded Mode