keytool -importkeystore -srckeystore existing-store.jks -destkeystore new-store.p12 -deststoretype PKCS12
---
keytool \
AddAutoloadDir("X:\Apps\_VideoEncoding\StaxRip\Apps\FrameServer\AviSynth\plugins") | |
LoadPlugin("X:\Apps\_VideoEncoding\StaxRip\Apps\Plugins\Dual\L-SMASH-Works\LSMASHSource.dll") | |
LWLibavVideoSource("1iPebC-9jwI.mkv") | |
ConvertBits(bits=16) | |
ConvertToShader(Precision = 2) | |
s = last | |
Shader("X:\Apps\_VideoEncoding\StaxRip\Apps\Plugins\AVS\AviSynthShader\Sharpen Adaptive.hlsl", output = 1) | |
ExecuteShader(last, s, Precision=2, OutputPrecision=2, Clip1Precision=2) | |
ConvertFromShader(last, Precision = 2, Format="YV12") |
ffmpeg -i ".\input+.mkv" -y -vn -c:a libopus -b:a 64k ".\output+.mkv"
ffmpeg -i ".\input+.mkv" -y -vn -c:a libopus -af aformat=channel_layouts="7.1|5.1|stereo" -b:a 64k -metadata:s:a title="Audio#0 Title" ".\output+2.mkv"
REM More info: | |
REM https://github.com/Microsoft/vcpkg | |
REM https://learn.microsoft.com/ru-ru/vcpkg/get_started/get-started-packaging | |
cd /D "d:\Sources\" | |
git clone https://github.com/Microsoft/vcpkg.git | |
cd vcpkg | |
.\bootstrap-vcpkg.bat | |
.\vcpkg integrate install | |
.\vcpkg install "ffmpeg:x64-windows" |
# Zabbix upgrade 6.4 to 7.0 | |
# https://github.com/mvenzi/zabbix_upgrade | |
# CRIAR AS PASTAS PARA O BACKUP | |
mkdir -p /mnt/bkp_zabbix/etc_zabbix/zabbix_conf_files; | |
mkdir -p /mnt/bkp_zabbix/usr_sbin/zabbix_server_files; | |
mkdir -p /mnt/bkp_zabbix/usr_share_doc/zabbix_files; | |
mkdir -p /mnt/bkp_zabbix/etc_nginx/conf_files; | |
mkdir -p /mnt/bkp_zabbix/etc_nginx/conf_d/conf_files; |
--progress-template [TYPES:]TEMPLATE
Template for progress outputs, optionally
prefixed with one of "download:" (default),
"download-title:" (the console title),
"postprocess:", or "postprocess-title:".
The video's fields are accessible under the
"info" key and the progress attributes are
from vapoursynth import core | |
import math | |
core.max_cache_size=1024 | |
clipV = core.lsmas.LWLibavSource("\\\\?\\y:\.temp\YT_y\Большое шоу\Мега Большое шоу 9 сезон. Расширенная версия. [-110135406_456243369].mkv", cachefile="\\\\?\\y:\.temp\YT_y\Большое шоу\Мега Большое шоу 9 сезон. Расширенная версия. [-110135406_456243369].mkv.lwi") | |
clipA = core.bas.Source(source=r'y:\.temp\YT_y\Большое шоу\Мега Большое шоу 9 сезон. Расширенная версия. [-110135406_456243369].mkv') #, track, adjustdelay, exactsamples, enable_drefs, use_absolute_path, drc_scale) | |
def framesToSamples(frameNum, framerate=25, samplerate=48000): | |
return math.floor((samplerate/framerate)*frameNum) | |
# Old PS functions | |
function Get-VMAFValue { | |
[CmdletBinding()] | |
param( | |
[Parameter(Mandatory=$true)] | |
[ValidateScript({Test-Path -LiteralPath $_})] | |
[string]$ReferenceVideo, | |
<# Различные параметры кодирования звука | |
# rav1e | |
# $prmLibOpus = '-c:a:0 libopus -b:a:0 280k -c:a:1 libopus -b:a:1 280k -c:a:2 libopus -b:a:2 144k -c:a:3 libopus -b:a:3 144k' | |
# $prmLibOpus = '-c:a:0 libopus -b:a:0 320k -ac:0 6 -filter:0 aformat=channel_layouts=5.1 -c:a:1 libopus -b:a:1 320k -ac:1 6 -filter:1 aformat=channel_layouts=5.1 -c:a:2 libopus -b:a:2 160k -c:a:3 libopus -b:a:3 160k' | |
# $prmLibOpus = '-c:a:0 copy -c:a:1 libopus -b:a:1 160k' | |
--color-primaries | |
1: bt709, BT.709 | |
2: unspecified, default | |
4: bt470m, BT.470 System M (historical) | |
5: bt470bg, BT.470 System B, G (historical) | |
6: bt601, BT.601 | |
7: smpte240, SMPTE 240 | |
8: film, Generic film (color filters using illuminant C) | |
9: bt2020, BT.2020, BT.2100 | |
10: xyz, SMPTE 428 (CIE 1921 XYZ) |