- Thread starter
- #331
title = cont.Remove(0, InStr(cont, "browse/post/"))
title = title.Remove(0, Len("browse/post/") - 1)
id = title.Remove(InStr(title, "/") - 1)
title = title.Remove(0, InStr(title, ">"))
title = title.Remove(InStr(title, "<") - 1)
size = cont.Remove(0, InStr(cont, "fileSize"))
size = size.Remove(0, InStr(size, ">"))
size = size.Remove(0, InStr(size, ">"))
size = size.Remove(InStr(size, "<") - 1)
cat = cont.Remove(0, InStr(cont, "/browse/category"))
cat = cat.Remove(0, InStr(cat, ">"))
cat = cat.Remove(InStr(cat, "<") - 1)
Dim r As Regex = New Regex("\s\s")
cat = r.Replace(cat, "")
cat = cat.Replace(";", " | ")
cat = cat.Replace(":", ": ")
cat = cat.Replace(" ,", ", ")
cat = cat.Replace(" ", " ")
title = title.Replace("&", "&")
Pulzar,
I certainly do appreciate the work you've done there, but I'm not exactly sure what the problem was to begin with? Newzbin works fine for me. Is that for a different listings style than v3 attrs in table? Again, though, I do appreciate the work you've done.
bazz,
Implementation of an nzbplayer like interface has definitely been discussed before, but I'm not sure it's going to happen for quite some time. I would personally never use it, but that's not really an issue as I'm more than happy to accommodate. If someone wants to do the backend work and write the unraring (from a non-complete set) routines, I'd gladly implement it in MyUsenet. g_player (MediaPortal's DirectShow player) won't play video data from a memory stream as far as I know, so it would have to be sent to VLC or mplayer as Pulzar said. It's not something I'm against doing, it's just not something I want to spend a lot of time on. Streaming video from non-complete rar sets has been requested in MediaPortal for quite some time and I still don't think there's a clean solution for it. I've actually already added an option to, instead of downloading it, take whatever action you've specified when clicking an NZB. This will allow you to launch nzbplayer. It's not exactly ideal, but it does work for now.
Pulzar,
I certainly do appreciate the work you've done there, but I'm not exactly sure what the problem was to begin with? Newzbin works fine for me. Is that for a different listings style than v3 attrs in table? Again, though, I do appreciate the work you've done.