Sponsored links

Go Back   MP3Car.com > Mp3Car Technical > Software & Software Development > Front Ends > Road Runner > RR Plugins > RR Released Plugins


Reply
 
Share Thread Tools Display Modes
Old 07-13-2009, 04:44 PM   #91
The Last Good Gremlin
 
GizmoQ's Avatar
 
Join Date: Nov 2004
Location: St Louis
Posts: 1,933
GizmoQ has a spectacular aura aboutGizmoQ has a spectacular aura about
O.K. I'm confused (nothing new here). Your sample skin has buttons not listed in your skin commands.txt file. My skin from waaaaaay back has buttons for "YT_STOP" and "YT_ABORT" that no longer work. And your use of "TRACKNAME" label scares me, but I have this plugin installed and working in the youtube.skin screen but my CPU usage is spiked and attempts at resizing aren't working.

I use "TRACKNAME" in just about every screen of my skin and after loading a video in the youtube.skin, TRACKNAME won't revert back to its original source. I thought if I went to audio_player.skin, double-clicked a song, and back to my main menu it work correct itself, but no such luck. Does "YT_MOVIE" still exist? It worked with my previous install.
__________________
HARDWARE: Fujitsu Stylistic ST5031w/WiFi and dock, internal MP3Car 80G HD,, external 1TB HD, Sierra Wireless Aircard 550, DVD-RW, Silabs FM, WinTV USB, XM Commander w/Timetrax USB, Delorme GPS, Saitek X-52 joystick, BluSoleil Bluetooth, TPMS, FB, Elm327
GizmoQ is offline   Reply With Quote
Sponsored links
Advertisement
 
Advertisement
Old 07-13-2009, 05:33 PM   #92
FLAC
 
EL CAMINO's Avatar
 
Join Date: Jul 2005
Location: upland california us
Posts: 1,012
EL CAMINO is on a distinguished road
i just tested "TrackName" and it does work, as soon as the audio source changes trackname does as well, i'm adding things little by little as i go, i remember that it was you who ask for trackname instead of "YT_Movie", the use of "AlbumArt" instead of "YT_ART". and i agree that is more friendly this way. true that stop, and abort arent working yet. will add those soon, honestly i didnt even bother because no one asked....
EL CAMINO is offline   Reply With Quote
Old 07-13-2009, 06:39 PM   #93
The Last Good Gremlin
 
GizmoQ's Avatar
 
Join Date: Nov 2004
Location: St Louis
Posts: 1,933
GizmoQ has a spectacular aura aboutGizmoQ has a spectacular aura about
Quote: Originally Posted by EL CAMINO View Post
... as soon as the audio source changes trackname does as well

Based on what input/toggle/label/indicator/etc???? The fact that its read into trackname is GREAT and you're right I asked for it. I know its my own fault, but I need to know what's used to switch it back cause its not happening on my system.



Quote: Originally Posted by EL CAMINO View Post
i'm adding things little by little as i go, true that stop, and abort arent working yet. will add those soon, honestly i didnt even bother because no one asked....

No sweat, I just like the option to cancel the download. I'll test the play/pause function and do without the stop.

Great job on this plugin. I'm thankful you took the time to make it.

EDIT: My RRCode scripts rely on "YT_STOP", "YT_PLAY" being a toggle screws thing up bad.
__________________
HARDWARE: Fujitsu Stylistic ST5031w/WiFi and dock, internal MP3Car 80G HD,, external 1TB HD, Sierra Wireless Aircard 550, DVD-RW, Silabs FM, WinTV USB, XM Commander w/Timetrax USB, Delorme GPS, Saitek X-52 joystick, BluSoleil Bluetooth, TPMS, FB, Elm327

Last edited by GizmoQ; 07-14-2009 at 11:56 AM.
GizmoQ is offline   Reply With Quote
Old 07-16-2009, 04:01 PM   #94
The Last Good Gremlin
 
GizmoQ's Avatar
 
Join Date: Nov 2004
Location: St Louis
Posts: 1,933
GizmoQ has a spectacular aura aboutGizmoQ has a spectacular aura about
Progress Update:

I still haven't figured out what I did to kill the switchback of the TRACKNAME variable.

I did figure out that the skin.ini variables: YTHEIGHT and YTWIDTH are no longer necessary. To validate this I changed mine to 20 and 30, respectively, and the embed worked just fine anyway. So I then edited the A,x,x,x,x line in my YOUTUBE.SKIN and alls well now for my sizing issue.

I also have changed my NEXT and PREVIOUS buttons to ""DOWN||STOP||YT_PLAY" and "UP||STOP||YT_PLAY". I had this working in the previous version to jump to the next video on the list and play it. Unfortunately, the play/pause change to YT_PLAY somehow changed the way this works. The first time I click it, it pauses the playback and moves the highlight down one video, but doesn't load and play it. The next time I click it and everytime after that it works but its playing the previous video instead of the one highlighted.

Lastly, is the slider code gone or do I have to change my RRCode. I kinda liked the visual slider for download progress. Is there something wrong with this line:

