9 lines
197 B
Plaintext
9 lines
197 B
Plaintext
|
#!/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)
|