2022-05-01から1ヶ月間の記事一覧

Ubuntu22.04 FFmpeg + AviSynth + JoinLogoScp + delogo でSVT-AV1対応自動CMカットエンコード環境構築

avisynth+ の公式インストール手順 AviSynthPlus/posix.rst at master · AviSynth/AviSynthPlus · GitHub avisynth+ のインストール # apt update # apt install build-essential cmake git ninja-build checkinstall # cd /usr/local/src # git clone --dep…

基本のdocker-composeコマンド

Dockerfileの作成 基本のdockerコマンド - わすれないうちにメモしよう docker-composeファイルの作成 ※lamp環境を構築する ※「./php533/Dockerfile」にDockerfileを作成している想定 # vi docker-compose.yml ------------------------- version : "3" serv…

基本のdockerコマンド

基本操作 イメージ検索 # docker search ubuntu イメージ取得 # docker pull ubuntu コンテナ作成 # docker run --name container_name -it ubuntu /bin/bash コンテナ確認 # docker ps コンテナ操作 # docker exec -it container_name /bin/bash コンテナ起…