applescript para reproducir videos en vlc

3

Hola, estoy intentando ejecutar un script de Apple que ejecutará el reproductor multimedia VLC y reproducirá todos los archivos en una carpeta cada vez que se agregue un nuevo archivo. Pareció funcionar bien al principio, luego reinicié mi computadora y no funcionó. Estoy ejecutando el script como una carpeta de acción. Por favor vea el guión adjunto. ¿Qué me estoy perdiendo?

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

Cualquier ayuda será muy apreciada, soy bastante nuevo en esto. Gracias.

    
pregunta emmanuel 20.04.2017 - 20:57

2 respuestas

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
    
respondido por el wch1zpink 07.08.2017 - 07:03
0

Debería poder simplemente:

tell application "VLC" to play {the_files}
    
respondido por el gmarmstrong 06.08.2017 - 14:26

Lea otras preguntas en las etiquetas