0

我想知道是否有人可以帮助我解决这个我无法解决的问题。我正在使用 Pafy 从一个文本文件中搜索 Youtube,该文本文件中写有歌曲名称,并且每隔几分钟就会获得一首新歌曲。我正在使用看门狗来监视文件修改,当我第一次运行脚本时,看门狗会捕获文件修改并运行 pafy 和 opencv 脚本,但是当发生以下修改时它不会做同样的事情。

#watchdog file change monitoring
class MyHandler(FileSystemEventHandler):
    def on_modified(self, event):
        print ("Received modified event - %s." % event.src_path)
        cv2.destroyAllWindows()

if __name__ == "__main__":
    event_handler = MyHandler()
    observer = Observer()
    observer.schedule(event_handler, path='//PLAYING', recursive=False)
    observer.start()
    try:
        while True:
            #read PLAYING.txt
            PLAYING = open('//PLAYING.txt').readline()
            PLAYING = PLAYING[7:]
            print (PLAYING)
            #search youtube based on NowOnAir.txt
            query_string = urllib.parse.urlencode({"search_query" : PLAYING})
            html_content = urllib.request.urlopen("http://www.youtube.com/results?" + query_string)
            search_results = re.findall(r'href=\"\/watch\?v=(.{11})', html_content.read().decode())
            link = ('http://www.youtube.com/watch?v=' + search_results[0])
            videoPafy = pafy.new(link)
            best = videoPafy.getbestvideo()
            videompv = best.url

            #opencv youtube video output
            video = cv2.VideoCapture(videompv)

            while(video.isOpened()):
                ret, frame = video.read()
                resize = cv2.resize(frame, (1680, 1050))
                gray = cv2.cvtColor(resize, cv2.COLOR_BGR2GRAY)
                result = cv2.addWeighted(image, 0.2, resize, 0.8, 0)
                cv2.namedWindow('frame', 0)
                cv2.resizeWindow('frame', 1680, 1050)
                cv2.imshow('frame', result)
                if cv2.waitKey(1) & 0xFF == ord('q'):
                    break

            time.sleep(1)

    except KeyboardInterrupt:
        observer.stop()
    observer.join()

所以,我想要发生的是,当文件被修改时,我希望 openCV 关闭窗口并使用新的 youtube 查询结果打开一个新窗口。

任何建议都将非常受欢迎,在此先感谢您。

4

1 回答 1

0

如果文件在每次轨道更改时只更新一次,那么您可以检查文件的时间戳以进行修改并使用它来触发您的搜索。

import os.path
import time

last_modified  = time.ctime(os.path.getmtime(file))

while True:
    time.sleep(1)
    if last_modified != time.ctime(os.path.getmtime(file)):
       # search for the track on youtube
       last_modified = time.ctime(os.path.getmtime(file))
于 2017-12-06T14:49:13.607 回答