XBMC Community Forum
[Web Interface Addon] XBMC Control Web Page - an open source development project - Printable Version

+- XBMC Community Forum (http://forum.xbmc.org)
+-- Forum: Help and Support (/forumdisplay.php?fid=33)
+--- Forum: Add-ons Help and Support (/forumdisplay.php?fid=27)
+---- Forum: Web Interfaces (/forumdisplay.php?fid=156)
+---- Thread: [Web Interface Addon] XBMC Control Web Page - an open source development project (/showthread.php?tid=51596)

Pages: 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29


- veekay - 2009-10-17 07:30

This loads for me, but when I try and play anything or clear the playlist it just gives an error and crashes the webserver.

playSelectedSongFailure failure t:[object Object]

updatePlaylistTreeFailure t:[object Object]


- Connor32 - 2009-10-17 10:36

Hi!

UPDATE: nevermind, If i drag and drop files into the playlist it works perfectly. BTW is there a way to remove 1 file only from the playlist? THANKS!

I am testing version 1.25. I can't play mp3 shared on a samba server. I am getting the following error:

Code:
DEBUG: HttpApi Start command: GetDirectory  paras: GetDirectory; smb:\\192.168.10.1\share\music\ - Michael Jackson - Billie Jean.mp3
10:31:53 T:3053062000 M:1758851072   DEBUG: OpenDir - Using authentication url smb://192.168.10.1/share/music/%20-%20Michael%20Jackson%20-%20Billie%20Jean.mp3
10:31:53 T:3053062000 M:1758851072   ERROR: SMBDirectory->GetDirectory: Unable to open directory : 'smb://192.168.10.1/share/music/%20-%20Michael%20Jackson%20-%20Billie%20Jean.mp3'
                             unix_err:'14' error : 'Not a directory'

I have library mode disabled, running on Archlinux, with XBMC 9.04. Same error with IE 7 and Firefox 3.5.

Any ideas?

Thanks!

C.


Last.fm support and re-arranging playlist order - Jsmit - 2009-10-23 14:20

Hi

Two requests for functionality. If they can be implemented in one of the next versions that would be great!

Are there any plans to support last.fm in the application? Love/hate buttons for the songs, and maybe also adding last.fm stream shortcuts to the playlist?

Another thing is the ability to re-arrange items in the playlist, currently there is no way of adding or removing a file in a specific place in the playlist?

Thanks, J


- mason - 2009-11-02 21:41

i have the same problem like with the app from slash, i only get the shares, but the library don't get polluted. any idea on the issue? (minimal ubuntu installation, with svn 24143)


- Kabooga - 2009-11-03 01:26

Mason,
Is this with movies or music? In slash's app you are looking at movies.

I currently don't have much movie support. I've been mostly getting music to work correctly.


- ngok - 2009-11-13 13:36

I love this program,great job,nearly perfect!
If the play list will display the song title instead of file name,it will be a great help to some cue sheet + disk image user.


- ngok - 2009-11-13 14:31

I did some research in the web api and found that there are no direct function to get the playlist song title,it only returns filenames,for a cue+image album,the filename is all the same,you can't get song title from file name,sad.


- ngok - 2009-11-19 17:20

I see the stock web interface can display the song titles right,it uses some server side codes like below.
Code:
<%
xbmcCommand("navigate", "Musicplaylist");
n = xbmcCommand("catalog","items");
file = xbmcCommand("catalog","first");
for (z=0; z<n; z=z+1){
  write(file+"\n");
  file = xbmcCommand("catalog","next");
}
%>
Hope this helps.


- Kabooga - 2009-11-19 19:56

Thanks ngok. I'll look at your suggestion.

I'll try to get your suggestion into this weekends release.

Kabooga.


- ngok - 2009-11-20 08:23

Great to know there will be a update.
I am looking forward to test it.