Search the Community
Showing results for tags 'music'.
-
Hi, I'm new to PHP, so I've been starting off with clone scripts for now just to get a hang of things and then hopefully working up. But, I've found a script I actually want to use, Agriya Volume, and I'm hoping someone has used it before and can guide me? It's working great, apart from when I upload a song, the system sees them as 0 seconds long, therefore won't allow me to list any information about the track as the preview time is apparently longer than the track. If that doesn't make sense, upload a song here: http://volume.demo.agriya.com/product_demo/login.html user: webmaster password: webmaster This is the demo version that works Then try uploading one here: http://lockerclip.com/lockerclip/login.html user: user123 password: user123 and you'll see what I mean. I've contacted support, but they won't help me because I'm not using the paid for version, which I'd rather not spend $250 (plus extra for plugins and themes etc) on until I have it setup correctly and know it's going to work for me how I want it to. For anyone who's interested, the free script is available here: http://customers.agriya.com/products/volume And the paid for version is here: http://www.rayzz.net/product-volume/ Any help is appreciated! Thanks
-
- purevolume
- agriya
-
(and 3 more)
Tagged with:
-
Hi guys I needed some help and I found this forum so I thought I'd give it a try. I have this lab that Im doing and instructor really didnt go into detail on how to do it even the code that was demoed was not really helpful in the class . My issue is that I cant seem to get my foreach loop to read the files in the directory i specified and display the name along with being able to play the file as well . Any pointers would be great its over my head at this point . Thanks <!DOCTYPE html > <head> <title>Music Viewer</title> <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" /> <link href="http://www.cs.washington.edu/education/courses/cse190m/09sp/labs/3-music/viewer.css" type="text/css" rel="stylesheet" /> </head> <body> <div id="header"> <h1>190M Music Playlist Viewer</h1> <h2>Search Through Your Playlists and Music</h2> </div> <div id="listarea"> <ul id="musiclist"> <!-- *means is equivalent to windows explorer search --> <?php foreach (scandir(C:\Users\test\Desktop\Main\xampp\htdocs\mp3)("./mp3/*.mp3") as $song) { ?> <li class="mp3item"> <a href="./<?= $song ?>"> <?= basename($song) ?> </a> <!--end of href -- > </li> </ul> </div> </body> </html>