NextPVR Forums
  • ______
  • Home
  • New Posts
  • Wiki
  • Members
  • Help
  • Search
  • Register
  • Login
  • Home
  • Wiki
  • Members
  • Help
  • Search
NextPVR Forums Public Add-ons (3rd party plugins, utilities and skins) v
« Previous 1 2 3 4 5 6 … 20 Next »
YouTube Plugin

 
  • 0 Vote(s) - 0 Average
YouTube Plugin
UncleJohnsBand
Offline

Posting Freak

U.S.A.
Posts: 5,643
Threads: 258
Joined: Feb 2005
#271
2012-01-31, 04:00 AM
whurlston Wrote:Zip and post your youtube.xml along with logs.

I think I just got it to work.....I had it in both the program and data directory (trying to have it like Martin did.....) removed from program and just left in data directory (both dll and ffmpeg) and just hit a 1080p recording and it started in about 2 seconds and is streaming fine.....thinking I may be on the right path now....

Although....I am watching the steam......and I am not seeing a buffered file anywhere.... ????
Intel Core i7 @ 4.00GHz Skylake 14nm
ASUSTeK COMPUTER INC. Z170-DELUXE
Windows 10 Pro x64
PVR Software: NPVR 5.1.1
SiliconDust HDHomeRun HDHR5-4US Connect Quatro 4 Channel Tuner
Roku Ultra
2 PCH A-100's
UncleJohnsBand
Offline

Posting Freak

U.S.A.
Posts: 5,643
Threads: 258
Joined: Feb 2005
#272
2012-01-31, 04:02 AM
never mind....I found where they are buffering.....
Intel Core i7 @ 4.00GHz Skylake 14nm
ASUSTeK COMPUTER INC. Z170-DELUXE
Windows 10 Pro x64
PVR Software: NPVR 5.1.1
SiliconDust HDHomeRun HDHR5-4US Connect Quatro 4 Channel Tuner
Roku Ultra
2 PCH A-100's
UncleJohnsBand
Offline

Posting Freak

U.S.A.
Posts: 5,643
Threads: 258
Joined: Feb 2005
#273
2012-01-31, 04:03 AM
This is way freaking cool Whurlston!
Intel Core i7 @ 4.00GHz Skylake 14nm
ASUSTeK COMPUTER INC. Z170-DELUXE
Windows 10 Pro x64
PVR Software: NPVR 5.1.1
SiliconDust HDHomeRun HDHR5-4US Connect Quatro 4 Channel Tuner
Roku Ultra
2 PCH A-100's
whurlston
Offline

Posting Freak

Posts: 7,885
Threads: 102
Joined: Nov 2006
#274
2012-01-31, 04:06 AM
UncleJohnsBand Wrote:This is way freaking cool Whurlston!

Big Grin I was hoping you would approve. Just wait till you see how simple the code was for it. It was so much easier to do it this way than the way I was doing it before.
whurlston
Offline

Posting Freak

Posts: 7,885
Threads: 102
Joined: Nov 2006
#275
2012-01-31, 04:07 AM
UncleJohnsBand Wrote:never mind....I found where they are buffering.....

Are they not buffering to the folder specified in your youtube.xml?
UncleJohnsBand
Offline

Posting Freak

U.S.A.
Posts: 5,643
Threads: 258
Joined: Feb 2005
#276
2012-01-31, 04:11 AM
whurlston Wrote:Are they not buffering to the folder specified in your youtube.xml?

Yep....that is where they were going....I mistyped a directory so it wasn't anywhere near where I thought they were... Smile

Only pain point now is the loading of the feeds.....seems as though they degraded with this release.....I have not been able to get the initial feed to load going into the plugin at all....tried Marin's hack of hitting the down key after about 10 seconds but still end up with an empty list....then I go into feeds change the feed wait about 10 seconds and use the down key approach and the feed appears.

Other than that I am very happy. I tried a couple of videos I looked at over the weekend that took forever to download and they now play instantly......
Intel Core i7 @ 4.00GHz Skylake 14nm
ASUSTeK COMPUTER INC. Z170-DELUXE
Windows 10 Pro x64
PVR Software: NPVR 5.1.1
SiliconDust HDHomeRun HDHR5-4US Connect Quatro 4 Channel Tuner
Roku Ultra
2 PCH A-100's
whurlston
Offline

Posting Freak

Posts: 7,885
Threads: 102
Joined: Nov 2006
#277
2012-01-31, 04:14 AM (This post was last modified: 2012-01-31, 04:18 AM by whurlston.)
I'm trying to track down that bug. Annoyingly, it only happens on the NMT for me and not the PC. You can check the logs to see how long the feed download is taking:
Code:
2012-01-30 18:34:05.968    [DEBUG][1]    YouTube: Retrieving https://gdata.youtube.com/feeds/api/videos?v=2&start-index=1&max-results=50&author=KidsTV123

