Skip to content

Instantly share code, notes, and snippets.

View mavwolverine's full-sized avatar

Viraj Kanwade mavwolverine

View GitHub Profile
#EXTM3U
#EXTINF:-1,9x Tashan
rtsp://46.249.213.93/broadcast/9xmtashan-tablet.3gp
#EXTINF:-1,asianet-middle-east-live/
rtmp://$OPT:rtmp-raw=rtmp://50.7.175.251/base2 playpath=asia1.stream swfUrl=http://www.turbotv.in/wp-content/uploads/jw-player-plugin-for-wordpress/player/player.swf live=1 pageUrl=http://www.turbotv.in//HasBahCa/HasBahCa_IPTV.php
#EXTINF:-1,asianet-movies-live/
rtmp://$OPT:rtmp-raw=rtmp://50.7.175.251/base2 playpath=asia15.stream swfUrl=http://www.turbotv.in/wp-content/uploads/jw-player-plugin-for-wordpress/player/player.swf live=1 pageUrl=http://www.turbotv.in//HasBahCa/HasBahCa_IPTV.php
#EXTINF:-1,asianet-news-live/
rtmp://$OPT:rtmp-raw=rtmp://50.7.175.251/base2 playpath=asia0.stream swfUrl=http://www.turbotv.in/wp-content/uploads/jw-player-plugin-for-wordpress/player/player.swf live=1 pageUrl=http://www.turbotv.in//HasBahCa/HasBahCa_IPTV.php
#EXTINF:-1,B4U
@mavwolverine
mavwolverine / get-celery-initd
Last active August 29, 2015 14:26
Script to download init.d scripts (celeryd and celerybeat) for your celery version. Also pass your app name to get the files as celeryd-<APP_NAME> and celerybeat-<APP_NAME>
#!/bin/bash
########################################
# AUTHOR: Viraj Kanwade #
# http://viraj-workstuff.blogspot.com/ #
########################################
set -e
CELERYD_INITD=celeryd
@mavwolverine
mavwolverine / install-redis-virtualenv
Last active September 22, 2018 23:52
Script to install redis inside virtualenv. Adds a wrapper script redis-server-ve. Downloads stable version by default. Else you can pass the version as an argument.
#!/bin/bash
########################################
# AUTHOR: Viraj Kanwade #
# http://viraj-workstuff.blogspot.com/ #
########################################
# Inspired from https://gist.github.com/pterk/3923177
set -e