forked from len0rd/rockbox
File properties plugin: Add album artist.
Change-Id: I150e11ba309953959d374898a63d4250a90651bb
This commit is contained in:
parent
67c4231e34
commit
7882e093b2
2 changed files with 19 additions and 1 deletions
|
@ -15954,3 +15954,17 @@
|
||||||
*: "Reload After Saving"
|
*: "Reload After Saving"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
|
<phrase>
|
||||||
|
id: LANG_PROPERTIES_ALBUMARTIST
|
||||||
|
desc: in properties plugin
|
||||||
|
user: core
|
||||||
|
<source>
|
||||||
|
*: "[Album Artist]"
|
||||||
|
</source>
|
||||||
|
<dest>
|
||||||
|
*: "[Album Artist]"
|
||||||
|
</dest>
|
||||||
|
<voice>
|
||||||
|
*: "Album Artist"
|
||||||
|
</voice>
|
||||||
|
</phrase>
|
||||||
|
|
|
@ -34,6 +34,7 @@ char str_time[64];
|
||||||
|
|
||||||
char str_title[MAX_PATH];
|
char str_title[MAX_PATH];
|
||||||
char str_artist[MAX_PATH];
|
char str_artist[MAX_PATH];
|
||||||
|
char str_albumartist[MAX_PATH];
|
||||||
char str_album[MAX_PATH];
|
char str_album[MAX_PATH];
|
||||||
char str_duration[32];
|
char str_duration[32];
|
||||||
|
|
||||||
|
@ -52,6 +53,7 @@ static const unsigned char* const props_file[] =
|
||||||
ID2P(LANG_PROPERTIES_DATE), str_date,
|
ID2P(LANG_PROPERTIES_DATE), str_date,
|
||||||
ID2P(LANG_PROPERTIES_TIME), str_time,
|
ID2P(LANG_PROPERTIES_TIME), str_time,
|
||||||
ID2P(LANG_PROPERTIES_ARTIST), str_artist,
|
ID2P(LANG_PROPERTIES_ARTIST), str_artist,
|
||||||
|
ID2P(LANG_PROPERTIES_ALBUMARTIST), str_albumartist,
|
||||||
ID2P(LANG_PROPERTIES_TITLE), str_title,
|
ID2P(LANG_PROPERTIES_TITLE), str_title,
|
||||||
ID2P(LANG_PROPERTIES_ALBUM), str_album,
|
ID2P(LANG_PROPERTIES_ALBUM), str_album,
|
||||||
ID2P(LANG_PROPERTIES_DURATION), str_duration,
|
ID2P(LANG_PROPERTIES_DURATION), str_duration,
|
||||||
|
@ -119,11 +121,13 @@ static bool file_properties(const char* selected_file)
|
||||||
long dur = id3.length / 1000; /* seconds */
|
long dur = id3.length / 1000; /* seconds */
|
||||||
rb->snprintf(str_artist, sizeof str_artist,
|
rb->snprintf(str_artist, sizeof str_artist,
|
||||||
"%s", id3.artist ? id3.artist : "");
|
"%s", id3.artist ? id3.artist : "");
|
||||||
|
rb->snprintf(str_albumartist, sizeof str_albumartist,
|
||||||
|
"%s", id3.albumartist ? id3.albumartist : "");
|
||||||
rb->snprintf(str_title, sizeof str_title,
|
rb->snprintf(str_title, sizeof str_title,
|
||||||
"%s", id3.title ? id3.title : "");
|
"%s", id3.title ? id3.title : "");
|
||||||
rb->snprintf(str_album, sizeof str_album,
|
rb->snprintf(str_album, sizeof str_album,
|
||||||
"%s", id3.album ? id3.album : "");
|
"%s", id3.album ? id3.album : "");
|
||||||
num_properties += 3;
|
num_properties += 4;
|
||||||
|
|
||||||
if (dur > 0)
|
if (dur > 0)
|
||||||
{
|
{
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue