One Paragraph of project description goes here
These instructions will get you a copy of the project up and running on your local machine for development and testing purposes. See deployment for notes on how to deploy the project on a live system.
0-00.usa.cc | |
001.igg.biz | |
027168.com | |
0815.ru | |
0815.ry | |
0815.su | |
0845.ru | |
0ak.org | |
0box.eu | |
0clickemail.com |
sudo apt-get install python3-pip | |
# sudo pip3 install shadowsocks | |
sudo pip3 install -U git+https://github.com/shadowsocks/shadowsocks.git@master | |
# LLc error: $ export LC_ALL=C | |
config: /etc/shadowsocks.json | |
{ | |
"server": "::", | |
"port_password": { | |
"8000": "PASSWORD", |
echo "" > concat.list; | |
for f in ./*.mp4; do echo "file '$f'" >> concat.list; done; | |
ffmpeg -f concat -safe 0 -i concat.list -c copy output.mp4; | |
ffmpeg -i output.mp4 -vcodec libx264 -crf 21 [email protected]; |
from rest_framework import filters | |
from django.db.models import Q | |
class UnionFilterBackend(filters.BaseFilterBackend): | |
""" | |
Filter that make union queryset with given query parametes | |
and model filter wich defined in filter_fields | |
Usage: | |
[url]/?foo=bar&foo=baz&xyzzy=qux | |
queryset will be : [queryset].filter(foo=bar or foo=baz or xyzzy=qux) |