maemo.org - Talk

maemo.org - Talk (https://talk.maemo.org/index.php)
-   Multimedia (https://talk.maemo.org/forumdisplay.php?f=32)
-   -   [ANNOUNCE] SomePlayer is available for Maemo 5 (https://talk.maemo.org/showthread.php?t=70405)

somebody 2011-02-27 14:30

[ANNOUNCE] SomePlayer is available for Maemo 5
 
I am pleased to inform you that after six months of development, testing and usage in Russia SomePlayer now available in the official repositories.

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:
  • Applied MP4 and ASF patches to TagLib (now full tag support for wma, asf, m4a and others formats with this containers)
  • Fixed bug with double adding directory to cur.playlist
  • Fixed issue with silent phone profile
  • Added 'Online help' action to main menu
  • Support for M4A files (I don't know anything about DRM in this files)
  • Controlling via keyboard:
    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
  • New icon
  • Chinese translations
  • Little design improvements in settings window

D-Bus commands:
Code:

$ dbus-send --type=method_call --dest=ru.somebody.someplayer / ru.somebody.someplayer.next
$ dbus-send --type=method_call --dest=ru.somebody.someplayer / ru.somebody.someplayer.toggle
$ dbus-send --type=method_call --dest=ru.somebody.someplayer / ru.somebody.someplayer.prev
$ dbus-send --type=method_call --dest=ru.somebody.someplayer / ru.somebody.someplayer.stop
$ dbus-send --type=method_call --print-reply --dest=ru.somebody.someplayer / ru.somebody.someplayer.title
$ dbus-send --type=method_call --print-reply --dest=ru.somebody.someplayer / ru.somebody.someplayer.artist
$ dbus-send --type=method_call --print-reply --dest=ru.somebody.someplayer / ru.somebody.someplayer.album

Screenshots:
http://storage8.static.itmages.ru/i/...ca2a7cd3ed.png http://storage8.static.itmages.ru/i/...af0755ad9a.png http://storage8.static.itmages.ru/i/...db87bd3ddb.png http://storage8.static.itmages.ru/i/...2cad6f14da.png http://storage8.static.itmages.ru/i/...9242ff0e16.png http://storage8.static.itmages.ru/i/...ca0f2ee102.png http://storage8.static.itmages.ru/i/...0eabc90574.png http://storage8.static.itmages.ru/i/...4ea8d89ba6.png

http://storage8.static.itmages.ru/i/...bd776c4f51.png http://storage3.static.itmages.ru/i/...97898c2c7d.png
__________________________________________________

DONATE

pantera1989 2011-02-27 14:32

Re: [ANNOUNCE] First public release of SomePlayer
 
First to thank :). Nice work Nikti :)

Edit: Thanks Nikolay :D

somebody 2011-02-27 14:37

Re: [ANNOUNCE] First public release of SomePlayer
 
Quote:

Originally Posted by pantera1989 (Post 956522)
First to thank :). Nice work Nikti :)

Thanks for your help. You can see it in About->Online help :)

PS. 'Nikti' - is not name :) My name is Nikolay (and last name - Tischenko)

Reffyyyy 2011-02-27 14:38

Re: [ANNOUNCE] First public release of SomePlayer
 
Looks pretty damn good. Will download and test now.

neboja 2011-02-27 14:41

Re: [ANNOUNCE] First public release of SomePlayer
 
WOW! HOW did you get a hardware +/- buttons to change default behavior????????????

Dave999 2011-02-27 14:44

Re: [ANNOUNCE] First public release of SomePlayer
 
Exellent. love that you can you can use the checkboxes. especially when you have lots of audiobooks and want to do a random list.

didnt get the seach to work.

Thank you

Keneraali 2011-02-27 14:48

Re: [ANNOUNCE] First public release of SomePlayer
 
Does Last.fm scrobbling work with this player?

somebody 2011-02-27 14:52

Re: [ANNOUNCE] First public release of SomePlayer
 
Quote:

Originally Posted by neboja (Post 956533)
WOW! HOW did you get a hardware +/- buttons to change default behavior????????????

Code:

#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);
    }
}

And every 60 seconds we have to unlock zoom keys:
Code:

_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);
}


somebody 2011-02-27 14:54

Re: [ANNOUNCE] First public release of SomePlayer
 
Quote:

Originally Posted by Keneraali (Post 956540)
Does Last.fm scrobbling work with this player?

No. And will not working in the nearest future :)

Bazza 2011-02-27 14:58

Re: [ANNOUNCE] First public release of SomePlayer
 
This is what having an N900 is all about, having devs like you producing good quality applications like this. good work..

testing now...

Shinigamijim 2011-02-27 15:03

Re: [ANNOUNCE] First public release of SomePlayer
 
are you sure is there i cant find it .....

somebody 2011-02-27 15:04

Re: [ANNOUNCE] First public release of SomePlayer
 
And another one feature:
  • Playlist sorting (long tap on playlist in main view)

somebody 2011-02-27 15:06

