maemo.org - Talk

maemo.org - Talk (https://talk.maemo.org/index.php)
-   Applications (https://talk.maemo.org/forumdisplay.php?f=41)
-   -   [demo] use your N900 as remote control for iTunes (https://talk.maemo.org/showthread.php?t=72618)

Taleydra 2011-09-01 20:35

Re: [demo] use your N900 as remote control for iTunes
 
I see that it works via wifi, but can it be configured to work via the internet, so I can use my phone to access my music while at work?

izero 2011-09-04 19:30

Re: [demo] use your N900 as remote control for iTunes
 
No it doesn't have such an option. I haven't actually test that would that be possible. Anyway, it's only remote control, so the music is not played from your device's speakers.

rm53 2011-09-13 13:27

Re: [demo] use your N900 as remote control for iTunes
 
I bought cuteremote from Ovi store.
But it does not do anything, it just shows two buttons: Libraries and Add library.
The first shows an empty screen, the second a PIN code. That was it, then, nothing more...
How is it supposed to work?

x61 2011-09-13 13:51

Re: [demo] use your N900 as remote control for iTunes
 
This is great. I noticed there are two versions of the same product at the ovi store: a free and a 0.99$ version. Are they all the same?

Thank

izero 2011-09-14 10:54

Re: [demo] use your N900 as remote control for iTunes
 
Quote:

Originally Posted by rm53 (Post 1087501)
I bought cuteremote from Ovi store.
But it does not do anything, it just shows two buttons: Libraries and Add library.
The first shows an empty screen, the second a PIN code. That was it, then, nothing more...
How is it supposed to work?

Hi, 1.0.5 version which is already available for every other platform except Maemo5 (I don't know what takes so long with Maemo5 in Ovi Store QA) has one fix that helps in pairing in some environments. You can test the Lite version, that's already 1.0.5 version and has the fix. Just press add library and wait few secs and the device should be visible in your media player.

If it doesn't work, check the support page at facebook, basically you need to have N900 and your PC/Mac in same network and firewall accepting connections to media player.

izero 2011-09-14 10:56

Re: [demo] use your N900 as remote control for iTunes
 
Quote:

Originally Posted by x61 (Post 1087526)
This is great. I noticed there are two versions of the same product at the ovi store: a free and a 0.99$ version. Are they all the same?

Thank

Lite version has only the basic playback controls. Full version has playlist view, multiple speaker volume control, album list and rating control in player view.

gamnark 2014-11-07 16:49

Re: [demo] use your N900 as remote control for iTunes
 
Quote:

Originally Posted by Taleydra (Post 1080245)
I see that it works via wifi, but can it be configured to work via the internet, so I can use my phone to access my music while at work?

A bit late now, but I've figured out a solution for anyone that wants to control their home player over the internet. I use it for controlling my icecast stream.

1. Install avahi-utils via apt-get -- This gives Maemo the ability to use zeroconf/bonjour/whatever_the_cool_kids_call_it
2. On the same network, pair cuteplayer with the player.
3. Still on the same network, run
Code:

avahi-browse -rt _touch-able._tcp
Which should output something like:
Code:

= wlan0 IPv4 (16 character hex ID#1)                              _touch-able._tcp    local
  hostname = [XXXX.local]
  address = [192.168.X.XX]
  port = [3689]
  txt = ["Ver=131077" "iV=196618" "DvTy=iTunes" "DvSv=2880" "iCSV=65539" "OSsi=0x1F7" "CtlN=(Library Name)" "DbId=(16 character hex ID#2)" "txtvers=1"]

4. On a different network, we can now setup a SSH tunnel like so:
Code:

ssh -C -L :3689:127.0.0.1:3689 -N (username)@(host) &
5. And finally, put the info above into avahi to advertise the player to cuteremote (change everything after 3689 to match your info):
Code:

avahi-publish -s (hex id #1) _touch-able._tcp 3689 txtvers=1 DbId=(hex id #2) CtlN='(Library Name)' OSsi=0x1F7 iCSV=65539 DvSv=2880 DvTy=iTunes iV=196618 Ver=131077
6. Launch cuteremote and it should be working.

You can save your commands from 4 and 5 to a shell script for easy launching.
Code:

#!/bin/sh
ssh -C -L :3689:127.0.0.1:3689 -N (username)@(host) &
trap "kill $!" 0 1 2 15
avahi-publish -s (hex id #1) _touch-able._tcp 3689 txtvers=1 DbId=(hex id #2) CtlN='(Library Name)' OSsi=0x1F7 iCSV=65539 DvSv=2880 DvTy=iTunes iV=196618 Ver=131077

I've adapted this technique from a DAAP (Library Sharing) port forwarding walkthrough at http://www.leancrew.com/all-this/201...nneling-redux/


All times are GMT. The time now is 16:24.

vBulletin® Version 3.8.8