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) GB-PVR Support (legacy) v
« Previous 1 … 641 642 643 644 645 … 1231 Next »
YouTube plugin (0.99.5)

 
  • 0 Vote(s) - 0 Average
YouTube plugin (0.99.5)
HtV
Offline

Posting Freak

Posts: 3,470
Threads: 46
Joined: Dec 2005
#11
2006-12-22, 08:17 PM
Wild guess: could it be a permission thing? FFmpeg not having permission to open the flv files.
AMD Athlon 64 3000, HDD: 80, 120, 200 GB, Hauppauge 350 + 150, MVP, Asus 6000L Laptop client, Asus X50sl client,
Fritz!box 7140 modem/router, GBPVR 1.3.7.
nkh
Offline

Senior Member

Posts: 418
Threads: 14
Joined: Jan 2004
#12
2006-12-22, 08:29 PM (This post was last modified: 2006-12-22, 08:35 PM by nkh.)
Hmm, very interesting... Smile I opened the ffdshow config thing and closed it and then tried the ffmpeg.exe command again, and now I get a working mpg file!

However, when I select a video it still just downloads it and jumps back to the plugin. I do get a working vmr9.mpg file now, but somehow GBpvr doesn't play it...

Code:
22-12-2006 21:21:25.897    INFO    [1]    playFile(DONALD TRUMP VS. ROSIE, F:\PVR\VMR9.mpg)
22-12-2006 21:21:25.897    VERBOSE    [1]    getValue() loading new key/value into cache: /settings/InternalDvbSubDisplay
22-12-2006 21:21:25.897    VERBOSE    [1]    getValue: /settings/InternalDvbSubDisplay : true
22-12-2006 21:21:25.897    VERBOSE    [1]    getValue cached value: /settings/InternalSRTDisplay : true
22-12-2006 21:21:26.069    VERBOSE    [1]    About to play file: F:\PVR\VMR9.mpg
22-12-2006 21:21:27.647    VERBOSE    [1]    Error starting transcode: System.Exception: Failure playing back file
   at NativeUtilities.MediaHelper.playVideoFile(String filename, Form form)
   at GBPVR.x977e0aa739bd29d7.x826e5d374a1e5ab9(String x08ae7e3cf7a53434, String xfd3291a7ebc13c43, String x555fc8ac0bf47dac, Int32 xf26801b263fa79ba)
   at GBPVR.xbb1566157f5f8b1f.PlayVideoFile(String title, String filename)
   at GBPVR.xa80c4fa0df664a15.render(Boolean& requiresMoreRendering)

Update: While the resulting vmr9.mpg file does play in VLCplayer, GBpvr gives an error when I try to play it from the Video Library...
Nicolai [SIZE="1"]- http://www.nk-h.dk
Current htpc - Asus N4L-VM DH, Core Duo 2GHz, 2GB RAM, Hauppauge PVR-500 mce, Twinhan DVB-C CI, TerraTec Cinergy 1200 DVB-C, nVidia 8800 GTS (using S-video tv-out), decoding dvb-c with ACamd 0.5.0.9, Yanksee and a Viaccess card from YouSee.[/SIZE]
nkh
Offline

Senior Member

Posts: 418
Threads: 14
Joined: Jan 2004
#13
2006-12-22, 08:51 PM
yay, thanks all for your help Smile

I still don't know what the problem was.. other than it's probably some strange ffdshow thing on my computer... first I didn't get the vmr9.mpg file, then I got the file but gbpvr didn't play it, then I got gbpvr to play it but with a black screen, and now... voila, it plays just fine Smile
Nicolai [SIZE="1"]- http://www.nk-h.dk
Current htpc - Asus N4L-VM DH, Core Duo 2GHz, 2GB RAM, Hauppauge PVR-500 mce, Twinhan DVB-C CI, TerraTec Cinergy 1200 DVB-C, nVidia 8800 GTS (using S-video tv-out), decoding dvb-c with ACamd 0.5.0.9, Yanksee and a Viaccess card from YouSee.[/SIZE]
zehd
Offline

Posting Freak

Posts: 5,119
Threads: 249
Joined: Feb 2006
#14
2006-12-23, 12:48 AM
Quote:Sub, I received this on a video from YouTube as well, FFmpeg was complaining about the output of mpeg1/2 not supporting the 12fps of the input flv file, gave an error of #0.0 and was saying to check parameters. It did it on one file and that was it, all of the other videos played fine. Of course since I was tired last night I didn't even think to save the original flv file for later inspection. :o

Brian

I notice two things from posts in this thread. The log shows a command with a double slash. I don't know how to fix that though...

Code:
C:\Programmer\devnz\gbpvr[B]\\[/B]Third Party\FFmpeg\ffmpeg.exe -y -i "F:\PVR\VMR9.flv" -b 3400k -acodec mp3 -ac 2 -ab 128 -f svcd "F:\PVR\VMR9.mpg"

And an error related to framerate... When we were testing this, I had sub remove the -r 25 (which is a specific framerate for PAL) The NTSC world would use -r 29.97

Perhaps you want to edit the config.xml entry and see if it helps...

In PAL World:
Code:
<!-- YouTube conversions -->
  <YouTubeFFmpegTranscodeCmdLine>-y -i "{SOURCE_FILE}" -b 3400k -acodec mp3 -ac 2 -ab 128 [B]-r 25[/B] -f svcd "{DEST_FILE}"</YouTubeFFmpegTranscodeCmdLine>

In NTSC World:
Code:
<!-- YouTube conversions -->
  <YouTubeFFmpegTranscodeCmdLine>-y -i "{SOURCE_FILE}" -b 3400k -acodec mp3 -ac 2 -ab 128 [B]-r 29.97[/B] -f svcd "{DEST_FILE}"</YouTubeFFmpegTranscodeCmdLine>

Good luck
Frank Z
[COLOR="Gray"]
I used to ask 'why?' Now I just reinstall...
[SIZE="1"]______________________________________________
Author: ZTools: ZProcess, MVPServerChecker; UltraXMLTV Enhancer, Renamer, Manager; [/SIZE]
[/COLOR]
BrainStormer
Offline

Senior Member

Posts: 544
Threads: 38
Joined: Oct 2005
#15
2006-12-23, 11:07 PM
This is kind of a wish list but what would be nice is to either have the plugin donwload and place the transcoded videos in one of the video directories, or show a transcoding process bar and a button to play after transcoding is done.

This would help those of us with less CPU Power.
offrotor
Offline

Member

Posts: 69
Threads: 11
Joined: Nov 2005
#16
2006-12-30, 06:08 AM
I have this same problem.... It just poped up on me, it was working fine this morning. I must of changed something, I just cant find what...?

still investigating.
zehd
Offline

Posting Freak

Posts: 5,119
Threads: 249
Joined: Feb 2006
#17
2006-12-30, 06:40 AM
I will bet you good money that these problems were what made the dinosaurs die off too...
Frank Z
[COLOR="Gray"]
I used to ask 'why?' Now I just reinstall...
[SIZE="1"]______________________________________________
Author: ZTools: ZProcess, MVPServerChecker; UltraXMLTV Enhancer, Renamer, Manager; [/SIZE]
[/COLOR]
« Next Oldest | Next Newest »

Users browsing this thread: 1 Guest(s)

Pages (2): « Previous 1 2


Possibly Related Threads…
Thread Author Replies Views Last Post
  What LCD Plugin or Utility to use these days? Snooze 66 22,608 2011-04-06, 02:51 AM
Last Post: Snooze
  Analog HD Recording Plugin To Record 16:9 Widescreen BTJustice 18 6,207 2010-09-12, 05:14 AM
Last Post: johnsonx42
  Where is "enable multidec plugin support" tcmy95 2 1,609 2009-12-06, 10:58 PM
Last Post: tcmy95
  1.3.11 Slick Plugin Specific Backgrounds don't load crlorentzen 1 1,309 2009-08-29, 03:23 AM
Last Post: crlorentzen
  How to add a plugin to the selction list DRL 2 1,627 2009-08-27, 05:19 AM
Last Post: DRL
  1.3.7 - Crash in Settings plugin JavaWiz 3 1,942 2009-08-24, 06:06 PM
Last Post: gEd
  Video Plugin - Looking for Suggestions Kevina 6 3,182 2009-08-20, 04:00 AM
Last Post: Kevina
  CONFIG: Error Loading Plugin List LewE 26 6,092 2009-06-17, 09:57 PM
Last Post: LewE
  Small "incremental update" bug in recordings plugin Sheik Yerbouti 8 2,894 2009-05-31, 08:35 PM
Last Post: mvallevand
  Can not view channels after remove TV Listings Plugin SUPERMAN40 7 2,370 2009-04-11, 11:47 PM
Last Post: HtV

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

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

Linear Mode
Threaded Mode