9 lines
197 B
Python
Executable File
9 lines
197 B
Python
Executable File
#!/usr/bin/env python
|
|
# -*- coding: utf-8 -*-
|
|
import random
|
|
import os
|
|
|
|
time=int(random.random()*100)
|
|
timestr=str(time)+"%"
|
|
os.system("mpv ~/youtube-dl-vids/nordlandsbanen.mp4 --start=%s" %timestr)
|