aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorjaseg <git@jaseg.net>2018-07-20 18:00:40 +0200
committerjaseg <git@jaseg.net>2018-07-20 18:00:40 +0200
commitf4915099d2e468f52f83146f3649d3c7ee5baf96 (patch)
tree6c0e3a1f9f00451a6aa959f0b30437794277ce2a
parentf3bcb6c4c5c4fee81a5c8eccbe915e781872f57c (diff)
downloadnyanping-f4915099d2e468f52f83146f3649d3c7ee5baf96.tar.gz
nyanping-f4915099d2e468f52f83146f3649d3c7ee5baf96.tar.bz2
nyanping-f4915099d2e468f52f83146f3649d3c7ee5baf96.zip
Much improved
-rwxr-xr-xnyanping40
-rwxr-xr-xsetup.py2
2 files changed, 30 insertions, 12 deletions
diff --git a/nyanping b/nyanping
index e5159d4..ab65ad6 100755
--- a/nyanping
+++ b/nyanping
@@ -1,31 +1,49 @@
#!/usr/bin/env python3
import time
+import socket
import mpv
import ping
-def nyanping(destination):
+def nyanping(destination, interval=0.1, timeout=3.0):
p = mpv.MPV(ytdl=True)
p.play('https://www.youtube.com/watch?v=QH2-TGUlwu4')
p.loop = 'inf'
+ print('Waiting for video to load...')
+ p.audio_pitch_correction = False
+ p.fullscreen = True
- while True:
- time.sleep(0.1)
- delay = ping.do_one(destination, 3.0)
- print(delay)
- if delay is None: # timeout
+ @p.on_key_press('q')
+ def quit():
+ p.quit()
+
+ p.wait_for_property('core-idle', lambda idle: not idle) # Wait for youtube-dl to do its thing and mpv to open the stream
+ while p.filename: # filename gets reset if the player quits or the window is closed
+ time.sleep(interval)
+ try:
+ delay = ping.do_one(destination, timeout)
+ print(f'{destination}: {delay*1000:.3f}ms')
+ if delay is None: # timeout
+ p.pause = True
+ continue
+ else:
+ p.pause = False
+ p.speed = 1/(1 + 3.3*delay)
+ p.command('show-text', f'{delay*1000:.1f}ms')
+ except KeyboardInterrupt:
+ break
+ except:
p.pause = True
continue
- else:
- p.pause = False
- p.speed = 1/(1 + 3.3*delay)
- p.command('show-text', f'{delay*1000:3f}ms')
+ p.terminate()
if __name__ == '__main__':
import argparse
parser = argparse.ArgumentParser()
parser.add_argument('destination')
+ parser.add_argument('-W', '--timeout', type=float, default=3.0, help='Time to wait for a response in floating-point seconds')
+ parser.add_argument('-i', '--interval', type=float, default=0.1, help='Interval between requests in floating-point seconds')
args = parser.parse_args()
- nyanping(args.destination)
+ nyanping(socket.gethostbyname(args.destination), interval=args.interval, timeout=args.timeout)
diff --git a/setup.py b/setup.py
index a762258..e1f16be 100755
--- a/setup.py
+++ b/setup.py
@@ -3,7 +3,7 @@
from setuptools import setup, find_packages
setup(
name = 'nyanping',
- version = '0.0.2',
+ version = '0.0.3',
py_modules = ['ping'],
scripts = ['nyanping'],
description = ('Improved graphical ping tool'),