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) Old Stuff (Legacy) UbuStream, Web Radio and Universe v
« Previous 1 … 4 5 6 7 8 Next »
UbuStream v2.1 Beta finally available

Thread Closed 
 
  • 0 Vote(s) - 0 Average
UbuStream v2.1 Beta finally available
ubu
Offline

Posting Freak

Posts: 792
Threads: 54
Joined: Jan 2006
#101
2007-04-13, 04:03 AM (This post was last modified: 2007-04-13, 04:17 AM by ubu.)
JavaWiz Wrote:Here is the log file. I also pasted the exception from the debugger at the end.
So the first log message in the destructor (Finalize method) wasn't getting written so that looks like the culprit. I've commented out all the code in that method (since, if the exception was being thrown on the first line, presumably the rest of the code never got executed). Try this version of the plugin dll and see if it fixes the problem: [ATTACHMENT NOT FOUND]

I guess I was just being over-enthusiastic in my clean up efforts. Hopefully the garbage collector will take care of any lingering player objects. If your "forum name" means what it suggests, you should be able to tell me what I ought to be doing Wink (although the C# garbage collector works a little differently from Java, I believe).
[SIZE=1]GBPVR v1.3.11 [/SIZE][SIZE=1]HVR-1250, [/SIZE][SIZE=1]ES7300[/SIZE][SIZE=1], 4GB, GeForce 9300, LianLi, Vista.[/SIZE]
[SIZE=1]GBPVR v1.0.08 [/SIZE][SIZE=1]PVR-150, [/SIZE][SIZE=1]P4 2.26GHz, [/SIZE][SIZE=1]1GB,[/SIZE][SIZE=1] GeForce 6200, [/SIZE]Coupden, XP[SIZE=1]
[/SIZE]

Author: UbuStream plugin, UbuRadio plugin, EPGExtra utility.
ralphy
Offline

Senior Member

Posts: 255
Threads: 51
Joined: Nov 2006
#102
2007-04-15, 06:18 AM
Ubu, I know you have been thinking about this issue - Is the passing of command line parameters to a dynsource implemented yet?

I have completed a new BBC dynsource app that can take command line arguments for users to choose between realplayer and WMP streams; the UK or International versions; and broadband (for the lucky ones in the UK), or narrowband. The dynsource is being tested at the moment, and seems to be working ok so far.
[SIZE="1"]Silverstone GD01S-MXR (three dead rows of pixels in the LCD and defective remote control), Power: Zalman ZM460B-APS (blew up - can't remember what's there now); CPU: Pentium D 3.2 GHz with Asus V72 Cooler; MD: Asus P5LD2 Deluxe 2048MB,
WDC WD10EADS 1TB Data, 320GB System, Asus EN9400GT Silent 512MB, Hauppauge HVR 1300,
XP Home SP3, GB-PVR 2.0, ExternalDisplay v0.3[/SIZE]
ubu
Offline

Posting Freak

Posts: 792
Threads: 54
Joined: Jan 2006
#103
2007-04-15, 08:54 AM
ralphy Wrote:Ubu, I know you have been thinking about this issue - Is the passing of command line parameters to a dynsource implemented yet?

I have completed a new BBC dynsource app that can take command line arguments for users to choose between realplayer and WMP streams; the UK or International versions; and broadband (for the lucky ones in the UK), or narrowband. The dynsource is being tested at the moment, and seems to be working ok so far.
Aha! You hit the nail right on the head. One of the reasons I was thinking about adding command line parameters was when I was looking at re-writing the BBC DynSource app myself and I realized exactly the same thing you did. Big Grin The URLs for each of those options is available in the BBC pages and it would, indeed, be very nice to offer users the option of which kind of stream they wanted.

I actually got as far as adding code for simple parm passing when I realized I hadn't fully thought it out, so I removed it again. I'd provided a field on the DynSource config panel so users could enter a free-form set of parms, but that seemed a bit lame. Seems like a DynSource app should be able to a publish a form (or forms) to allow users to customize/configure the app's behaviour and that UbuStream should have a better integrated way of displaying the forms. I had a shot at doing this with the YouTube and Google Video DynSource apps, but they are a somewhat awkward implementation. Probably the form part should have been decoupled from the main dynsource code to allow greater flexibility.

One approach would be for you to use a .Net application configuration file which you could read at run time, using the .Net Configuration Manager, to get the parm values you want to use. This is incredibly easy to set up (I can give you the code to do it if you need it). For now, the config file could be created/changed manually. Then we can figure out the best way to maintain the config file from UbuStream (via a custom form, or whatever) later.

btw - I got your PM. Just haven't had time to reply yet (and I want my reply to make sense Smile ). Maybe we should add this issue to that ongoing discussion.
[SIZE=1]GBPVR v1.3.11 [/SIZE][SIZE=1]HVR-1250, [/SIZE][SIZE=1]ES7300[/SIZE][SIZE=1], 4GB, GeForce 9300, LianLi, Vista.[/SIZE]
[SIZE=1]GBPVR v1.0.08 [/SIZE][SIZE=1]PVR-150, [/SIZE][SIZE=1]P4 2.26GHz, [/SIZE][SIZE=1]1GB,[/SIZE][SIZE=1] GeForce 6200, [/SIZE]Coupden, XP[SIZE=1]
[/SIZE]

Author: UbuStream plugin, UbuRadio plugin, EPGExtra utility.
JavaWiz
Offline

Posting Freak

Jacksonville, FL. USA
Posts: 2,522
Threads: 141
Joined: Dec 2006
#104
2007-04-16, 02:48 AM
Good News, Bad News...

Good News, the patch seem to fix UbuStreamPluginTask error.
Bad News, now the UbuRadioPluginTask is getting the error.

System.ObjectDisposedException was unhandled
Message="Cannot access a closed file."
Source="mscorlib"
ObjectName=""
StackTrace:
at System.IO.__Error.FileNotOpen()
at System.IO.FileStream.Write(Byte[] array, Int32 offset, Int32 count)
at System.IO.StreamWriter.Flush(Boolean flushStream, Boolean flushEncoder)
at System.IO.StreamWriter.Flush()
at GBPVR.Public.Logger.LogMessage(Int32 level, String message)
at GBPVR.Public.Logger.Info(String message)
at UbuRadio.UbuRadioPluginTask.Finalize()
ubu
Offline

Posting Freak

Posts: 792
Threads: 54
Joined: Jan 2006
#105
2007-04-16, 06:56 AM
JavaWiz Wrote:Good News, Bad News...

Good News, the patch seem to fix UbuStreamPluginTask error.
Bad News, now the UbuRadioPluginTask is getting the error.
Yup, same problem. Try this fixed version: [ATTACHMENT NOT FOUND] Sounds like you haven't noticed any adverse effects from my removing the Finalize logic from the UbuStream plugin so, hopefully, UbuRadio will be the same.
[SIZE=1]GBPVR v1.3.11 [/SIZE][SIZE=1]HVR-1250, [/SIZE][SIZE=1]ES7300[/SIZE][SIZE=1], 4GB, GeForce 9300, LianLi, Vista.[/SIZE]
[SIZE=1]GBPVR v1.0.08 [/SIZE][SIZE=1]PVR-150, [/SIZE][SIZE=1]P4 2.26GHz, [/SIZE][SIZE=1]1GB,[/SIZE][SIZE=1] GeForce 6200, [/SIZE]Coupden, XP[SIZE=1]
[/SIZE]

Author: UbuStream plugin, UbuRadio plugin, EPGExtra utility.
JavaWiz
Offline

Posting Freak

Jacksonville, FL. USA
Posts: 2,522
Threads: 141
Joined: Dec 2006
#106
2007-04-17, 06:21 AM
Patch seemed to fix the problems. I've had no more exceptions. Thanks.
ubu
Offline

Posting Freak

Posts: 792
Threads: 54
Joined: Jan 2006
#107
2007-05-03, 03:07 AM
I've decided to "declare victory" on the v2.1 beta as it seems fairly stable now. Trouble is, I haven't had time to update the wiki because I've been working on the next release (v2.2). So I'm just calling the v2.1 release an "enhanced version" (see the wiki) and I'll wait till v2.2 is ready before I do another "official" release (with updated wiki pages, docs., etc.).

The v2.1 setup app available on the wiki is the most recent cut. I won't be able to fix bugs (unless they're critical ones) for a while since I've switched my development environment to v2.2 (which has some radical changes under the hood).

Watch this forum for an "opportunity" Big Grin to participate in the v2.2 beta. Things I'm working on: an n-tier group hierarchy (allowing groups within groups or a mix of groups and stations within groups), station image display, re-jigged DynSource logic to support multi-tier groups and a few other things.
[SIZE=1]GBPVR v1.3.11 [/SIZE][SIZE=1]HVR-1250, [/SIZE][SIZE=1]ES7300[/SIZE][SIZE=1], 4GB, GeForce 9300, LianLi, Vista.[/SIZE]
[SIZE=1]GBPVR v1.0.08 [/SIZE][SIZE=1]PVR-150, [/SIZE][SIZE=1]P4 2.26GHz, [/SIZE][SIZE=1]1GB,[/SIZE][SIZE=1] GeForce 6200, [/SIZE]Coupden, XP[SIZE=1]
[/SIZE]

Author: UbuStream plugin, UbuRadio plugin, EPGExtra utility.
jksmurf
Offline

Posting Freak

HK (DMBTH)
Posts: 3,590
Threads: 410
Joined: Jul 2005
#108
2007-05-03, 04:15 AM (This post was last modified: 2008-04-27, 02:25 PM by jksmurf.)
ubu

I installed both Stream and radio latest versions with the intention of trying out the uninstall for Stream. You may remember I recommended installing radio and stream in GBPVR?