...

2012-01-30 18:34:10.415    [DEBUG][1]    YouTube: Got 104 results
2012-01-30 18:34:10.417    [INFO][1]    YouTube: Feed Download Complete
2012-01-30 18:34:10.417    [INFO][1]    YouTube: PopulateList() called...
2012-01-30 18:34:14.717    [DEBUG][1]    YouTube: Closing popup before displaying UIList.
2012-01-30 18:34:14.717    [DEBUG][1]    ActivatePopup: null
2012-01-30 18:34:14.717    [DEBUG][1]    deactivating old popup: Popup
2012-01-30 18:34:14.718    [DEBUG][1]    Going to dispose popup at end of animation
2012-01-30 18:34:17.386    [DEBUG][1]    Calling dispose on old popup(2): Popup
mvallevand
Offline

Posting Freak

Ontario Canada
Posts: 53,191
Threads: 958
Joined: May 2006
#278
2012-01-31, 04:17 AM
Before running PopulateList try

PluginHelperFactory.GetPluginHelper().ShowMessage("");
PluginHelperFactory.GetPluginHelper().ForceRender();

Martin
whurlston
Offline

Posting Freak

Posts: 7,885
Threads: 102
Joined: Nov 2006
#279
2012-01-31, 04:25 AM
I was already calling SetPopup(null) but I had removed the ForceRender option. I think the issue was though that, in moving code around, I was setting the popup to null after I was calling uiList.SetListObjects() instead of before.

