Skip to content

Commit 3bf9d89

Browse files
AudioPlayer: disable playing progress
1 parent 8b7bf23 commit 3bf9d89

File tree

1 file changed

+3
-2
lines changed
  • internal_filesystem/apps/com.micropythonos.musicplayer/assets

1 file changed

+3
-2
lines changed

internal_filesystem/apps/com.micropythonos.musicplayer/assets/audio_player.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -131,8 +131,9 @@ def scale_audio(buf: ptr8, num_bytes: int, scale_fixed: int):
131131

132132
total = 0
133133
while total < data_size:
134-
if total % 51 == 0:
135-
print('.', end='')
134+
# Progress:
135+
#if total % 51 == 0:
136+
# print('.', end='')
136137
if not AudioPlayer._keep_running:
137138
print("_keep_running = False, stopping...")
138139
break

0 commit comments

Comments
 (0)