Now Playing FTP 1.8 - Updated 09/01/2010

Post a reply

Smilies
:D :) :( :o :-? 8) :lol: :x :P :oops: :cry: :evil: :roll: :wink:

BBCode is ON
[img] is ON
[url] is ON
Smilies are ON

Topic review
   

Expand view Topic review: Now Playing FTP 1.8 - Updated 09/01/2010

Re: Now Playing FTP 1.8 - Updated 09/01/2010

by Salem874 » Thu Mar 17, 2011 4:17 pm

trixmoto wrote:What's wrong with it? Are you getting any error messages?
YEs, i was getting error messages. I've now reverted to MM3 as a result of it as this plugin is now a must for me. I'll reinstall MM4 Beta to give you details of the error messages over the weekend

Re: Now Playing FTP 1.8 - Updated 09/01/2010

by trixmoto » Mon Mar 14, 2011 5:40 pm

What's wrong with it? Are you getting any error messages?

Re: Now Playing FTP 1.8 - Updated 09/01/2010

by Salem874 » Mon Mar 14, 2011 10:22 am

Salem874 wrote:Is Now Plating FTP compatible with MediaMonkey 4?
OK, the answer to my question is "No".

Is there a chance we can get a MM4 compatible version? I really love this script.

Re: Now Playing FTP 1.8 - Updated 09/01/2010

by Salem874 » Fri Mar 11, 2011 10:16 am

Is Now Plating FTP compatible with MediaMonkey 4?

Re: Now Playing FTP 1.8 - Updated 09/01/2010

by trixmoto » Sat Jan 08, 2011 6:37 am

Not yet but I have added the idea to my list so I'll take a look at it when I have some time.

Re: Now Playing FTP 1.8 - Updated 09/01/2010

by skafan00 » Fri Jan 07, 2011 8:12 pm

Is there any script to FTP the MP3 files in a playlist to my web server? Basically i want to upload all my mixes to a website and share the songs with a few friends.

Re: Now Playing FTP 1.8 - Updated 09/01/2010

by ermal » Tue Apr 27, 2010 3:45 pm

trixmoto wrote:Ah, I see. You want a version of "Now Playing FTP" but without the FTP? You can modify the "NowPlayingFTP.vbs" file using a text editor to comment out lines 172-184...

Code: Select all

'  Dim res : res = ""
'  If Not (artw = "") Then
'    res = FTPUpload(site,user,pass,artw,path)
'    If Not (res = "") Then
'      Call SDB.MessageBox("NowPlayingFTP: "&res,mtError,Array(mbOk))
'    End If  
'  End If  
'  If res = "" Then
'    res = FTPUpload(site,user,pass,loc,path)
'    If Not (res = "") Then
'      Call SDB.MessageBox("NowPlayingFTP: "&res,mtError,Array(mbOk))  
'    End If
'  End If

thank you very much it worked perfectly

Re: Now Playing FTP 1.8 - Updated 09/01/2010

by trixmoto » Sun Apr 25, 2010 5:03 pm

Ah, I see. You want a version of "Now Playing FTP" but without the FTP? You can modify the "NowPlayingFTP.vbs" file using a text editor to comment out lines 172-184...

Code: Select all

'  Dim res : res = ""
'  If Not (artw = "") Then
'    res = FTPUpload(site,user,pass,artw,path)
'    If Not (res = "") Then
'      Call SDB.MessageBox("NowPlayingFTP: "&res,mtError,Array(mbOk))
'    End If  
'  End If  
'  If res = "" Then
'    res = FTPUpload(site,user,pass,loc,path)
'    If Not (res = "") Then
'      Call SDB.MessageBox("NowPlayingFTP: "&res,mtError,Array(mbOk))  
'    End If
'  End If

Re: Now Playing FTP 1.8 - Updated 09/01/2010

by ermal » Sun Apr 25, 2010 6:39 am

trixmoto wrote:This script stores the currently playing album art as "%temp%\np.jpg" if you have that option enabled.
yes but it keeps asking me for a ftp adress and I don't have one. If i enter a non existing adress it gives me an error. That's why i needed your help :)

Re: Now Playing FTP 1.8 - Updated 09/01/2010

by trixmoto » Sun Apr 25, 2010 5:20 am

This script stores the currently playing album art as "%temp%\np.jpg" if you have that option enabled.

Re: Now Playing FTP 1.8 - Updated 09/01/2010

by ermal » Sat Apr 24, 2010 12:43 pm

Can you please make a version of this script that just saves the currently playing album art in a directory. I want to access it in order to make a docklet for objectdock. I've modified a growl notification script that was based on your script but many of the script lines are not used and it needs a growlnotification.exe to run without errors(i'm accessing np.jpg in temp folder by the way). I just hope for you to help me make the script cleaner. :) Thank you

Re: Now Playing FTP 1.8 [MM2+3] - Updated 09/01/2010

by trixmoto » Sat Jan 09, 2010 8:41 am

New version (1.8.) is now available to download from my website. Now the FTP password is encrypted before storing in the INI file. When installing this version over the top of an existing version, the password will be blanked out and you will need to re-enter it.

Re: Now Playing FTP 1.7 [MM2+3]

by trixmoto » Sat Mar 21, 2009 5:49 pm

Well "$image" is set to blank so you could check for this and set it to be a default image of your choosing.

Re: Now Playing FTP 1.7 [MM2+3]

by koro » Fri Mar 20, 2009 1:37 pm

Hi Trix,

It's working now...

The only problem i have is, if i don't have a cover, the previous stays on screen. I only show np.jpg.

<body>
<table width="200" border="0">
<tr>
<td align="center"><strong class="Verdana">Now Playing</strong></td>
</tr>
<tr>
<td align="center"><img src="np.jpg" width="150" height="150" border="1"></td>
</tr>
<tr>
<td height="52" align="center" valign="top" class="Titels">
<?php
$refresh = 40;


include("np.inc");
switch ($mode) {
case "0":

echo "$artist<br/>$title<br/>$album<br/>$year<br/>$genre" ;

break;
case "1":
echo "Player stopped.";
break;
case "2":
echo "Player closed.";
break;
default:
echo "Data unavailable.";
}
?>
<meta http-equiv="refresh" content="<?php echo $refresh; ?>" />
</td>
</tr>
</table>
<p>&nbsp;</p>
</body>


How can i show the default.jpg?

Koen

Re: Now Playing FTP 1.7 [MM2+3]

by koro » Fri Mar 20, 2009 7:36 am

Hi trix,

No i use Win XP SP3... do i have to see the file created and deleted.
If so, i'll see if the file is created... and deleted...
I have no idea wich causes this upload error.

I have also a second domain wich i support, and uploading to that one gives the same error.
So i think it's on my side...

tnx,
Koen

Top