समय पर जवाब नहीं मिलने के बाद (एक सप्ताह पहले यह पोस्ट किया जाना चाहिए), मैंने वीएलसी को स्वचालित करने में गोताखोरी को समाप्त कर दिया। मैंने पाया इस यूनिक्स सॉकेट का उपयोग कर वीएलसी नियंत्रित करने के बारे में एक ब्लॉग पोस्ट के मणि। इसका सार यह है कि यदि आप VLC को सही तरीके से कॉन्फ़िगर करते हैं, तो आप कमांड लाइन सिंटैक्स के माध्यम से इसे कमांड भेज सकते हैं:
echo [VLC Command] | nc -U /Users/vlc.sock
जहाँ [VLC कमांड] कोई भी कमांड है जो VLC को सपोर्ट करता है (आप " longhelp " कमांड भेजकर कमांड्स की एक सूची पा सकते हैं )।
मैंने फिल्मों से भरी निर्देशिका को स्वचालित रूप से लोड करने के लिए एक पायथन स्क्रिप्ट लिखना समाप्त कर दिया और फिर बेतरतीब ढंग से क्लिप दिखाने के लिए चुना। स्क्रिप्ट पहले सभी एवीएस को एक वीएलसी प्लेलिस्ट में डालती है। यह तब प्लेलिस्ट से एक यादृच्छिक फ़ाइल चुनता है और खेलने के लिए उस वीडियो में एक यादृच्छिक प्रारंभिक बिंदु चुनता है। स्क्रिप्ट तब समय की निर्दिष्ट राशि का इंतजार करती है और प्रक्रिया को दोहराती है। यहाँ यह है, दिल के बेहोश के लिए नहीं:
import subprocess
import random
import time
import os
import sys
## Just seed if you want to get the same sequence after restarting the script
## random.seed()
SocketLocation = "/Users/vlc.sock"
## You can enter a directory as a command line argument; otherwise it will use the default
if(len(sys.argv) >= 2):
MoviesDir = sys.argv[1]
else:
MoviesDir = "/Users/Movies/Xmas"
## You can enter the interval in seconds as the second command line argument as well
if(len(sys.argv) >= 3):
IntervalInSeconds = int(sys.argv[2])
else:
IntervalInSeconds = 240
## Sends an arbitrary command to VLC
def RunVLCCommand(cmd):
p = subprocess.Popen("echo " + cmd + " | nc -U " + SocketLocation, shell = True, stdout = subprocess.PIPE)
errcode = p.wait()
retval = p.stdout.read()
print "returning: " + retval
return retval
## Clear the playlist
RunVLCCommand("clear")
RawMovieFiles = os.listdir(MoviesDir)
MovieFiles = []
FileLengths = []
## Loop through the directory listing and add each avi or divx file to the playlist
for MovieFile in RawMovieFiles:
if(MovieFile.endswith(".avi") or MovieFile.endswith(".divx")):
MovieFiles.append(MovieFile)
RunVLCCommand("add \"" + MoviesDir + "/" + MovieFile + "\"")
PlayListItemNum = 0
## Loop forever
while 1==1:
## Choose a random movie from the playlist
PlayListItemNum = random.randint(1, len(MovieFiles))
RunVLCCommand("goto " + str(PlayListItemNum))
FileLength = "notadigit"
tries = 0
## Sometimes get_length doesn't work right away so retry 50 times
while tries < 50 and FileLength .strip().isdigit() == False or FileLength.strip() == "0":
tries+=1
FileLength = RunVLCCommand("get_length")
## If get_length fails 50 times in a row, just choose another movie
if tries < 50:
## Choose a random start time
StartTimeCode = random.randint(30, int(FileLength) - IntervalInSeconds);
RunVLCCommand("seek " + str(StartTimeCode))
## Turn on fullscreen
RunVLCCommand("f on")
## Wait until the interval expires
time.sleep(IntervalInSeconds)
## Stop the movie
RunVLCCommand("stop")
tries = 0
## Wait until the video stops playing or 50 tries, whichever comes first
while tries < 50 and RunVLCCommand("is_playing").strip() == "1":
time.sleep(1)
tries+=1
ओह और एक साइड नोट के रूप में, हमारे पास यह प्रोजेक्टर पर चल रहा था और यह पार्टी का हिट था। हर कोई सेकंड के मूल्यों के साथ खिलवाड़ करना पसंद करता है और जोड़ने के लिए नए वीडियो चुनता है। मुझे नहीं मिला , लेकिन लगभग!
EDIT: मैंने वीएलसी को खोलने वाली लाइन को हटा दिया क्योंकि समय के मुद्दे थे जहां वीएलसी केवल आधा लोड होगा जब स्क्रिप्ट ने प्लेलिस्ट में फाइलें जोड़ना शुरू कर दिया था। अब मैं सिर्फ मैन्युअल रूप से VLC खोलता हूं और स्क्रिप्ट शुरू करने से पहले लोडिंग खत्म होने का इंतजार करता हूं।