11

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.

Daniel
  • 1,515
  • 3
  • 17
  • 30

2 Answers2

26
open movie_file_name.mov

will open the default player from the terminal.

Riccardo Marotti
  • 20,218
  • 7
  • 70
  • 53
21
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
Flimm
  • 136,138
  • 45
  • 251
  • 267