applescript per riprodurre video in vlc

3

Ciao sto cercando di eseguire un applescript che avvierà VLC media player e riprodurrà tutti i file in una cartella ogni volta che viene aggiunto un nuovo file. Sembrava funzionare bene inizialmente, quindi ho riavviato il mio computer e non funzionerà. Sto eseguendo lo script come una cartella Azione. per favore vedi lo script allegato. Cosa mi manca?

on adding folder items to theAttachedFolder after receiving theNewItems
-- Get the name of the attached folder

-- Get List of files in folder  
    set the_files to get every file of theAttachedFolder

-- open vlc using files in folder which should result in a vlc playlist 
of all files in folder

    tell application "Finder" to open {the_files} using application 
    file "VLC.app"


end adding folder items to

Qualsiasi aiuto sarà molto apprezzato, sono abbastanza nuovo per questo. Grazie.

    
posta emmanuel 20.04.2017 - 20:57
fonte

2 risposte

1
on adding folder items to this_folder after receiving these_items
    tell application "VLC"
        set thePlaylist to "file:///Users/Smokestack/Desktop/For Vlc" -- substitute with your own actual folder path to the folder action folder following the format “file:///“
        OpenURL thePlaylist
    end tell
end adding folder items to
    
risposta data 07.08.2017 - 07:03
fonte
0

Dovresti poter semplicemente:

tell application "VLC" to play {the_files}
    
risposta data 06.08.2017 - 14:26
fonte

Leggi altre domande sui tag