maemo.org - Talk

maemo.org - Talk (https://talk.maemo.org/index.php)
-   Multimedia (https://talk.maemo.org/forumdisplay.php?f=32)
-   -   [ANNOUNCE] Alpha release of Open Media Player (https://talk.maemo.org/showthread.php?t=72156)

natko_maniac 2014-04-08 20:59

Re: [ANNOUNCE] Alpha release of Open Media Player
 
Hi @MohammadAG !

Some times when I open video files from microb( I use option "Open with media player") the Open media player says File format not supported...
Can you take a look at this? thanks :)

Estel 2014-04-09 02:09

Re: [ANNOUNCE] Alpha release of Open Media Player
 
It seems that file format you're trying to play is... Yes, you guessed it right, it's not supported! (By MAFW).

Sohil876 2014-04-10 08:29

Re: [ANNOUNCE] Alpha release of Open Media Player
 
Quote:

Originally Posted by FlashInTheNight86 (Post 1420433)
Please add an option to stretch video to whole screen & ability to cycle between audio streams during video playback. Ability to use external audio stream (i.e. separate file) would be great as well. :rolleyes:

Yeah that strech video option will be very usefull if possible please add these features @gidzzz

rotoflex 2014-04-10 10:22

Re: [ANNOUNCE] Alpha release of Open Media Player
 
I HATE video that is stretched to an aspect ratio that is not the one it was recorded in.

When I go to friends' places with a 16X9 TV where they've stretched a 4x3 program out to fill the screen, I want to throw the TV out the window and call the arsonists to burn down their home.

Sohil876 2014-04-10 10:31

Re: [ANNOUNCE] Alpha release of Open Media Player
 
Quote:

Originally Posted by rotoflex (Post 1420677)
I HATE video that is stretched to an aspect ratio that is not the one it was recorded in.

When I go to friends' places with a 16X9 TV where they've stretched a 4x3 program out to fill the screen, I want to throw the TV out the window and call the arsonists to burn down their home.

Yeah for some videos i myself obiviously wont enable it on every video, just on some which are boxed at center and some others. Anyways, you can always "not enable it" if you dont want it, thats why its good as a option.

Estel 2014-04-10 15:27

Re: [ANNOUNCE] Alpha release of Open Media Player
 
Quote:

Originally Posted by rotoflex (Post 1420677)
When I go to friends' places with a 16X9 TV where they've stretched a 4x3 program out to fill the screen, I want to throw the TV out the window and call the arsonists to burn down their home.

Not going to invite you for watching movies anymore, sorry :(

Seriously though, I also don't see a point in stretching video without respect to aspect ratio... But, it is possible to achieve and requested from time to time, and we have spare space near the "zoom" button, so, why not?

Also, in some veeery rare cases, where video is converted with unusual pixel ratio (don't confuse with overall aspect ratio) and our player isn't recognizing embedded tags for it/tags are missing, video may be distorted when watched regularly, and "stretching" it may actually bring it closer to proper aspect ratio.

So, can never have too much features, as long as they're not mandatory to use ;)

/Estel

ZedThou 2014-04-13 03:04

Re: [ANNOUNCE] Alpha release of Open Media Player
 
I'm opening a playlist with the file manager, it's just a file, each line of which is the full pathname of an mp3 file. OMP is playing them as Internet Radio stations, so I can't tap the picture of the globe to switch view modes from current playing to full playlist.

Any idea why this is happening? It didn't always work like this, it used to open playlists as a list of songs instead of Internet Radio stations. Sorry if my terminology is messed up, please let me know if clarification or screenshots are needed. This is version 20140326.

yaliang 2014-04-13 05:13

Re: [ANNOUNCE] Alpha release of Open Media Player
 
will OMP support *.lrc ? refer to the mediabox

pali 2014-04-18 10:34

Re: [ANNOUNCE] Alpha release of Open Media Player
 
Quote:

Originally Posted by freemangordon (Post 1385983)

Mafw library has function for enabling/disabling logging at runtime, see: http://maemo.org/api_refs/5.0/5.0-fi...w-Logging.html

And nokia media player is using it:

Code:

$ strings /usr/bin/mediaplayer.launch  | grep mafw_log_init
mafw_log_init
mafw_log_init:done

But OMP not.

@freemangordon, @gidzzz: Can you look at it? We can at least reduce useless logs in syslog. Maybe looking into nokia mediaplayer.launch binary and check which which arguments it calling it...

pali 2014-04-18 11:46

Re: [ANNOUNCE] Alpha release of Open Media Player
 
Hm... did you know about example mafw application?
http://repository.maemo.org/pool/mae...mafw-test-gui/

Here is relevant code:
Code:

gint
main (gint  argc,
      gchar *argv[])
{
        setpriority (PRIO_PROCESS, 0, 10);
        mafw_log_init(NULL);
        if (!init_ui (&argc, &argv)) {
          return -2;
        }

        if (!init_app ()) {
          return -3;
        }

        gtk_main ();

        return 0;
}

and

Code:

static gboolean
init_app (void)
{
        GError *error = NULL;
        GList *extension_list;
        gchar **plugin_list;

        g_type_init ();

        /* Register plugins */
        registry = MAFW_REGISTRY(mafw_registry_get_instance());
        if (registry == NULL) {
                g_error("init_app: failed to get MafwRegistry object\n");
                return FALSE;
        }

        mafw_shared_init(registry, &error);
        if (error != NULL)
        {
                hildon_banner_show_information (NULL,
                                                "chat_smiley_angry",
                                                error->message);
                g_error_free(error);
                error = NULL;
        }

        g_signal_connect(registry,
                        "renderer_added", G_CALLBACK(renderer_added_cb), NULL);

        g_signal_connect(registry,
                        "renderer_removed", G_CALLBACK(renderer_removed_cb), NULL);

        g_signal_connect(registry,
                        "source_added", G_CALLBACK(source_added_cb), NULL);

        g_signal_connect(registry,
                        "source_removed", G_CALLBACK(source_removed_cb), NULL);

        extension_list = mafw_registry_get_renderers(registry);
        while (extension_list)
        {
                renderer_added_cb(registry, G_OBJECT(extension_list->data), NULL);
                extension_list = g_list_next(extension_list);
        }
       
        extension_list = mafw_registry_get_sources(registry);
        while (extension_list)
        {
                source_added_cb(registry, G_OBJECT(extension_list->data), NULL);
                extension_list = g_list_next(extension_list);
        }

       
        /* Check if we need to load any plugins directly */
        if (NULL != g_getenv("MAFW_TG_PLUGINS")) {
                plugin_list = g_strsplit(g_getenv("MAFW_TG_PLUGINS"),
                                        G_SEARCHPATH_SEPARATOR_S, 0);
                gchar **plugin;
                plugin = plugin_list;
                for (; NULL != *plugin; plugin++) {
                        mafw_registry_load_plugin(
                                        MAFW_REGISTRY(registry),
                                        *plugin, &error);
                        g_debug("Plugin '%s' loaded\n", *plugin);
                        if (error != NULL) {
                                gchar* msg;
                                msg = g_strdup_printf("Unable to load plugin"
                                                      "%s: %s", *plugin,
                                                      error->message);
                                hildon_banner_show_information (NULL,
                                                "chat_smiley_angry", msg);
                                g_free(msg);
                                g_error_free(error);
                                error = NULL;
                        }
                }
                g_strfreev(plugin_list);
        }

        /* Hook to crawler status */
        register_crawler_watch ();

        return TRUE;
}

And here is disassembled main() function of nokia media media player:

Code:


000153cc <main>:
  153cc:        e92d4870        push        {r4, r5, r6, fp, lr}
  153d0:        e28db010        add        fp, sp, #16
  153d4:        e59f50dc        ldr        r5, [pc, #220]        ; 154b8 <main+0xec>
  153d8:        e24dd00c        sub        sp, sp, #12
  153dc:        e50b101c        str        r1, [fp, #-28]
  153e0:        e59f10d4        ldr        r1, [pc, #212]        ; 154bc <main+0xf0>
  153e4:        e08f5005        add        r5, pc, r5
  153e8:        e59f40d0        ldr        r4, [pc, #208]        ; 154c0 <main+0xf4>
  153ec:        e50b0018        str        r0, [fp, #-24]
  153f0:        e0851001        add        r1, r5, r1
  153f4:        e3a00006        mov        r0, #6
  153f8:        e0854004        add        r4, r5, r4
  153fc:        ebfffbfa        bl        143ec <setlocale@plt>
  15400:        e59f10bc        ldr        r1, [pc, #188]        ; 154c4 <main+0xf8>
  15404:        e1a00004        mov        r0, r4
  15408:        e0851001        add        r1, r5, r1
  1540c:        ebfffb96        bl        1426c <bindtextdomain@plt>
  15410:        e59f10b0        ldr        r1, [pc, #176]        ; 154c8 <main+0xfc>
  15414:        e1a00004        mov        r0, r4
  15418:        e0851001        add        r1, r5, r1
  1541c:        ebfff4a5        bl        126b8 <bind_textdomain_codeset@plt>
  15420:        e1a00004        mov        r0, r4
  15424:        ebfff6f2        bl        12ff4 <textdomain@plt>
  15428:        ebfffc52        bl        14578 <g_type_init@plt>
  1542c:        e59f0098        ldr        r0, [pc, #152]        ; 154cc <main+0x100>
  15430:        e3a01000        mov        r1, #0
  15434:        e0850000        add        r0, r5, r0
  15438:        ebfff9ab        bl        13aec <fmp_tracking_write_performance_log@plt>
  1543c:        e3a00000        mov        r0, #0
  15440:        ebfff781        bl        1324c <mafw_log_init@plt>
  15444:        e59f0084        ldr        r0, [pc, #132]        ; 154d0 <main+0x104>
  15448:        e24b4018        sub        r4, fp, #24
  1544c:        e24b601c        sub        r6, fp, #28
  15450:        e0850000        add        r0, r5, r0
  15454:        e3a01001        mov        r1, #1
  15458:        ebfff9a3        bl        13aec <fmp_tracking_write_performance_log@plt>
  1545c:        e1a00004        mov        r0, r4
  15460:        e1a01006        mov        r1, r6
  15464:        ebfffb47        bl        14188 <gst_init@plt>
  15468:        e1a00004        mov        r0, r4
  1546c:        e1a01006        mov        r1, r6
  15470:        ebfff5a1        bl        12afc <hildon_gtk_init@plt>
  15474:        e59f0058        ldr        r0, [pc, #88]        ; 154d4 <main+0x108>
  15478:        e3a01001        mov        r1, #1
  1547c:        e0850000        add        r0, r5, r0
  15480:        ebfff999        bl        13aec <fmp_tracking_write_performance_log@plt>
  15484:        ebfffb0f        bl        140c8 <gnome_vfs_init@plt>
  15488:        e59f0048        ldr        r0, [pc, #72]        ; 154d8 <main+0x10c>
  1548c:        e3a01001        mov        r1, #1
  15490:        e0850000        add        r0, r5, r0
  15494:        ebfff994        bl        13aec <fmp_tracking_write_performance_log@plt>
  15498:        ebfff912        bl        138e8 <fmp_application_new_with_controllers@plt>
  1549c:        e1a04000        mov        r4, r0
  154a0:        ebfff523        bl        12934 <fmp_application_run@plt>
  154a4:        e1a00004        mov        r0, r4
  154a8:        ebfffc8c        bl        146e0 <g_object_unref@plt>
  154ac:        e3a00000        mov        r0, #0
  154b0:        e24bd010        sub        sp, fp, #16
  154b4:        e8bd8870        pop        {r4, r5, r6, fp, pc}
  154b8:        0008d33c        andeq        sp, r8, ip, lsr r3
  154bc:        fffeea10                        ; <UNDEFINED> instruction: 0xfffeea10
  154c0:        fffe7e7c                        ; <UNDEFINED> instruction: 0xfffe7e7c
  154c4:        fffe7e88                        ; <UNDEFINED> instruction: 0xfffe7e88
  154c8:        fffe7e9c                        ; <UNDEFINED> instruction: 0xfffe7e9c
  154cc:        fffe7ea4                        ; <UNDEFINED> instruction: 0xfffe7ea4
  154d0:        fffe7ebc                        ; <UNDEFINED> instruction: 0xfffe7ebc
  154d4:        fffe7ed0                        ; <UNDEFINED> instruction: 0xfffe7ed0
  154d8:        fffe7ee8                        ; <UNDEFINED> instruction: 0xfffe7ee8

So it calling mafw_log_init(NULL) too:
Code:

  1543c:        e3a00000        mov        r0, #0
  15440:        ebfff781        bl        1324c <mafw_log_init@plt>

So I think we can add mafw_log_init(NULL) to OMP player/main.cpp too and this fix syslog flooding...

@gidzzz: Can you recheck if OMP doing same mafw initialization as above mafw example from SDK?

pali 2014-04-18 12:01

Re: [ANNOUNCE] Alpha release of Open Media Player
 
@gidzzz: Here is merge request for disabling logging:
https://gitorious.org/qt-mediaplayer...rge_requests/8

freemangordon 2014-04-18 14:40

Re: [ANNOUNCE] Alpha release of Open Media Player
 
Quote:

Originally Posted by pali (Post 1421787)
Mafw library has function for enabling/disabling logging at runtime, see: http://maemo.org/api_refs/5.0/5.0-fi...w-Logging.html

And nokia media player is using it:

Code:

$ strings /usr/bin/mediaplayer.launch  | grep mafw_log_init
mafw_log_init
mafw_log_init:done

But OMP not.

@freemangordon, @gidzzz: Can you look at it? We can at least reduce useless logs in syslog. Maybe looking into nokia mediaplayer.launch binary and check which which arguments it calling it...

Sorry, I was very busy lately with having no time to even read TMO :(. Hopefully the storm is over and I will have some free time starting from tomorrow.

gidzzz 2014-04-18 16:20

Re: [ANNOUNCE] Alpha release of Open Media Player
 
Quote:

Originally Posted by FlashInTheNight86 (Post 1420433)
Please add an option to stretch video to whole screen & ability to cycle between audio streams during video playback. Ability to use external audio stream (i.e. separate file) would be great as well. :rolleyes:

OMP is just a frontend to MAFW and MAFW does not seem to provide that functionality.


Quote:

Originally Posted by ZedThou (Post 1421175)
I'm opening a playlist with the file manager, it's just a file, each line of which is the full pathname of an mp3 file. OMP is playing them as Internet Radio stations, so I can't tap the picture of the globe to switch view modes from current playing to full playlist.

Any idea why this is happening? It didn't always work like this, it used to open playlists as a list of songs instead of Internet Radio stations. Sorry if my terminology is messed up, please let me know if clarification or screenshots are needed. This is version 20140326.

Things work alright here. The type of window which is opened depends on the type of the last file in the playlist (just for simplicity of implementation, maybe I will change that to a more intuitive solution in the future), so you might want to check if the last file exists or is in some unsupported format.


Quote:

Originally Posted by yaliang (Post 1421177)
will OMP support *.lrc ? refer to the mediabox

I do not have plans for that at the moment, but I do not have anything against it appearing in OMP either.


I have uploaded an update (20140418-1) with a bunch of changes from Pali:
  • Do not output MAFW messages to syslog.
  • Fixed a typo and updated the Slovak translation.
  • A few other changes under the hood.

Alecsandru 2014-04-18 16:43

Re: [ANNOUNCE] Alpha release of Open Media Player
 
when checking autofit there is a bluish color , how about this?

xes 2014-04-25 09:39

Re: [ANNOUNCE] Alpha release of Open Media Player
 
Latest version is working great! Thanks to gidzzz an pali!

Cpu load is really low and all the syslog flood has disappeared.

Also the "unsupported codec" message or the infinite wait before video playback has been completely solved with the stupid wrapper from post
http://talk.maemo.org/showpost.php?p...postcount=1563

So, now all the video playback troubles are only due to the mafw-gst-renderer eating memory and hanging in an uknown "mumble state".

In fact the mafw-gst-renderer sources contain a section where it tries to detect video details (res, codec..) but any syslog reporting of this data is disabled..(this follows the general rule: any unuseful info is logged while all important details are not reported anywhere)

I have one little personal issue with OMP:
Music - All songs - Select a song from all the songs in alphabetic order typing part of song name - play

While playing the song i searched for, i would expect a way to play the other songs from the same album (since it shows also the album picture) but it seems there is no way to do it and you can only go back to the complete alphabetic list. (often i remember a song but not the album)
After this, if you have more albums with the same song, searching for a song an leaving it playing you obtain OMP playing 3 times (for example) the same song while the default behavior should be playing something related to the searched song but not 3 times the same.

Estel 2014-04-26 04:46

Re: [ANNOUNCE] Alpha release of Open Media Player
 
Quote:

Originally Posted by xes (Post 1422703)
In fact the mafw-gst-renderer sources contain a section where it tries to detect video details (res, codec..) but any syslog reporting of this data is disabled..(this follows the general rule: any unuseful info is logged while all important details are not reported anywhere)

Is it fixable? If yes, maybe CSSU could include updated where useful logging is enabled?

Also - considering that we won't (probably) see a possibility to fix mafw-gst-renderer anytime soon, maybe your method of using a small script linking to openmediaplayer binary, that kills mafw-gst-renderer before and after operation, should be incorporated in OMP releases? It's "ugly", but working fine, and the best thing we can have now, I guess.

/Estel

xes 2014-05-04 21:57

Re: [ANNOUNCE] Alpha release of Open Media Player
 
@gidzzz

one more request.
Since many things are changing into internet radios and search directories (see shoutcast) with the result that many internet radio bookmarks are not valid anymore, we are forced to search again our preferred streams to add them again with the usual tedious copy-paste steps. (...IF we can load that pages filled with javascript into our old mobile browser)

I would ask if it would be possible to add a search button to pass a search string to an external module or script that would give as result the link to the stream to be added to the bookmarks list (and eventually a load button to import a proper csv).

With this rough approach, we can find an easy solution to a problem with something that will be easy to fix/develop/customize in the future to follow new internet radios search directories.

An example of search script to start play with:
http://crunchbang.org/forums/viewtop...0587%23p150587

Meegomonster 2014-05-08 13:44

Re: [ANNOUNCE] Alpha release of Open Media Player
 
I know this is totally unnecessary but I was using my old n79 the other day and was wondering if scrolling lyrics could be implemented as well as a floating widget/application that displays the lyrics when you switch to other applications..kinda like how ttpod does it..it was quite cool

pali 2014-05-08 14:03

Re: [ANNOUNCE] Alpha release of Open Media Player
 
If you are using both cssu-devel & OMP, please look here: http://talk.maemo.org/showthread.php...38#post1424538

marmistrz 2014-05-11 11:01

Re: [ANNOUNCE] Alpha release of Open Media Player
 
OK, LC_ALL=C fixes. My regional settings (just regenerated, because somehow they changed themselves to both en-us) are:

language: en-us
regional settings (currency, decimal separator et al): Polish

TomJ 2014-05-13 10:13

Re: [ANNOUNCE] Alpha release of Open Media Player
 
What the Mediaplayer has long wanted was a method of editing the order of tracks in playlists. Any chance of that being added to OMP?

xes 2014-05-13 15:15

Re: [ANNOUNCE] Alpha release of Open Media Player
 
@TomJ
Probably this is the cause:
https://bugs.maemo.org/show_bug.cgi?id=6295

Anyway, it would be nice to have it fixed!

Another point is about tracks without any id3...
At this moment i can't see these tracks listed in OMP.

I can open the tracks with filemanager and listen with OMP that shows the complete filename... but i CAN'T find them listed as "no name" or "no artist" in the track list.

Could someone confirm this behavior?

Android_808 2014-05-13 19:01

Re: [ANNOUNCE] Alpha release of Open Media Player
 
I have an issue with some tracks not having their information detected, instead being displayed as Unknown Artist - Unknown Album. Its sometime solved by rebuilding database/resetting tracker

In most cases its a single track from an entire album. If I get a chance I'll upload a mediainfo summary of an example track.

pali 2014-05-13 19:05

Re: [ANNOUNCE] Alpha release of Open Media Player
 
Yes, above bug (sort by disc number) is really annoying for multidisc albums...

sixwheeledbeast 2014-05-13 19:19

Re: [ANNOUNCE] Alpha release of Open Media Player
 
Quote:

Originally Posted by Android_808 (Post 1425206)
I have an issue with some tracks not having their information detected, instead being displayed as Unknown Artist - Unknown Album. Its sometime solved by rebuilding database/resetting tracker

In most cases its a single track from an entire album. If I get a chance I'll upload a mediainfo summary of an example track.

This is definitely a tracker issue and can't be fixed in OMP.

Quote:

Originally Posted by pali (Post 1425207)
Yes, above bug (sort by disc number) is really annoying for multidisc albums...

+2 here.

pali 2014-05-13 19:29

Re: [ANNOUNCE] Alpha release of Open Media Player
 
And another feature request: Support for replaygain from mp3 and vorbis/flac tags.

Android_808 2014-05-13 19:45

Re: [ANNOUNCE] Alpha release of Open Media Player
 
Quote:

Originally Posted by sixwheeledbeast (Post 1425211)
This is definitely a tracker issue and can't be fixed in OMP.

I guessed as much, just wondered if it could be in some way related to the issue xes is having.

Quote:

Originally Posted by sixwheeledbeast (Post 1425211)
+2 here.

Make that 3 :p

TomJ 2014-05-15 09:21

Re: [ANNOUNCE] Alpha release of Open Media Player
 
While I'm doing feature requests...
I imagine I'm not the only one who listens to music or podcass via Bluetooth or FM. To turn either on from the Now Playing screens takes a minimum of 4 taps (3 if you have relevant desktop widgets, but a further 2 are then needed to get back to Now Playing); would it be possible to add simple on/off buttons for BT and FM on any or all of the Now Playing windows?

TomJ 2014-05-15 09:28

Re: [ANNOUNCE] Alpha release of Open Media Player
 
Quote:

Originally Posted by xes (Post 1425187)
@TomJ
Probably this is the cause:
https://bugs.maemo.org/show_bug.cgi?id=6295

Anyway, it would be nice to have it fixed!

I don't see how that could be the cause; it relates to how tracks are displayed from the reading of their ID3 tags, whereas playlist creation seems to generate a simple text file in ~/mafw-playlists

(I say seems to be, as I've tries hand editing the files to chage playlist order, but OMP sticks resolutely with the original order.)

xes 2014-05-15 13:27

Re: [ANNOUNCE] Alpha release of Open Media Player
 
(~OT) To check the id3 tags of mp3 and flac files, we need a proper tool.

eyed3 0.6.18 Just uploaded in autobuilder, should be available soon.

EDIT:
And the right sqlite command to show track's index:

sqlite3 /home/user/.cache/tracker/file-meta.db "SELECT ID, Path, Name, KeyMetadata1, KeyMetadata4 FROM Services WHERE Mime LIKE \"audio/%\" AND KeyMetadata1 != '' AND KeyMetadata4 != ''"

Android_808 2014-05-15 15:09

Re: [ANNOUNCE] Alpha release of Open Media Player
 
i thought mediainfo was up already.

xes 2014-05-15 15:22

Re: [ANNOUNCE] Alpha release of Open Media Player
 
Quote:

Originally Posted by Android_808 (Post 1425468)
i thought mediainfo was up already.

Yes, but if i'm not wrong it can't change the tags.
eyeD3 can change them and is easy to use to fix or tweak a bunch of files with a script.

int_ua 2014-05-15 15:53

Re: [ANNOUNCE] Alpha release of Open Media Player
 
Quote:

Originally Posted by xes (Post 1425473)
eyeD3 can change them and is easy to use to fix or tweak a bunch of files with a script.

IIRC, python-mutagen can also be used.

pali 2014-06-09 15:25

Re: [ANNOUNCE] Alpha release of Open Media Player
 
Another future request: support for plugins. Stock nokia media player has support for them. There is e.g grilo plugin for filesystem access...

pali 2014-06-09 15:26

Re: [ANNOUNCE] Alpha release of Open Media Player
 
http://maemo.org/packages/view/mafw-grilo-source/

Rock> 2014-07-10 15:44

Re: [ANNOUNCE] Alpha release of Open Media Player
 
Is it possible to add '"video lock" feature for this app, it could be very convenient to have it in drop-down menu?
Thanks in advance.

marmistrz 2014-07-20 15:47

Re: [ANNOUNCE] Alpha release of Open Media Player
 
The lyrics.wikia.com algorithm malfunctions with artists with cyrillic names. For this track the lyrics can't be downloaded:

artist: Эпидемия
album: Дорога Домой
track: Феникс

The link is: http://lyrics.wikia.com/%D0%AD%D0%BF...B8%D0%BA%D1%81

It might be difficult to create an algorithm to handle this [1] doesn't have the latin alphabet part, [2] is case insensitive. And this is just a quick search. Although http://lyrics.wikia.com/Эпидемия redirects to the part with latin alphabet, the subpages don't. Maybe it'd be a good idea to allow users to override tags just for the lyrics download? It's quite serious, because OMP lyrics download is useless when it comes to Russian-named artists.

[1] http://lyrics.wikia.com/%D0%9B%D0%B5...BD%D0%B0%D1%8F
[2] http://lyrics.wikia.com/%D0%90%D0%BB...BC%D0%BB%D1%8F

PS. I did report this to Lyrics Wiki, but overriding metadata would be a very useful request, e.g. for titles like "$SONG_TITLE (Live)"

Estel 2014-07-20 20:12

Re: [ANNOUNCE] Alpha release of Open Media Player
 
I've encountered a small issue with Internet radio streams handling. Every one need to be saved as "video", or it will won't work - even if we're talking about audio-only ones. The radio starts like video (black screen, etc), then moves to audio-only - if you pause it and try to resume, it won't work, again (due to being in audio-only mode, probably), and require being started as "video" one again, from scratch.

Cheers,
/Estel

marmistrz 2014-09-11 14:30

Re: [ANNOUNCE] Alpha release of Open Media Player
 
gidzzz, can you please state your attitude towards http://talk.maemo.org/showpost.php?p...postcount=1637 this bug? Is its state "please give me time", "won't fix", "I don't care" or whatever?

Btw. one of the other algorithms seems to go crazy recently. For example downloaded lyrics for "Skid Row - Monkey Business" start with

Code:

);var c=function(){cf.showAsyncAd(opts)};if(window.cfc();else{cf_async=!0; var r=document.createElement("script"),s=document.get
My providers order is: LyricWiki, DarkLyrics, AZLyrics, ChartLyrics

gidzzz 2014-09-11 15:14

Re: [ANNOUNCE] Alpha release of Open Media Player
 
I have not looked into it yet, because I was quite busy for the last few months and it did not sound that serious to me, but finally this month I am planning to give OMP some love.


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

vBulletin® Version 3.8.8