forked from micropython/micropython
-
Notifications
You must be signed in to change notification settings - Fork 1.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #2337 from jepler/mp3
Add MP3 playback
- Loading branch information
Showing
31 changed files
with
1,009 additions
and
27 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8,7 +8,7 @@ msgid "" | |
msgstr "" | ||
"Project-Id-Version: PACKAGE VERSION\n" | ||
"Report-Msgid-Bugs-To: \n" | ||
"POT-Creation-Date: 2019-12-06 13:25-0600\n" | ||
"POT-Creation-Date: 2019-12-10 13:55-0600\n" | ||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" | ||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" | ||
"Language-Team: LANGUAGE <[email protected]>\n" | ||
|
@@ -496,11 +496,21 @@ msgstr "" | |
msgid "Could not initialize UART" | ||
msgstr "Tidak dapat menginisialisasi UART" | ||
|
||
#: shared-module/audiomp3/MP3File.c | ||
msgid "Couldn't allocate decoder" | ||
msgstr "" | ||
|
||
#: shared-module/audiocore/WaveFile.c shared-module/audiomixer/Mixer.c | ||
#: shared-module/audiomp3/MP3File.c | ||
msgid "Couldn't allocate first buffer" | ||
msgstr "" | ||
|
||
#: shared-module/audiomp3/MP3File.c | ||
msgid "Couldn't allocate input buffer" | ||
msgstr "" | ||
|
||
#: shared-module/audiocore/WaveFile.c shared-module/audiomixer/Mixer.c | ||
#: shared-module/audiomp3/MP3File.c | ||
msgid "Couldn't allocate second buffer" | ||
msgstr "" | ||
|
||
|
@@ -613,6 +623,10 @@ msgstr "" | |
msgid "Failed to connect: timeout" | ||
msgstr "" | ||
|
||
#: shared-module/audiomp3/MP3File.c | ||
msgid "Failed to parse MP3 file" | ||
msgstr "" | ||
|
||
#: ports/nrf/sd_mutex.c | ||
#, fuzzy, c-format | ||
msgid "Failed to release mutex, err 0x%04x" | ||
|
@@ -1779,7 +1793,7 @@ msgstr "argumen keyword ekstra telah diberikan" | |
msgid "extra positional arguments given" | ||
msgstr "argumen posisi ekstra telah diberikan" | ||
|
||
#: shared-bindings/audiocore/WaveFile.c | ||
#: shared-bindings/audiocore/WaveFile.c shared-bindings/audiomp3/MP3File.c | ||
#: shared-bindings/displayio/OnDiskBitmap.c | ||
msgid "file must be a file opened in byte mode" | ||
msgstr "" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8,7 +8,7 @@ msgid "" | |
msgstr "" | ||
"Project-Id-Version: PACKAGE VERSION\n" | ||
"Report-Msgid-Bugs-To: \n" | ||
"POT-Creation-Date: 2019-12-06 13:25-0600\n" | ||
"POT-Creation-Date: 2019-12-10 13:55-0600\n" | ||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" | ||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" | ||
"Language-Team: LANGUAGE <[email protected]>\n" | ||
|
@@ -486,11 +486,21 @@ msgstr "" | |
msgid "Could not initialize UART" | ||
msgstr "" | ||
|
||
#: shared-module/audiomp3/MP3File.c | ||
msgid "Couldn't allocate decoder" | ||
msgstr "" | ||
|
||
#: shared-module/audiocore/WaveFile.c shared-module/audiomixer/Mixer.c | ||
#: shared-module/audiomp3/MP3File.c | ||
msgid "Couldn't allocate first buffer" | ||
msgstr "" | ||
|
||
#: shared-module/audiomp3/MP3File.c | ||
msgid "Couldn't allocate input buffer" | ||
msgstr "" | ||
|
||
#: shared-module/audiocore/WaveFile.c shared-module/audiomixer/Mixer.c | ||
#: shared-module/audiomp3/MP3File.c | ||
msgid "Couldn't allocate second buffer" | ||
msgstr "" | ||
|
||
|
@@ -602,6 +612,10 @@ msgstr "" | |
msgid "Failed to connect: timeout" | ||
msgstr "" | ||
|
||
#: shared-module/audiomp3/MP3File.c | ||
msgid "Failed to parse MP3 file" | ||
msgstr "" | ||
|
||
#: ports/nrf/sd_mutex.c | ||
#, c-format | ||
msgid "Failed to release mutex, err 0x%04x" | ||
|
@@ -1749,7 +1763,7 @@ msgstr "" | |
msgid "extra positional arguments given" | ||
msgstr "" | ||
|
||
#: shared-bindings/audiocore/WaveFile.c | ||
#: shared-bindings/audiocore/WaveFile.c shared-bindings/audiomp3/MP3File.c | ||
#: shared-bindings/displayio/OnDiskBitmap.c | ||
msgid "file must be a file opened in byte mode" | ||
msgstr "" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,7 +7,7 @@ msgid "" | |
msgstr "" | ||
"Project-Id-Version: \n" | ||
"Report-Msgid-Bugs-To: \n" | ||
"POT-Creation-Date: 2019-12-06 13:25-0600\n" | ||
"POT-Creation-Date: 2019-12-10 13:55-0600\n" | ||
"PO-Revision-Date: 2018-12-20 22:15-0800\n" | ||
"Last-Translator: Timothy <[email protected]>\n" | ||
"Language-Team: fil\n" | ||
|
@@ -495,11 +495,21 @@ msgstr "" | |
msgid "Could not initialize UART" | ||
msgstr "Hindi ma-initialize ang UART" | ||
|
||
#: shared-module/audiomp3/MP3File.c | ||
msgid "Couldn't allocate decoder" | ||
msgstr "" | ||
|
||
#: shared-module/audiocore/WaveFile.c shared-module/audiomixer/Mixer.c | ||
#: shared-module/audiomp3/MP3File.c | ||
msgid "Couldn't allocate first buffer" | ||
msgstr "Hindi ma-iallocate ang first buffer" | ||
|
||
#: shared-module/audiomp3/MP3File.c | ||
msgid "Couldn't allocate input buffer" | ||
msgstr "" | ||
|
||
#: shared-module/audiocore/WaveFile.c shared-module/audiomixer/Mixer.c | ||
#: shared-module/audiomp3/MP3File.c | ||
msgid "Couldn't allocate second buffer" | ||
msgstr "Hindi ma-iallocate ang second buffer" | ||
|
||
|
@@ -616,6 +626,10 @@ msgstr "" | |
msgid "Failed to connect: timeout" | ||
msgstr "" | ||
|
||
#: shared-module/audiomp3/MP3File.c | ||
msgid "Failed to parse MP3 file" | ||
msgstr "" | ||
|
||
#: ports/nrf/sd_mutex.c | ||
#, fuzzy, c-format | ||
msgid "Failed to release mutex, err 0x%04x" | ||
|
@@ -1810,7 +1824,7 @@ msgstr "dagdag na keyword argument na ibinigay" | |
msgid "extra positional arguments given" | ||
msgstr "dagdag na positional argument na ibinigay" | ||
|
||
#: shared-bindings/audiocore/WaveFile.c | ||
#: shared-bindings/audiocore/WaveFile.c shared-bindings/audiomp3/MP3File.c | ||
#: shared-bindings/displayio/OnDiskBitmap.c | ||
msgid "file must be a file opened in byte mode" | ||
msgstr "file ay dapat buksan sa byte mode" | ||
|
Oops, something went wrong.