S,536,100,255,21,,,,,H,"SLIDERBAR.PNG","",18,"YT_P ROGRESS",""

I definitely need the YT_STOP to fix a couple other issues with my RRCode. I got a work-around for the lack of the YT_abort command. I found out the hard way about your pop-up for trying to download a file that already exists - kudos to you on that!

Again, great job on this!
Thanx
__________________
HARDWARE: Fujitsu Stylistic ST5031w/WiFi and dock, internal MP3Car 80G HD,, external 1TB HD, Sierra Wireless Aircard 550, DVD-RW, Silabs FM, WinTV USB, XM Commander w/Timetrax USB, Delorme GPS, Saitek X-52 joystick, BluSoleil Bluetooth, TPMS, FB, Elm327
GizmoQ is offline   Reply With Quote
Old 07-16-2009, 11:01 PM   #95
FLAC
 
EL CAMINO's Avatar
 
Join Date: Jul 2005
Location: upland california us
Posts: 1,012
EL CAMINO is on a distinguished road
k, the YT_STOP command used to close the player in the AI version, you can use this, still.

Code:
"closewindow;ElcoYT"

the way "YT_Play" works now is, if the selected video is playing will pause the player, if different video is selected will start playing this video. so in your code for next and prev try to add a little delay, something like this. you'll see..

Code:
"DOWN||WAIT;0.3||YT_Play"

the progress bar is not used yet, but i'll add it soon.

EDIT:
and yes very strange why trackname is not working for you, i've tested this plugin in different skins, and it does work ok, can you show some of the code you use.

Last edited by EL CAMINO; 07-16-2009 at 11:38 PM.
EL CAMINO is offline   Reply With Quote
Old 07-17-2009, 04:14 AM   #96
The Last Good Gremlin
 
GizmoQ's Avatar
 
Join Date: Nov 2004
Location: St Louis
Posts: 1,933
GizmoQ has a spectacular aura aboutGizmoQ has a spectacular aura about
Quote: Originally Posted by EL CAMINO View Post
k, the YT_STOP command used to close the player in the AI version, you can use this, still.

Code:
"closewindow;ElcoYT"

In the version I have in the car, YT_STOP acts like a sendmsg to the YouTube player to stop the video but doesn't close the window.


Quote: Originally Posted by EL CAMINO View Post
the way "YT_Play" works now is, if the selected video is playing will pause the player, if different video is selected will start playing this video. so in your code for next and prev try to add a little delay, something like this. you'll see..

Code:
"DOWN||WAIT;0.3||YT_Play"

I don't know why but that didn't work. It did give me a hint at what eventually worked first time, every time:

Code:
"selcl||down||down||WAIT;1||YT_PLAY||up",

Don't ask me why it works, it just does.

Quote: Originally Posted by EL CAMINO View Post
the progress bar is not used yet, but i'll add it soon.

EDIT:
and yes very strange why trackname is not working for you, i've tested this plugin in different skins, and it does work ok, can you show some of the code you use.

I did, too, and you're right it works fine on other skins.

Some of my code can be found here. Basically, I let RRTube play until another audio source is selected (where I use YT_STOP). This way I can use GPS, Fusion Brain, OBDII, or any other screen with the audio of the youtube video still playing. It has to have something to do with the fact that I've replaced all the basic RRCode for audio/video with my own code, i.e., I reprogrammed the commands: AUDIO, VIDEO, DVD, RADIO, etc. My reprogramming adds a stop command to RRTube, resets my current and previous audiosource variables, then loads the .skin file for the selected source. The primary use of currentsource is to change albumart and the two top lines of my menus:
Quote:
I have my own albumart for internet radio and I use the YT_Art for RRTube; I hate that RR doesn't replace TRACKNAME/TAGTITLE and TAGARTIST to RDSNAME and RDSTEXT when I switch to the radio - so I fixed it with a BYVAR in my top two lines of my menus! Internet radio also shows the "Http...." in TAGARTIST so the BYVAR clears that out when listening to INet Radio. Currentsource is also used to set levels, mixer settings, and recording source for my recording scripts.

Guino or BlueZX is probably going to have to tell me what's in the source that works for the standard commands that I'm not doing.
__________________
HARDWARE: Fujitsu Stylistic ST5031w/WiFi and dock, internal MP3Car 80G HD,, external 1TB HD, Sierra Wireless Aircard 550, DVD-RW, Silabs FM, WinTV USB, XM Commander w/Timetrax USB, Delorme GPS, Saitek X-52 joystick, BluSoleil Bluetooth, TPMS, FB, Elm327
GizmoQ is offline   Reply With Quote
Old 07-17-2009, 03:59 PM   #97
FLAC
 
EL CAMINO's Avatar
 
Join Date: Jul 2005
Location: upland california us
Posts: 1,012
EL CAMINO is on a distinguished road
mmmmmmmmm, so most of the mayor problems are not from the plugin, i'll add YT_Abort and the progress bar in the next update.

