A list of useful commands for the FFmpeg command line tool.
Download FFmpeg: https://www.ffmpeg.org/download.html
Full documentation: https://www.ffmpeg.org/ffmpeg.html
A list of useful commands for the FFmpeg command line tool.
Download FFmpeg: https://www.ffmpeg.org/download.html
Full documentation: https://www.ffmpeg.org/ffmpeg.html
| 阿里云镜像:http://mirrors.aliyun.com/ | |
| 网易开源镜像站:http://mirrors.163.com/ | |
| 搜狐开源镜像站:http://mirrors.sohu.com/ | |
| 北京交通大学开源镜像站:http://mirror.bjtu.edu.cn | |
| 兰州大学开源软件镜像站:http://mirror.lzu.edu.cn/ | |
| 厦门大学开源软件镜像站:http://mirrors.xmu.edu.cn/ | |
| 上海交通大学开源软件镜像站:http://ftp.sjtu.edu.cn/ | |
| 清华大学开源软件镜像站:http://mirrors.tuna.tsinghua.edu.cn/ | |
| 天津大学开源软件镜像站:http://mirror.tju.edu.cn/ | |
| 中国科学技术大学开源软件镜像站:http://mirrors.ustc.edu.cn/ |
| from json import loads as jsload | |
| from os import system | |
| from random import random | |
| from time import time | |
| from requests import get as request | |
| def resolve(sMid): | |
| filename = 'C400' + sMid + '.m4a' |
| #!/bin/bash | |
| docker ps --filter "label=com.docker.compose.project" -q | xargs docker inspect --format='{{index .Config.Labels "com.docker.compose.project"}}'| sort | uniq |
| # | |
| # TO-DO: set |DESTINATIONURL| below to be whatever you want e.g. www.google.com. Do not include "http(s)://" as a prefix. All matching requests will be sent to that url. Thanks @Meatballs__! | |
| # | |
| # Note this version requires Apache 2.4+ | |
| # | |
| # Save this file into something like /etc/apache2/redirect.rules. | |
| # Then in your site's apache conf file (in /etc/apache2/sites-avaiable/), put this statement somewhere near the bottom | |
| # | |
| # Include /etc/apache2/redirect.rules | |
| # |
| # -*- coding: utf-8 -*- | |
| """ | |
| Sample client script for PNF Software's JEB2. | |
| More samples are available on our website and within the scripts/ folder. | |
| Refer to SCRIPTS.TXT for more information. | |
| """ | |
| #!/bin/bash | |
| function echo_mem_stat () { | |
| mem_total="$(free | grep 'Mem:' | awk '{print $2}')" | |
| free_mem="$(free | grep 'Mem:' | awk '{print $7}')" | |
| mem_percentage=$(($free_mem * 100 / $mem_total)) | |
| swap_total="$(free | grep 'Swap:' | awk '{print $2}')" | |
| used_swap="$(free | grep 'Swap:' | awk '{print $3}')" | |
| swap_percentage=$(($used_swap * 100 / $swap_total)) |
| var rand1 = Math.floor(Math.random()*410);quotes = new Array | |
| quotes[0]='若隐若现才是艺术! ——「问题儿童来自异世界」' | |
| quotes[1]='下一次重逢,将是何年何月?天空必将见证。 ——「SOLA」' | |
| quotes[2]='如果你都不知道自己想去哪里,那去哪里都是一样的。 ——「柴郡猫」' | |
| quotes[3]='一定没有问题的! ——「魔卡少女樱」' | |
| quotes[4]='这是眼泪吗?原来眼泪是这么的温暖,我一直以为,哀伤的东西都是冰冷的。 ——「风色幻想」' | |
| quotes[5]='桑丘,让他们管我叫疯子吧,我还疯得不够,所以得不到他们的赞许。 ——「堂吉诃德」' | |
| quotes[6]='美好的人眼裡映出的世界也是美好的。 ——「ARIA」' | |
| quotes[7]='如果不能忠于自己的心,胜负又有什么价值呢? ——「塔希里亚故事集」' | |
| quotes[8]='天空本是一种风景,可是遇见你之后,它变成了一种心情。 ——「九ちのセカィ」' |
| using System; | |
| using System.IO; | |
| using System.IO.Compression; | |
| using System.Text; | |
| using System.Collections.Generic; | |
| using System.Configuration.Install; | |
| using System.Runtime.InteropServices; | |