Re: [ANNOUNCE] First public release of SomePlayer
 
Quote:

Originally Posted by Shinigamijim (Post 956558)
are you sure is there i cant find it .....

http://maemo.org/packages/view/someplayer/

Dave999 2011-02-27 15:14

Re: [ANNOUNCE] First public release of SomePlayer
 
some input. Like it very much just want to add the comments while testing.

control volyme is not working with locked screen

EDIT: OH it was in setting. Exellent!

eefo 2011-02-27 15:16

Re: [ANNOUNCE] First public release of SomePlayer
 
Quote:

Originally Posted by somebody (Post 956564)

ammm i am a noob , so dont know how to use this given site :$
as i cant find it in app manager :$

Shinigamijim 2011-02-27 15:17

Re: [ANNOUNCE] First public release of SomePlayer
 
ok trying for a while now, nice app kepp using to see what its missing or maybe a bug, so far the black theme is well too balck for my opinion in sunny days ( here in peru is sunny and couldnt see the buttons )

great work

porselinaheart 2011-02-27 15:21

Re: [ANNOUNCE] First public release of SomePlayer
 
very nice!!!!!

yauchildchew 2011-02-27 15:28

Re: [ANNOUNCE] First public release of SomePlayer
 
thanks!
i will now install and try.
any bugs so far? hope not!

neboja 2011-02-27 15:32

Re: [ANNOUNCE] First public release of SomePlayer
 
Quote:

And every 60 seconds we have to unlock zoom keys:
why is that necessary???

anyhow great effort!!!!!
everuthing seems to be working, and in a great manor! xD
you should only implement that EQ be installed all along with player (it gives me message for me to install gstreamerBLABLABLA)... ;)
great stuff!!!!!!!!!
don't see gapless play... but ok...
search trough playlist - GREAT!!!!!!!!!!
;)

udaychaitanya16 2011-02-27 15:40

Re: [ANNOUNCE] First public release of SomePlayer
 
Excellent and Excellent.Thank you.

somebody 2011-02-27 15:42

Re: [ANNOUNCE] First public release of SomePlayer
 
Quote:

Originally Posted by Shinigamijim (Post 956572)
ok trying for a while now, nice app kepp using to see what its missing or maybe a bug, so far the black theme is well too balck for my opinion in sunny days ( here in peru is sunny and couldnt see the buttons )

great work

I planned skins support, but not in the nearest future. May be in end of April or May

longcat 2011-02-27 15:48

Re: [ANNOUNCE] First public release of SomePlayer
 
brilliant!

neboja 2011-02-27 15:49

Re: [ANNOUNCE] First public release of SomePlayer
 
Quote:

Originally Posted by somebody (Post 956595)
I planned skins support, but not in the nearest future. May be in end of April or May

and i was just about to propose you same thing.... :D

don't know how is managed UI, but if you shure have somewhere a directory with all icons etc.... ???

rosh 2011-02-27 15:59

Re: [ANNOUNCE] First public release of SomePlayer
 
I dont see the app in the application manager

How do i find/install this?

yauchildchew 2011-02-27 16:00

Re: [ANNOUNCE] First public release of SomePlayer
 
Quote:

Originally Posted by somebody (Post 956564)

My little suggestion:
Option to use camera hardware button to go for next song.
So that I can control volume and go to next song when the phone is locked.

haffid 2011-02-27 16:03

Re: [ANNOUNCE] First public release of SomePlayer
 
Quote:

Originally Posted by somebody (Post 956595)
I planned skins support, but not in the nearest future. May be in end of April or May

thank you so much, its a great app
would be nice if the app support download the lyrics of the songs like the app LCG for symbian

clovis86 2011-02-27 16:05

Re: [ANNOUNCE] First public release of SomePlayer
 
impressive !
keep going on such a great job ! :)

SavageD 2011-02-27 16:08

Re: [ANNOUNCE] First public release of SomePlayer
 
Nice work. The equalizer feature is awesome, even has dB control and the UI is also nice and simple :).

But I have just one problem, it won't find my hidden folders (.folder). I tend to keep mp3's in the default music folder (.sounds).

Something seems to be wrong with the seek bar, it won't move and the full length of the track isn't displayed, all I see is "0:00" (on the right end). I can still see the timer on the left, move though. It is possible that I hve this prob because I was using .AAC files though.

Also when you tap the tracks image, the edit tag and favourite button goes beneath the image rather than on top.

But these are all minor problems. Overall, great work.

neboja 2011-02-27 16:10

Re: [ANNOUNCE] First public release of SomePlayer
 
Quote:

Originally Posted by yauchildchew (Post 956609)
My little suggestion:
Option to use camera hardware button to go for next song.
So that I can control volume and go to next song when the phone is locked.

mmmm jess..... that is something similar (or same) that QWERTY12 did... that is even more better use of buttons (smart if i may say) ;)

somebody 2011-02-27 16:20

Re: [ANNOUNCE] First public release of SomePlayer
 
Quote:

