我正在 Ubuntu 上用 python 编写一个程序,用于从文件夹中导入和打印视频文件的名称,但它打印为简单的文本,而不是可点击的形式。
我想使它们可点击并在视频播放器"vlc"上一键打开。
你能指导我这样做吗?
import io,sys,os,subprocess
from Tkinter import *
def viewFile():
for f in os.listdir(path):
if f.endswith(".h264"):
tex.insert(END,f + "n")
if __name__ == '__main__':
root = Tk()
mainframe= root.title("FILE MANAGER APPLICATION") # Program Objective
mainframe= root.attributes('-fullscreen', True)
step = LabelFrame(root,text="FILE MANAGER", font = "Arial 20 bold italic")
step.grid(row=0, columnspan=7, sticky='W',padx=100, pady=5, ipadx=130, ipady=25)
Button(step, text="File View", font = "Arial 8 bold italic", activebackground="turquoise", width=30, height=5, command=viewFile).grid (row= 1, column =2)
Button(step, text="Exit", font = "Arial 8 bold italic", activebackground="turquoise", width=20, height=5, command=root.quit).grid (row= 1, column =5)
tex = Text(master=root)
scr=Scrollbar(root,orient =VERTICAL,command=tex.yview)
scr.grid(row=2, column=2, rowspan=15, columnspan=1, sticky=NS)
tex.grid(row=2, column=1, sticky=W)
tex.config(yscrollcommand=scr.set,font=('Arial', 8, 'bold', 'italic'))
global process
path = os.path.expanduser("~/python") # Define path To play, delete, or rename video
root.mainloop()
您可以在文本构件中向字符范围添加标签,并且可以在标签上设置绑定。因此,一个简单的解决方案是为每个文件名创建一个唯一的标记,并为该标记创建一个唯一的绑定。
例如:
def viewFile():
for f in os.listdir(path):
if f.endswith(".h264"):
linkname="link-" + f
tex.insert(END,f + "n", linkname)
tex.tag_configure(linkname, foreground="blue", underline=True)
tex.tag_bind(linkname, "<1>", lambda event, filename=f: openFile(filename))
这将导致使用一个参数(即文件名)调用名为 openFile
的函数。然后,您可以在该函数中执行任何操作。
最后尝试此行以在VLC上打开视频
tex.tag_bind(linkname, "<1>", lambda event, filename =path+'/'+f: subprocess.call(['vlc',filename]))
方法是遍历所有文件,并为每个文件创建一个文件名的按钮,文件名
如下所示 fram = Frame(root)
files = os.listdir(path):
for f in range(0, len(files), 1):
if files[f].endswith(".h264"):
name = files[f].split(".")
b = Button(fram, text=name[0])
b.bind('<Button>', openV)
b.grid(row=f, column=1)
现在,您的openV
功能应如下所示以实际打开文件
def openV(event):
b = event.widget()
properties = b.config() #get all config for this widget, conveniently the only value right now is text
n = properties[0]
bashCommand = "vlc " + n + ".h264" # this is the command to actually be exectuted
os.system(bashCommand)
确保系统上安装了 python-swap,否则会出现错误os.system()
您不需要有唯一的 ID,因为同一文件夹中不能存在 2 个具有相同名称和扩展名的文件!