|
2011-02-27
, 14:37
|
|
Posts: 128 |
Thanked: 487 times |
Joined on Oct 2010
@ Novosibirsk, Russia
|
#3
|
The Following 3 Users Say Thank You to somebody For This Useful Post: | ||
|
2011-02-27
, 14:38
|
Posts: 662 |
Thanked: 653 times |
Joined on Feb 2010
|
#4
|
|
2011-02-27
, 14:41
|
|
Posts: 277 |
Thanked: 93 times |
Joined on Jan 2010
@ Belgrade
|
#5
|
|
2011-02-27
, 14:44
|
|
Posts: 7,075 |
Thanked: 9,073 times |
Joined on Oct 2009
@ Moon! It's not the East or the West side... it's the Dark Side
|
#6
|
|
2011-02-27
, 14:48
|
Posts: 114 |
Thanked: 109 times |
Joined on Nov 2010
@ Finland
|
#7
|
|
2011-02-27
, 14:52
|
|
Posts: 128 |
Thanked: 487 times |
Joined on Oct 2010
@ Novosibirsk, Russia
|
#8
|
WOW! HOW did you get a hardware +/- buttons to change default behavior????????????
#define MM_KEY_UP (73) #define MM_KEY_DOWN (74) .... // This connects application to D-Bus event from zoom keys QDBusConnection::systemBus().connect(QString(), QString(), "com.nokia.tklock.signal", "mm_key_press", this, SLOT(_zoom_keys_handler(quint32,quint32))); .... void DBusClient::_zoom_keys_handler(quint32 code, quint32 /*ignored*/) { emit zoomKeyPressed(code); } ... if (code == MM_KEY_DOWN) { if (behavior == "track") { _player_form->next(); _dbus_client.setVolume(_system_volume); } } else if (code == MM_KEY_UP) { if (behavior == "track") { _player_form->prev(); _dbus_client.setVolume(_system_volume); } }
_unpause_keys_message = QDBusMessage::createMethodCall("com.nokia.mce", "/com/nokia/mce/request", "com.nokia.mce.request", "req_keypad_off_pause"); .... void DBusClient::_unpause_keys() { QDBusConnection::systemBus().call(_unpause_keys_message); }
|
2011-02-27
, 14:54
|
|
Posts: 128 |
Thanked: 487 times |
Joined on Oct 2010
@ Novosibirsk, Russia
|
#9
|
|
2011-02-27
, 14:58
|
|
Posts: 733 |
Thanked: 249 times |
Joined on Jan 2010
@ UK
|
#10
|
Tags |
music player, nokia n900, someplayer |
|
Main features:
- MP3, FLAC, WMA, AAC, OGG, ASF, APE, WAV support
- Equalizer support. Predefined and users presets
- Work with user-manager media library and file system (adding tracks and directories from filesystem)
- User playlists and dynamic playlists
- Playlist sorting (long tap on playlist in main view)
- FMTX support
- Bluetooth AVRCP support (controlling playback using bluetooth headset)
- Ability to control volume or tracks with locked screen using zoom keys
- Auto-stop timer
- Auto-pause on headset unplugging
- Landscape, portrait and auto-oriented mode
- Covers search (on file system not in Internet)
- Ability to control playback via D-Bus
1.5.2-4:space = toggle
left = prev
right = next
t = stop
r = toggle random
e - toggle repeat
l = library
m = filemanager
v = toggle view
s = toggle search bar
D-Bus commands:
__________________________________________________
DONATE
Last edited by somebody; 2011-03-17 at 15:54.