about your code, thats what i call, real RR Coding. i use ACTIVESOURCEID to change some things around my skin.i wonder if is safe to change this variable (i dont think so!!)from inside a plugin, maybe RR coding team can answer this...
EL CAMINO is offline   Reply With Quote
Old 07-17-2009, 06:16 PM   #98
The Last Good Gremlin
 
GizmoQ's Avatar
 
Join Date: Nov 2004
Location: St Louis
Posts: 1,933
GizmoQ has a spectacular aura aboutGizmoQ has a spectacular aura about
Quote: Originally Posted by EL CAMINO View Post
mmmmmmmmm, so most of the mayor problems are not from the plugin, i'll add YT_Abort and the progress bar in the next update.

about your code, thats what i call, real RR Coding. i use ACTIVESOURCEID to change some things around my skin.i wonder if is safe to change this variable (i dont think so!!)from inside a plugin, maybe RR coding team can answer this...

I know my posts are long, but YT_STOP is my highest priority.
__________________
HARDWARE: Fujitsu Stylistic ST5031w/WiFi and dock, internal MP3Car 80G HD,, external 1TB HD, Sierra Wireless Aircard 550, DVD-RW, Silabs FM, WinTV USB, XM Commander w/Timetrax USB, Delorme GPS, Saitek X-52 joystick, BluSoleil Bluetooth, TPMS, FB, Elm327
GizmoQ is offline   Reply With Quote
Sponsored links
Advertisement
 
Advertisement
Old 07-30-2009, 05:29 PM   #99
FLAC
 
EL CAMINO's Avatar
 
Join Date: Jul 2005
Location: upland california us
Posts: 1,012
EL CAMINO is on a distinguished road
ok, i think is time to see the bottom of all this, if you want join me in yahoo. PM ME your nick,(if any)
EL CAMINO is offline   Reply With Quote
Old 08-07-2009, 08:57 PM   #100
Low Bitrate
 
suavecito's Avatar
 
Join Date: Jan 2008
Location: Atlanta, GA
Posts: 108
suavecito is an unknown quantity at this point
I working on my skin eLite and I have noticed that after I register the dll's files the plug-in starts to take over in the audio player cover art.
Right after I unregister the files it starts to work again.
I have tried this using other skins and I am still getting the same result.
Has any one else had this problem?
__________________
eLite Lite has been released
suavecito is offline   Reply With Quote
Old 08-08-2009, 02:38 PM   #101
FLAC
 
EL CAMINO's Avatar
 
Join Date: Jul 2005
Location: upland california us
Posts: 1,012
EL CAMINO is on a distinguished road
Quote: Originally Posted by suavecito View Post
I working on my skin eLite and I have noticed that after I register the dll's files the plug-in starts to take over in the audio player cover art.
Right after I unregister the files it starts to work again.
I have tried this using other skins and I am still getting the same result.
Has any one else had this problem?

bug found, fixed in the next release, wonder if i should use a different indicator, like "YT_Art".
EL CAMINO is offline   Reply With Quote
Old 08-08-2009, 06:44 PM   #102
THE EXPERIMENTER
 
carputer1's Avatar
 
Join Date: Sep 2007
Location: UK,Surrey
Posts: 1,358
carputer1 will become famous soon enough
seems the safest route to take,
__________________
Links

Author of Ranger skin

Ford Ranger Truck Rebuild and system install Worklog

Current project status

Ranger Truck Rebuild 70% Current Open Project
Ranger Update:30% Total RE-WRITE
Ranger Help File:10%
Ride Runner Help File 30%
carputer1 is offline   Reply With Quote
Old 08-14-2009, 01:14 AM   #104
THE EXPERIMENTER
 
carputer1's Avatar
 
Join Date: Sep 2007
Location: UK,Surrey
Posts: 1,358
carputer1 will become famous soon enough
downloading cheers mate FYI check IM mess
__________________
Links

Author of Ranger skin

Ford Ranger Truck Rebuild and system install Worklog

Current project status

Ranger Truck Rebuild 70% Current Open Project
Ranger Update:30% Total RE-WRITE
Ranger Help File:10%
Ride Runner Help File 30%
carputer1 is offline   Reply With Quote
Old 08-14-2009, 01:51 AM   #105
THE EXPERIMENTER
 
carputer1's Avatar
 
Join Date: Sep 2007
Location: UK,Surrey
Posts: 1,358
carputer1 will become famous soon enough
i see a few new cmds mate good to have , not tested yet off to work will be tonight
__________________
Links

Author of Ranger skin

Ford Ranger Truck Rebuild and system install Worklog

Current project status

Ranger Truck Rebuild 70% Current Open Project
Ranger Update:30% Total RE-WRITE
Ranger Help File:10%
Ride Runner Help File 30%
carputer1 is offline   Reply With Quote
Sponsored links
Advertisement
 
Advertisement
Reply

Bookmarks

Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are Off




All times are GMT -5. The time now is 03:34 PM.


Powered by vBulletin® Version 3.8.4
Copyright ©2000 - 2009, Jelsoft Enterprises Ltd.
Content Relevant URLs by vBSEO 3.3.2
Copyright © 1999 - 2008 Mp3Car.com Inc.Ad Management by RedTyger
Message Board Statistics