Try this and see if it helps (I can't test at the moment).
UncleJohnsBand
Offline

Posting Freak

U.S.A.
Posts: 5,643
Threads: 258
Joined: Feb 2005
#280
2012-01-31, 04:28 AM
whurlston Wrote:I'm trying to track down that bug. Annoyingly, it only happens on the NMT for me and not the PC. You can check the logs to see how long the feed download is taking:
Code:
2012-01-30 18:34:05.968    [DEBUG][1]    YouTube: Retrieving https://gdata.youtube.com/feeds/api/videos?v=2&start-index=1&max-results=50&author=KidsTV123

...

2012-01-30 18:34:10.415    [DEBUG][1]    YouTube: Got 104 results
2012-01-30 18:34:10.417    [INFO][1]    YouTube: Feed Download Complete
2012-01-30 18:34:10.417    [INFO][1]    YouTube: PopulateList() called...
2012-01-30 18:34:14.717    [DEBUG][1]    YouTube: Closing popup before displaying UIList.
2012-01-30 18:34:14.717    [DEBUG][1]    ActivatePopup: null
2012-01-30 18:34:14.717    [DEBUG][1]    deactivating old popup: Popup
2012-01-30 18:34:14.718    [DEBUG][1]    Going to dispose popup at end of animation
2012-01-30 18:34:17.386    [DEBUG][1]    Calling dispose on old popup(2): Popup

In my case...it appears that it is finding 0.....not sure why it isn't keeping the last feed I selected as the default.....looks like it goes back to linked all the time...

Code:
2012-01-30 22:52:08.173    [INFO][3]    YouTube: Activate() called...
2012-01-30 22:52:08.174    [DEBUG][3]    YouTube: Applying user settings.
2012-01-30 22:52:08.175    [INFO][3]    YouTube: Initialize() called...
2012-01-30 22:52:08.175    [INFO][3]    YouTube: Initializing base...
2012-01-30 22:52:08.177    [DEBUG][3]    Element not found: /Skin/Element[@name="ButtonList"]
2012-01-30 22:52:08.213    [INFO][3]    YouTube: PopulateList() called...
2012-01-30 22:52:08.215    [DEBUG][3]    YouTube: Closing popup before displaying UIList.
2012-01-30 22:52:08.218    [DEBUG][3]    Youtube: PluginCallback(Videos, Most Linked)
2012-01-30 22:52:08.240    [DEBUG][3]    YouTube: Retrieving https://gdata.youtube.com/feeds/api/standardfeeds/most_linked?v=2&start-index=1&max-results=50
2012-01-30 22:52:08.251    [DEBUG][3]    ACTIVATE_PLUGIN: YouTube
2012-01-30 22:52:08.251    [DEBUG][3]    YouTube: IEventNotification(ACTIVATE_PLUGIN, YouTube)
2012-01-30 22:52:08.251    [DEBUG][3]    OnKeyDown() complete
2012-01-30 22:52:08.251    [DEBUG][3]    MVP sending frame
2012-01-30 22:52:08.372    [DEBUG][14]    PluginResolveEventHandler: System.ResolveEventArgs
2012-01-30 22:52:08.372    [DEBUG][14]    Known plugin directories:
2012-01-30 22:52:08.372    [DEBUG][14]     - PlexPlugin, Version=0.5.4373.28690, Culture=neutral, PublicKeyToken=null
2012-01-30 22:52:08.372    [DEBUG][14]     - SearchLite, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
2012-01-30 22:52:08.372    [DEBUG][14]     - YouTube, Version=1.0.1.0, Culture=neutral, PublicKeyToken=null
2012-01-30 22:52:08.372    [DEBUG][14]     - MusicBox4, Version=9.3.0.34872, Culture=neutral, PublicKeyToken=null
2012-01-30 22:52:08.372    [DEBUG][14]     - SearchLite, Version=1.4.5.15230, Culture=neutral, PublicKeyToken=null
2012-01-30 22:52:08.372    [DEBUG][14]    Checking stack
2012-01-30 22:52:08.374    [DEBUG][14]     - NUtility, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
2012-01-30 22:52:08.374    [DEBUG][14]     - mscorlib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
2012-01-30 22:52:08.374    [DEBUG][14]     - mscorlib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
2012-01-30 22:52:08.374    [DEBUG][14]     - mscorlib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
2012-01-30 22:52:08.374    [DEBUG][14]     - mscorlib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
2012-01-30 22:52:08.374    [DEBUG][14]     - mscorlib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
2012-01-30 22:52:08.374    [DEBUG][14]     - System.Xml, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
2012-01-30 22:52:08.374    [DEBUG][14]     - System.Xml, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
2012-01-30 22:52:08.374    [DEBUG][14]     - System.Xml, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
2012-01-30 22:52:08.374    [DEBUG][14]     - YouTube, Version=1.0.1.0, Culture=neutral, PublicKeyToken=null
2012-01-30 22:52:08.374    [DEBUG][14]    Looking for missing assembly(1): D:\Users\Public\NPVR\Plugins\YouTube\YouTube.XmlSerializers.dll
2012-01-30 22:52:08.374    [DEBUG][14]    Looking for assembly in (2) D:\Users\Public\NPVR\Plugins\common\YouTube.XmlSerializers.dll
2012-01-30 22:52:08.374    [DEBUG][14]    Looking for assembly in (3) C:\Program Files (x86)\NPVR\Plugins\common\YouTube.XmlSerializers.dll
2012-01-30 22:52:08.558    [DEBUG][14]    [B][color=#FF0000]YouTube: Got 0 results[/color][/B]
2012-01-30 22:52:08.559    [INFO][14]    YouTube: Feed Download Complete
2012-01-30 22:52:08.559    [INFO][14]    YouTube: PopulateList() called...
2012-01-30 22:52:08.559    [DEBUG][14]    YouTube: Closing popup before displaying UIList.
2012-01-30 22:52:08.559    [DEBUG][14]    UiStatic.Dispose()
Intel Core i7 @ 4.00GHz Skylake 14nm
ASUSTeK COMPUTER INC. Z170-DELUXE
Windows 10 Pro x64
PVR Software: NPVR 5.1.1
SiliconDust HDHomeRun HDHR5-4US Connect Quatro 4 Channel Tuner
Roku Ultra
2 PCH A-100's
« Next Oldest | Next Newest »

Users browsing this thread: 2 Guest(s)

Pages (65): « Previous 1 … 26 27 28 29 30 … 65 Next »
Jump to page 


Possibly Related Threads…
Thread Author Replies Views Last Post
  Using R5000-HD with Network Recorder Plugin checkbin99 255 52,425 2021-08-24, 07:50 PM
Last Post: checkbin99
  how to configure RemoteRecorder Plugin to use remote NextPVR instance? bm_00 5 3,139 2020-10-06, 12:32 PM
Last Post: mvallevand
  Connecting NVPR to Emby Plugin NVPR Geek 0 1,366 2018-06-10, 12:32 AM
Last Post: NVPR Geek
  Newb here: Can someone help with a Plex Plugin issue? wepham 1 3,242 2017-02-07, 07:10 AM
Last Post: petenshari
  System Plugin Confused by New NPVR Naming Scheme Lao Pan 1 2,745 2016-09-25, 08:26 AM
Last Post: imilne
  Movies2 Plugin Problem... Anyone using it? ga_mueller 5 4,492 2016-08-22, 07:02 PM
Last Post: ga_mueller
  Plex Plugin Nikkie300 4 6,210 2016-01-24, 05:59 PM
Last Post: Nikkie300
  NextPVR Plex plugin, no live TV ajmast 15 9,694 2015-10-29, 03:45 AM
Last Post: ajmast
  Cant restart record service using System plugin on 3.4.8 shaunpatrick77 3 2,847 2015-05-19, 02:20 PM
Last Post: imilne
  Files Plugin crashes when there is an ' in the file name. cbgifford 89 29,726 2015-01-28, 05:19 AM
Last Post: mvallevand

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

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

Linear Mode
Threaded Mode