Originally Posted by eefo (Post 956571)
ammm i am a noob , so dont know how to use this given site :$
as i cant find it in app manager :$

You must add extras-testing repository. Please search on maemo wiki how you can do this.

somebody 2011-02-27 16:23

Re: [ANNOUNCE] First public release of SomePlayer
 
Quote:

Originally Posted by neboja (Post 956620)
mmmm jess..... that is something similar (or same) that QWERTY123 did... that is even more better use of buttons (smart if i may say) ;)

Now I don't know how to handle events from camera button. But if I find solution I'll add this option to settings.

neboja 2011-02-27 16:29

Re: [ANNOUNCE] First public release of SomePlayer
 
Quote:

Originally Posted by somebody (Post 956630)
Now I don't know how to handle events from camera button. But if I find solution I'll add this option to settings.

like i said... qweryty12 did put this.... but it gave us a closed source... :P
http://talk.maemo.org/showthread.php...637#post774637

geekgirl74 2011-02-27 16:38

Re: [ANNOUNCE] First public release of SomePlayer
 
as you can control it with dbus commands, can't one just use shortcutd or something similar to achieve this?

Tiboric 2011-02-27 16:46

Re: [ANNOUNCE] First public release of SomePlayer
 
wow this is i really nice piece of software, thank you very much.

p.s good idea geekgirl74,

somebody 2011-02-27 17:00

Re: [ANNOUNCE] First public release of SomePlayer
 
Quote:

Originally Posted by SavageD (Post 956616)
But I have just one problem, it won't find my hidden folders (.folder). I tend to keep mp3's in the default music folder (.sounds).

Standard music directory (.sounds) is just 'Audioclips ' entry in filemanager. But other hidden folders are inaccessible via filemanager (but you can add him to library ;) )

Quote:

Originally Posted by SavageD (Post 956616)
Something seems to be wrong with the seek bar, it won't move and the full length of the track isn't displayed, all I see is "0:00" (on the right end). I can still see the timer on the left, move though. It is possible that I hve this prob because I was using .AAC files though.

Yes it is problem. Problem of TagLib which I use to determine tracks metainfo. Also you may find problem with scrolling FLAC's. This is problem of backend (Phonon & Gstreamer).

Quote:

Originally Posted by SavageD (Post 956616)
Also when you tap the tracks image, the edit tag and favourite button goes beneath the image rather than on top.

Can you please show screenshot?

somebody 2011-02-27 17:09

Re: [ANNOUNCE] First public release of SomePlayer
 
Also, dbus commands:

Code:

$ dbus-send --type=method_call --dest=ru.somebody.someplayer / ru.somebody.someplayer.next
$ dbus-send --type=method_call --dest=ru.somebody.someplayer / ru.somebody.someplayer.toggle
$ dbus-send --type=method_call --dest=ru.somebody.someplayer / ru.somebody.someplayer.prev
$ dbus-send --type=method_call --dest=ru.somebody.someplayer / ru.somebody.someplayer.stop
$ dbus-send --type=method_call --print-reply --dest=ru.somebody.someplayer / ru.somebody.someplayer.title
$ dbus-send --type=method_call --print-reply --dest=ru.somebody.someplayer / ru.somebody.someplayer.artist
$ dbus-send --type=method_call --print-reply --dest=ru.somebody.someplayer / ru.somebody.someplayer.album


rosh 2011-02-27 17:46

Re: [ANNOUNCE] First public release of SomePlayer
 
Tried and the best music player (especially with EQ) so far. Thanks.

Is there anyway to add a pre-amp gain control to avoid the clipping at high eq values?

Also its nice if there is a volume control on the touch screen (like a slider or or something like that)

SavageD 2011-02-27 17:49

Re: [ANNOUNCE] First public release of SomePlayer
 
Quote:

Originally Posted by somebody (Post 956656)
Standard music directory (.sounds) is just 'Audioclips ' entry in filemanager. But other hidden folders are inaccessible via filemanager (but you can add him to library ;) )


Yes it is problem. Problem of TagLib which I use to determine tracks metainfo. Also you may find problem with scrolling FLAC's. This is problem of backend (Phonon & Gstreamer).


Can you please show screenshot?

Your right about the the audio clips folder, I forgot about that. And about the screen shot, seems that the problem went away some how O_O.

If I could reproduce, it I'll let you know. This baby is now my favorite mp3 player, many thanks :).

Drekkie 2011-02-27 17:52

Re: [ANNOUNCE] First public release of SomePlayer
 
nice work. thanks.

Quote:

Originally Posted by neboja (Post 956588)
don't see gapless play... but ok...

and I'm seconding gapless playback as a feature request.

aanckar 2011-02-27 18:03

Re: [ANNOUNCE] First public release of SomePlayer
 
Quote:

Originally Posted by Keneraali (Post 956540)
Does Last.fm scrobbling work with this player?

Quote:

Originally Posted by somebody (Post 956547)
No. And will not working in the nearest future :)

So no support for internet radio?


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

vBulletin® Version 3.8.8