-- Created by https://www.bruji.com/ for the Pedia suite
(*tell application "DVD Player"
	set interaction override to true
	open VIDEO_TS (POSIX file "FILE_PATH") as alias
	set viewer full screen to true
	activate
	play dvd
	--go to main menu
	set controller visibility to false
	obscure cursor
end tell
 *)

tell application "DVD Player"
open VIDEO_TS(POSIX file "FILE_PATH") as alias
activate
play
--go to main menu
obscure
end tell

(*
-- VLC script
tell application "VLC"
	activate
	open file (POSIX file "FILE_PATH") as alias
	delay 8
	set theTitled to titled of window 1
	if theTitled is true then
		fullscreen
	end if
end tell
*)