Well the new (beta) stream installed in the MAIN branch of start menu progs (under Windows Movie Maker), and radio in GBPVR. SO I uninstalled it out of the main branch and when I check the GBPVR branch Radio AND stream was there? Maybe it was a previous install. Anyway, it won't UNinstall from there. Can I just delete it manually?

k.
ASUS STRIX X470-F AMD 2700x 4GHz | Win10Prox64 | 32GB | NVIDIA GEforce GT1030 Fanless | WinTV DMB-TH | WinTV HVR-1280 | Hauppauge Colossus | AC86U/AC68U | USB-UIRT | RPi4 Libreelec | Sony Bravia LCD X9000F Android TV |
ubu
Offline

Posting Freak

Posts: 792
Threads: 54
Joined: Jan 2006
#109
2007-05-03, 05:55 AM
jksmurf Wrote:I installed both Stream and radio latest versions with the intention of trying out the uninstall for Stream. You may remember I recommended installing radio and stream in GBPVR?
Yes, indeed. I took your advice, so it should be creating the UbuStream and UbuRadio folders inside the GB-PVR start menu folder.

Quote: Well the new (beta) stream installed in the MAIN branch of start menu progs (under Windows Movie Maker), and radio in GBPVR. SO I uninstalled it out of the main branch and when I check the GBPVR branch Radio AND stream was there? Maybe it was a previous install. Anyway, it won't UNinstall from there.
I did have a bug in the setup program(s) where, if a previous install had installed the folders in the main start menu branch, its registry entry was overriding the new location (in the GB-PVR folder). I thought I'd fixed it (famous last words Wink ).

If the GB-PVR folder does, in fact contain folders for UbuStream and UbuRadio then your install is probably good. The UbuStream Plugin v2.1 folder in the main start menu is probably just left over from the old version. (The new folder is called "UbuStream"; the old installer created one called "UbuStream Plugin v2.1"). The installer should be removing the old one, but for some reason, it didn't remove yours. I probably should warn people that they should explicitly uninstall any old version of v2.1 before installing the new one. (The problem will only affect people who have been helping with the v2.1 beta testing. V2.0 didn't create any start menu entries.)

Quote:Can I just delete it manually?
Manually deleting the old start menu entries should be fine. If the new folders in the GB-PVR folder look OK (and the menu items work when you click them Big Grin ) then the registry entries are probably pointing to the GB-PVR folder and future installs should work OK.

Thanks for testing the setup apps, btw. It's incredibly hard to test for all possible situations (especially with both plugins in play) so your findings are appreciated. Smile
[SIZE=1]GBPVR v1.3.11 [/SIZE][SIZE=1]HVR-1250, [/SIZE][SIZE=1]ES7300[/SIZE][SIZE=1], 4GB, GeForce 9300, LianLi, Vista.[/SIZE]
[SIZE=1]GBPVR v1.0.08 [/SIZE][SIZE=1]PVR-150, [/SIZE][SIZE=1]P4 2.26GHz, [/SIZE][SIZE=1]1GB,[/SIZE][SIZE=1] GeForce 6200, [/SIZE]Coupden, XP[SIZE=1]
[/SIZE]

Author: UbuStream plugin, UbuRadio plugin, EPGExtra utility.
« Next Oldest | Next Newest »

Users browsing this thread: 1 Guest(s)

Pages (11): « Previous 1 … 7 8 9 10 11
Jump to page 


Possibly Related Threads…
Thread Author Replies Views Last Post
  Ubustream not working preview neither timeshitf play Toni 2 3,041 2009-05-27, 07:59 PM
Last Post: Toni
  Imposible to start ubustream Toni 3 3,087 2009-05-27, 12:02 PM
Last Post: Toni
  UbuStream plugin - support ubu 42 44,830 2009-03-26, 12:41 AM
Last Post: am2pgs
  UBUStream and version 1.3.11 seansco 10 6,487 2009-03-11, 01:07 PM
Last Post: seansco
  Using Ubustream with MediaMVPs jbyram2 33 39,716 2008-12-12, 04:50 PM
Last Post: jbyram2
  No mouse in web pages from Ubustream 2.2 aa7 0 2,361 2008-03-21, 04:13 AM
Last Post: aa7
  Run external app before UbuStream playback? sgilani 9 4,206 2008-03-16, 05:09 AM
Last Post: sgilani
  YouTube not working via VLC/Ubustream gazoo 4 4,884 2008-03-10, 03:16 PM
Last Post: gazoo
  uefa futsal in ubustream? sglebs 0 2,138 2008-03-02, 03:14 AM
Last Post: sglebs
  Ubustream in PVRX2 markfarey 4 3,759 2008-02-27, 02:42 AM
Last Post: markfarey

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

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

Linear Mode
Threaded Mode