PythoneSound hier beschreiben...
filename = "name.mp3.something.else" stem = string.split(filename, "mp3", 1) print stem ['name.', '.something.else'] filename = stem[0]+"mp3" print filename name.mp3
"Playing an MP3 file using pygame"
import pygame.mixer as mixer
mixer.init(44100)
mixer.music.load("White Bird.mp3")
mixer.music.play()
mixer.music.get_busy()
print "Press enter to quit."
raw_input()
console root@video:/etc/modules.d# amixer scontrols Simple mixer control 'Master',0 Simple mixer control 'Headphone',0 Simple mixer control '3D Control - Center',0 Simple mixer control '3D Control - Depth',0 Simple mixer control '3D Control - Switch',0 Simple mixer control 'PCM',0 Simple mixer control 'PCM Out Path & Mute',0 Simple mixer control 'Line',0 Simple mixer control 'CD',0 Simple mixer control 'Mic',0 Simple mixer control 'Mic Boost (+20dB)',0 Simple mixer control 'Video',0 Simple mixer control 'Phone',0 Simple mixer control 'IEC958 Input',0 Simple mixer control 'IEC958 Output',0 Simple mixer control 'Aux',0 Simple mixer control 'Capture',0 Simple mixer control 'Mix',0 Simple mixer control 'Mix Mono',0 Simple mixer control 'ADC',0 Simple mixer control 'DAC',0 root@video:/etc/modules.d#
http://www.clug.in-chemnitz.de/vortraege/multimedia/SOFTWARE/linux_soundapps.html#swss
http://www.linuxjournal.com/article.php?sid=4403
http://www.linuxjournal.com/article.php?sid=4403
http://www.google.com/linux?hl=en&lr=&ie=UTF-8&q=learning+sound+ear+python&btnG=Google+Search
http://www.onlamp.com/topics/python/internet http://www.google.com/search?sourceid=python-search&q=mixer&submit=Search&q=site%3Apython.org http://www.python.org/doc/current/lib/mixer-device-objects.html http://www.onlamp.com/pub/a/python/2001/10/25/pythonnews.html http://musickit.sourceforge.net/platforms.html#LINUX http://www.speech.kth.se/snack/man/snack2.2/python-man.html http://www.solfege.org/Main/HomePage http://www.speech.kth.se/snack/download.html http://tuxedo.org/ http://www.portaudio.com/ http://www.speech.kth.se/snack/ http://www.portaudio.com/download.html http://www.onlamp.com/topics/python/user_interfaces http://www.solfege.org/Main/ScreenShots
http://www.onlamp.com/topics/python/tutorials
http://www.onlamp.com/topics/python/tools http://www.onlamp.com/topics/python/os http://www.onlamp.com/topics/python/programming
http://infohost.nmt.edu/tcc/help/lang/python/sysprog.html
http://infohost.nmt.edu/tcc/cgi/pre.cgi?file=/u/www/docs/tcc/help/lang/python/oldfiles.py
Pythone/Module/Sound (last modified 2008-11-04 06:59:56)