#!/usr/bin/python
# coding: utf-8

# Author:   Josef Bergt

import os
path = "gmplayer /home/<name>/Desktop/video/movie.avi" #in this case: opens the file 'movie.avi' with 'gmplayer'

os.system(path)

