1

直接リンクからファイルを開くことでファイルを変数に割り当てる方法について検索したところ、多くの方法が見つかりましたが、ユーザーがファイルを使用するときに、関数によって読み取られる変数にファイルを割り当てる方法を知りたいと思っていましたファイルを開くためのダイアログ (例: [ファイル] > [開く] > [ユーザーが選択したファイル])

に渡される音楽ファイルを開こうとしていますpyglet.media.load(variable containing file)

次のエラーが返されます。NameError: f is not defined

from tkinter import *
from tkinter.filedialog import askopenfilename
import pyglet
from threading import Thread

app = Tk()
app.title("Music Player")
app.geometry("600x200")
have_avbin = True 

def openFile():
    song =  filedialog.askopenfilename(filetypes = (("MP3 files", "*.mp3"),("All files","*.*")))
    f = song
    return f



#Creates menu bar for opening MP3s, and closing the program
menu = Menu(app)
file = Menu(menu)
file.add_command(label='Open', command=  openFile) # replace 'print' with the name of your open function
file.add_command(label='Exit', command=app.destroy) # closes the tkinter window, ending the app
menu.add_cascade(label='File', menu=file)
app.config(menu=menu)

#Run each app library mainloop in different python thread to prevent freezing
def playMusic():
    global player_thread
    player_thread = Thread(target=real_playMusic)
    player_thread.start()

def stopMusic():
    global player_thread
    player_thread = Thread(target=real_stopMusic)
    player_thread.start()

#Play open file function attached to button
def real_playMusic():
    music = pyglet.media.load(f);
    music.play()
    pyglet.app.run()

#Stop the music function
def real_stopMusic():
     pyglet.app.exit()




#Play button creation
btnPlay = Button(app, text ="Play", command = playMusic)
btnPlay.grid()


#Pause button creation
btnPause = Button(app)
btnPause.grid()
btnPause.configure(text = "Stop", command = stopMusic)



app.mainloop() # keep at the end
4

1 に答える 1

1
have_avbin = True
f='' # initialize this variable

def openFile():
    global f # tell the function that we plan on modifying this global variable
    f = filedialog.askopenfilename(filetypes = (("MP3 files", "*.mp3"),("All files","*.*")))
于 2015-04-22T23:48:20.140 に答える