yt.py 364 B

1234567891011
  1. #!/usr/bin/python
  2. if __name__ == '__main__':
  3. #Allows you to a relative import from the parent folder
  4. import os.path, sys
  5. sys.path.insert(0, os.path.join(os.path.dirname(os.path.realpath(__file__)), os.pardir))
  6. from youtube_upload import main
  7. main.run("titulo", '/tmp/tmp.qpW37PKFQe.png', "/home/david/movie-1467810207.flv")