This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python | |
#coding:utf-8 | |
# Author: Beining@ACICFG Tech Team | |
# Purpose: Batch convert media file type with ffmpeg. | |
# Created: 03/07/14 | |
# MIT License | |
import os | |
import glob |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
''' | |
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! | |
THIS PROJECT HAD MOVED TO https://github.com/cnbeining/Biligrab | |
NO MORE UPDATE AT GITHUB GISTS! | |
THIS VERSION IS NOT USABLE EVEN WITH FALLOFF MODE!!!!!!! | |
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! | |
''' | |
''' | |
Biligrab 0.74 | |
Beining@ACICFG |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
''' | |
Biligrab 0.1 | |
Beining@ACICFG | |
http://www.cnbeining.com/ | |
A most simple tool to download comments from Bilibili. | |
Require: Python 2.7 | |
Usage: | |
python Biligrab01.py | |
>>>av12450 | |
>>>p1 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
#Youtube-DL DASH Video and Audio merging script | |
#Written by QuidsUp | |
#Edited by Christoph Korn | |
#Edited by Beining | |
File1New=video.m4v | |
File2New=audio.m4a |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#Bash upload image to imgur | |
#Beining http://www.cnbeining.com/ | |
#NEED requests !!!!! | |
import sys | |
import os | |
import glob | |
import requests | |
from base64 import b64encode |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function enc() { | |
tar zcvf - $1 | openssl aes-256-cbc -salt -out $1.aes && srm -mfzr $1 | |
} | |
function dec() { | |
openssl aes-256-cbc -d -in $1.aes | tar zxvf - && rm -f $1.aes | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
def getvideosize(url, verbose=False): | |
try: | |
if url.startswith('http:') or url.startswith('https:'): | |
ffprobe_command = ['ffprobe', '-icy', '0', '-loglevel', 'repeat+warning' if verbose else 'repeat+error', '-print_format', 'json', '-select_streams', 'v', '-show_streams', '-timeout', '60000000', '-user-agent', BILIGRAB_UA, url] | |
else: | |
ffprobe_command = ['ffprobe', '-loglevel', 'repeat+warning' if verbose else 'repeat+error', '-print_format', 'json', '-select_streams', 'v', '-show_streams', url] | |
logcommand(ffprobe_command) | |
ffprobe_process = subprocess.Popen(ffprobe_command, stdout=subprocess.PIPE) | |
try: | |
ffprobe_output = json.loads(ffprobe_process.communicate()[0].decode('utf-8', 'replace')) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
#Assign existing hostname to $hostn | |
hostn=$(cat /etc/hostname) | |
#Display existing hostname | |
echo "Existing hostname is $hostn" | |
#Ask for new hostname $newhost | |
echo "Enter new hostname: " | |
read newhost |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python | |
#coding:utf-8 | |
# Author: Beining http://www.cnbeining.com/ cnbeining[at]gmail.com | |
# Purpose: Batch download pp.163.com | |
# Created: 03/04/2015 | |
# License: GNU GPL 2.0 https://www.gnu.org/licenses/gpl-2.0.html | |
import os | |
import sys | |
import unittest |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python | |
#coding:utf-8 | |
# Author: Beining --<cnbeining#gmail.com> | |
# Purpose: A simple script to get lots of viewers of Bilibili Live | |
# Created: 08/11/2015 | |
# Error report: http://www.cnbeining.com/?p=952 | |
# https://github.com/cnbeining somewhere within my gists | |
import sys | |
import time |
OlderNewer