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
lukemb3
Offline

Member

Posts: 109
Threads: 1
Joined: Jul 2013
#401
2014-03-10, 03:18 AM
new build up that should support the http protocol with your live streams.
mvallevand
Offline

Posting Freak

Ontario Canada
Posts: 53,184
Threads: 958
Joined: May 2006
#402
2014-03-10, 03:29 AM
I will give it a try. For configuration can I assume the Plugin's xml file is used to override the compiled option?

Martin
lukemb3
Offline

Member

Posts: 109
Threads: 1
Joined: Jul 2013
#403
2014-03-10, 03:34 AM
Exactly yea. The defaults are here:

https://github.com/MediaBrowser/MediaBro...uration.cs

Config will override that. That obviously won't account for any hacks in the code point to a specific location, if there are any.
mvallevand
Offline

Posting Freak

Ontario Canada
Posts: 53,184
Threads: 958
Joined: May 2006
#404
2014-03-10, 04:07 AM
lukemb3 Wrote:Exactly yea. The defaults are here:

Yes thanks I hoped that is what it was for, I wanted to keep my other mode for now.

Anyway streaming is working, it still opens streams twice (but it doesn't seem to close the first) just like the file play but the time is much better.

Martin
mvallevand
Offline

Posting Freak

Ontario Canada
Posts: 53,184
Threads: 958
Joined: May 2006
#405
2014-03-10, 04:55 AM
Attached is the patch (replaces the last one) for http streaming and other fixes from git.

Here is what http streaming looks like. http://youtu.be/iXNi3f8wUJg

Martin
lukemb3
Offline

Member

Posts: 109
Threads: 1
Joined: Jul 2013
#406
2014-03-10, 05:19 AM
Cool stuff. We're actually redesigning the video player to open in the center as you'd expect, so that video will look even better soon.

The double stream we should definitely hunt down though, so if you want to post your server log i'll take a look. make sure debug logging is on (under advanced). thanks.
mvallevand
Offline

Posting Freak

Ontario Canada
Posts: 53,184
Threads: 958
Joined: May 2006
#407
2014-03-10, 11:31 AM
lukemb3 Wrote:Cool stuff. We're actually redesigning the video player to open in the center as you'd expect, so that video will look even better soon.

The double stream we should definitely hunt down though, so if you want to post your server log i'll take a look. make sure debug logging is on (under advanced). thanks.

Here are the logs.

Martin
lukemb3
Offline

Member

Posts: 109
Threads: 1
Joined: Jul 2013
#408
2014-03-10, 03:39 PM
According to the log they were both closed:

2014-03-10 07:22:37.2026 Info - App: Closing live stream from Next Pvr, stream Id: 1
2014-03-10 07:22:37.2026 Debug - App: Closing 1
2014-03-10 07:22:37.2026 Info - App: Deleting partial stream file(s) C:\Users\Martin\AppData\Roaming\MediaBrowser-Server\transcoding-temp\cd4b9a34-b285-cb68-3d88-d65b8b0f0ac1.mp4
2014-03-10 07:22:37.2386 Debug - HttpServer: HTTP GET http://localhost:8096/mediabrowser/Video...ate=128000
2014-03-10 07:22:37.2386 Info - App: Opening channel stream from Next Pvr, external channel Id: 6865
2014-03-10 07:22:37.2386 Debug - App: Streaming http://172.16.3.2:8866/live?channeloid=6...ntid=MB3.2
2014-03-10 07:22:37.2386 Info - App: C:\Users\Martin\AppData\Roaming\MediaBrowser-Server\ffmpeg\20140304\ffmpeg.exe -fflags genpts -re -i "http://172.16.3.2:8866/live?channeloid=6865&clientid=MB3.2" -vcodec libvpx -force_key_frames expr:if(isnan(prev_forced_t),gte(t,.1),gte(t,prev_forced_t+5)) -vf "yadif=0:-1:0,scale=min(iw\,1280):-1" -speed 16 -quality good -profile:v 0 -slices 8 -crf 18 -b:v 1372000 -vsync vfr -map_metadata -1 -threads 2 "C:\Users\Martin\AppData\Roaming\MediaBrowser-Server\transcoding-temp\bc3668b5-0f4b-d5a3-f17c-6668a21f786d.webm"
2014-03-10 07:22:43.3260 Info - App: HttpClientManager GET: http://bot.whatismyipaddress.com/
2014-03-10 07:22:44.3630 Debug - SessionWebSocketListener: Received PlaybackStart message
2014-03-10 07:22:54.7136 Debug - SessionWebSocketListener: Received PlaybackStopped message
2014-03-10 07:22:54.7386 Debug - HttpServer: HTTP DELETE http://localhost:8096/mediabrowser/Video...31639f526d
2014-03-10 07:22:54.7386 Info - App: Killing ffmpeg process for C:\Users\Martin\AppData\Roaming\MediaBrowser-Server\transcoding-temp\bc3668b5-0f4b-d5a3-f17c-6668a21f786d.webm
2014-03-10 07:22:54.7386 Info - App: FFMpeg exited with an error for C:\Users\Martin\AppData\Roaming\MediaBrowser-Server\transcoding-temp\bc3668b5-0f4b-d5a3-f17c-6668a21f786d.webm
2014-03-10 07:22:54.7386 Info - App: Closing live stream from Next Pvr, stream Id: 2
2014-03-10 07:22:54.7516 Debug - App: Closing 2
lukemb3
Offline

Member

Posts: 109
Threads: 1
Joined: Jul 2013
#409
2014-03-10, 03:41 PM
Was this firefox? I'm guessing the mp4 failed so it moved on and tried webm. So we should try and see why the failure occured.

If you go to advanced -> transcoding, enable transcoding debug logging and then repeat the test. then i'll pass the info onto our ffmpeg expert. just make sure to turn that log setting off after you're done because it will create huge logs.
mvallevand
Offline

Posting Freak

Ontario Canada
Posts: 53,184
Threads: 958
Joined: May 2006
#410
2014-03-10, 04:52 PM
lukemb3 Wrote:Was this firefox? I'm guessing the mp4 failed so it moved on and tried webm. So we should try and see why the failure occured.

Yes Firefox on Win7 64. I will try with Firefox and Chrome tonight and send you the logs.

Martin
« Next Oldest | Next Newest »

Users browsing this thread: 2 Guest(s)

Pages (56): « Previous 1 … 39 40 41 42 43 … 56 Next »
Jump to page 


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