10 examples of 'python play mp3' in Python

Every line of 'python play mp3' code snippets is scanned for vulnerabilities by our powerful machine learning engine that combs millions of open source libraries, ensuring your Python code is secure.

All examples are scanned by Snyk Code

By copying the Snyk Code Snippets you agree to
32def play_mp3_file(mp3_file):
33 # set output high in order to turn on amplifier
34 GPIO.output(amp_switch_pin, 1)
35 time.sleep(0.3)
36 pygame.mixer.init()
37 pygame.mixer.music.load(mp3_file)
38 print "now playing file: ", mp3_file
39 pygame.mixer.music.play()
40 while pygame.mixer.music.get_busy():
41 time.sleep(0.1)
42 if button_pressed == True:
43 pygame.mixer.music.stop()
44 pygame.mixer.quit()
45 print 'alarm turned off'
46 break
47 else:
48 continue
49 # set ouput low in order to turn off amplifier
50 time.sleep(0.5)
51 GPIO.output(amp_switch_pin, 0)
52 pygame.mixer.quit()
53 print 'quit play function'
48def play(mp3_url):
49 try:
50 subprocess.Popen(['pkill', 'mpg123'])
51 time.sleep(.3)
52 except:
53 pass
54 finally:
55 subprocess.Popen(['mpg123', mp3_url])
22def play(song_name): #音乐播放器
23
24 print('正在播放:' + song_name)
25 os.system('mplayer /home/pi/xiaolan/memory_center/musiclib/music.mp3')
37def play_file(wavfile):
38 f = open(wavfile, "rb")
39 wav = audioio.WaveFile(f)
40 a.play(wav)
11def play_file(wavfile):
12 audio_file = open(wavfile, "rb")
13 wav = audioio.WaveFile(audio_file)
14 speaker.play(wav)
15 while speaker.playing:
16 pass
36def play_wav(cfn):
37
38 global wav16_dir, tts, corpus
39
40 wavfn = '%s/%s/%s.wav' % (wav16_dir, corpus, cfn)
41
42 with open(wavfn) as wavf:
43 wav = wavf.read()
44
45 tts.play_wav(wav, async=True)
31def play(self):
32 if self.sounds[self.level] is not None:
33 self.sounds[self.level].play(loops=self.loops)
38def play_audio_p(path):
39 path = os.path.realpath(path)
40 subprocess.call([player_name, path])
189def do_playback():
190
191 global recording, buf
192
193 buf = StringIO()
194
195 wf = wave.open(buf, 'wb')
196 wf.setnchannels(1)
197 wf.setsampwidth(2)
198 wf.setframerate(SAMPLE_RATE)
199
200 packed_audio = struct.pack('%sh' % len(recording), *recording)
201 wf.writeframes(packed_audio)
202
203 player.play(buf.getvalue())
204
205 buf.close()
143def __reduce_ex__(self,*args):
144 pass
145 def __str__(self,*args):
146 pass
147 CanRaiseEvents=property(lambda self: object(),lambda self,v: None,lambda self: None)
148 """Gets a value indicating whether the component can raise an event.
149
150"""

Related snippets