归档: 2017/1

0

iptables

iptables 设置使用的方法将输出的包重定向1iptables -t nat -A OUTPUT -p tcp -d 192.168.1.107 --dport 5001 -j DNAT --to-destination 192.168.1.107:5000 这是把本来发往192.168.1.107:5001端口的包发往192.168.1.107:5000 这里是为了解决一个问题,就是一个NA

0

ffmpeg用于视频转换

1ffmpeg -i input.mkv -vf "ass=sub.ass" -t 00:01:00 out.mp4 1ffmpeg -hwaccel cuvid -c:v h264_cuvid -i input -c:v h264_nvenc -preset slow output.mkv