aly / aaList.md

0 likes
0 forks
5 files
Last active 1452739710
YMS srts. These sub files have been checked against the source video on youtube

Filelist

  • Quickie - Noah
  • Quickie - Mad Max Fury Road
  • Cat Grips
  • Saw Review, NotProductive Update

aly / waitfor

0 likes
0 forks
1 files
Last active 1444608553
Script that waits for the specified process to start before returning
1 #!/bin/bash
2 until ps aux | grep -v grep | grep -v "waitfor" | grep "$1" > /dev/null
3 do
4 sleep 0.1
5 done

aly / getplex.py

0 likes
0 forks
1 files
Last active 1443733079
Gets plex streaming urls. Pipe into cast.py (https://gist.github.com/blha303/8b100c205b8c35b3c8ce) for best results. List episodes and movies from plex by omitting titles (i.e getplex.py -m "" or getplex.py -s "Bla")
1 #!/usr/bin/env python2.7
2 # Now with Plex auth support! Check getplex.py -h
3 from __future__ import print_function
4 from plexapi.server import PlexServer
5 from plexapi.myplex import MyPlexUser
6 from plexapi.exceptions import NotFound
7
8 from urlparse import urlparse
9 from getpass import getpass
10 from socket import gethostbyname