Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Play Quicktime movie from Terminal [closed]

Is there a possibility to play a Quicktime movie (.mov) file from the command line (i.e., Terminal)?

I haven't found a way to achieve this. I could do it with an Automator script but it would be nicer if I can run it directly from the Terminal.

like image 830
Daniel Avatar asked Sep 11 '12 11:09

Daniel


2 Answers

open movie_file_name.mov

will open the default player from the terminal.

like image 66
Riccardo Marotti Avatar answered Sep 29 '22 10:09

Riccardo Marotti


open -a "quicktime player" movie_file_name.mov

You can specify other players, like VLC if you want:

open -a vlc movie_file_name.mov
like image 29
Flimm Avatar answered Sep 29 '22 11:09

Flimm