README.md
This commit is contained in:
parent
caa5bfe080
commit
8aa97437e4
98
README.md
98
README.md
|
@ -47,108 +47,80 @@ ks-tools - Tools for upload, convert and crop/mix video/audio files.
|
||||||
|
|
||||||
* Install dependencies **(for Arch Linux)**:
|
* Install dependencies **(for Arch Linux)**:
|
||||||
|
|
||||||
```shell
|
sudo pacman -Syu git make expect rsync openssh sshpass grep coreutils binutils
|
||||||
$ sudo pacman -Syu git make expect rsync openssh sshpass grep coreutils binutils
|
|
||||||
````
|
|
||||||
|
|
||||||
* Install dependencies **(for Ubuntu/Debian)**:
|
* Install dependencies **(for Ubuntu/Debian)**:
|
||||||
|
|
||||||
```shell
|
sudo apt install git make expect rsync openssh-client openssh-server sshpass grep binutils
|
||||||
$ sudo apt install git make expect rsync openssh-client openssh-server sshpass grep binutils
|
|
||||||
````
|
|
||||||
|
|
||||||
* Install dependencies **(for Fedora)**:
|
* Install dependencies **(for Fedora)**:
|
||||||
|
|
||||||
```shell
|
sudo dnf install git make expect rsync openssh sshpass grep coreutils binutils
|
||||||
$ sudo dnf install git make expect rsync openssh sshpass grep coreutils binutils
|
|
||||||
````
|
|
||||||
|
|
||||||
* Install `ffmpeg` from repository or use the package [ffmpeg-6.0-linux-gnu-64bit-build2.tar.bz2](https://drive.proton.me/urls/87E226C29C#mcuvbx0p6DLy):
|
* Install `ffmpeg` from repository or use the package [ffmpeg-6.0-linux-gnu-64bit-build2.tar.bz2](https://drive.proton.me/urls/87E226C29C#mcuvbx0p6DLy):
|
||||||
|
|
||||||
```shell
|
sudo tar jxvf ffmpeg-6.0-linux-gnu-64bit-build2.tar.bz2 -C /
|
||||||
$ sudo tar jxvf ffmpeg-6.0-linux-gnu-64bit-build2.tar.bz2 -C /
|
|
||||||
````
|
|
||||||
|
|
||||||
* Install ks-tools cloning the repository:
|
* Install ks-tools cloning the repository:
|
||||||
|
|
||||||
```shell
|
git clone https://gitlab.com/q3aql/ks-tools
|
||||||
$ git clone https://gitlab.com/q3aql/ks-tools
|
cd ks-tools
|
||||||
$ cd ks-tools
|
make install
|
||||||
$ make install
|
|
||||||
````
|
|
||||||
|
|
||||||
* **Windows ([Cygwin](https://www.cygwin.com/)):**
|
* **Windows ([Cygwin](https://www.cygwin.com/)):**
|
||||||
|
|
||||||
* Install dependencies:
|
* Install dependencies:
|
||||||
|
|
||||||
```shell
|
lynx -source rawgit.com/transcode-open/apt-cyg/master/apt-cyg > apt-cyg
|
||||||
$ lynx -source rawgit.com/transcode-open/apt-cyg/master/apt-cyg > apt-cyg
|
install apt-cyg /bin
|
||||||
$ install apt-cyg /bin
|
apt-cyg install git make expect rsync openssh sshpass grep coreutils binutils
|
||||||
$ apt-cyg install git make expect rsync openssh sshpass grep coreutils binutils
|
|
||||||
````
|
|
||||||
|
|
||||||
* Download package [ffmpeg-6.0-cygwin-64bit-build2.tar.gz](https://drive.proton.me/urls/87E226C29C#mcuvbx0p6DLy) and install it:
|
* Download package [ffmpeg-6.0-cygwin-64bit-build2.tar.gz](https://drive.proton.me/urls/87E226C29C#mcuvbx0p6DLy) and install it:
|
||||||
|
|
||||||
```shell
|
tar zxvf ffmpeg-6.0-cygwin-64bit-build2.tar.gz -C /
|
||||||
$ tar zxvf ffmpeg-6.0-cygwin-64bit-build2.tar.gz -C /
|
|
||||||
````
|
|
||||||
|
|
||||||
* If you prefer your own ffmpeg build, use this script for build it:
|
* If you prefer your own ffmpeg build, use this script for build it:
|
||||||
|
|
||||||
```shell
|
git clone https://gitlab.com/q3aql/ks-tools
|
||||||
$ git clone https://gitlab.com/q3aql/ks-tools
|
cd ks-tools/cygwin
|
||||||
$ cd ks-tools/cygwin
|
chmod +x ffmpeg-build-cygwin64.sh
|
||||||
$ chmod +x ffmpeg-build-cygwin64.sh
|
./ffmpeg-build-cygwin64.sh
|
||||||
$ ./ffmpeg-build-cygwin64.sh
|
|
||||||
````
|
|
||||||
|
|
||||||
* Install ks-tools cloning the repository:
|
* Install ks-tools cloning the repository:
|
||||||
|
|
||||||
```shell
|
git clone https://gitlab.com/q3aql/ks-tools
|
||||||
$ git clone https://gitlab.com/q3aql/ks-tools
|
cd ks-tools
|
||||||
$ cd ks-tools
|
make -f Makefile.Cygwin
|
||||||
$ make -f Makefile.Cygwin
|
|
||||||
````
|
|
||||||
|
|
||||||
* **Windows ([WSL](https://learn.microsoft.com/en-us/windows/wsl/install)):**
|
* **Windows ([WSL](https://learn.microsoft.com/en-us/windows/wsl/install)):**
|
||||||
|
|
||||||
* Install dependencies:
|
* Install dependencies:
|
||||||
|
|
||||||
```shell
|
sudo apt install git make expect rsync openssh-client openssh-server sshpass grep binutils
|
||||||
$ sudo apt install git make expect rsync openssh-client openssh-server sshpass grep binutils
|
|
||||||
````
|
|
||||||
|
|
||||||
* Install `ffmpeg` from the package [ffmpeg-6.0-linux-gnu-64bit-build2.tar.bz2](https://drive.proton.me/urls/87E226C29C#mcuvbx0p6DLy) or from repository:
|
* Install `ffmpeg` from the package [ffmpeg-6.0-linux-gnu-64bit-build2.tar.bz2](https://drive.proton.me/urls/87E226C29C#mcuvbx0p6DLy) or from repository:
|
||||||
|
|
||||||
```shell
|
sudo apt install ffmpeg
|
||||||
$ sudo apt install ffmpeg
|
|
||||||
````
|
|
||||||
|
|
||||||
* Install ks-tools cloning the repository:
|
* Install ks-tools cloning the repository:
|
||||||
|
|
||||||
```shell
|
git clone https://gitlab.com/q3aql/ks-tools
|
||||||
$ git clone https://gitlab.com/q3aql/ks-tools
|
cd ks-tools
|
||||||
$ cd ks-tools
|
make install
|
||||||
$ make install
|
|
||||||
````
|
|
||||||
|
|
||||||
* **MacOS ([HomeBrew](https://brew.sh/)):**
|
* **MacOS ([HomeBrew](https://brew.sh/)):**
|
||||||
|
|
||||||
* Install dependencies:
|
* Install dependencies:
|
||||||
|
|
||||||
```shell
|
brew install git make expect rsync openssh grep binutils ffmpeg
|
||||||
$ brew install git make expect rsync openssh grep binutils ffmpeg
|
curl -L https://raw.githubusercontent.com/kadwanev/bigboybrew/master/Library/Formula/sshpass.rb > sshpass.rb
|
||||||
$ curl -L https://raw.githubusercontent.com/kadwanev/bigboybrew/master/Library/Formula/sshpass.rb > sshpass.rb
|
brew install sshpass.rb
|
||||||
$ brew install sshpass.rb
|
|
||||||
````
|
|
||||||
|
|
||||||
* Install ks-tools cloning the repository:
|
* Install ks-tools cloning the repository:
|
||||||
|
|
||||||
```shell
|
git clone https://gitlab.com/q3aql/ks-tools
|
||||||
$ git clone https://gitlab.com/q3aql/ks-tools
|
cd ks-tools
|
||||||
$ cd ks-tools
|
make install
|
||||||
$ make install
|
|
||||||
````
|
|
||||||
|
|
||||||
### External links:
|
### External links:
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue
Block a user