README.org
February 6, 2020 ยท View on GitHub
#+STARTUP: content #+OPTIONS: num:nil author:nil
- curve2ffmpeg
convert a gimp curve into ffmpeg filter code
[[https://youtu.be/s4xL0msZYuY][curve2ffmpeg youtube]]
usage
#+BEGIN_SRC sh curve2ffmpeg -i gimp-curve.txt #+END_SRC
used with the [[https://github.com/NapoleonWils0n/ffmpeg-scripts#correct-clip][correct-clip script]]
which is included with the [[https://github.com/NapoleonWils0n/ffmpeg-scripts][ffmpeg-scripts]]
** Install scripts with pip
Note if you only have python 3.6 install the pip command will be pip and not pip3
The pip command may also be called pip3.6 on different linux distribution
The quickest way to find to find the name of the pip command on linux is to type pip in the terminal
and then press the tab key and it will show you a list of the pip commands.
*** Freebsd install
#+BEGIN_SRC sh pip install --user git+https://github.com/NapoleonWils0n/curve2ffmpeg.git #+END_SRC
*** Upgrade scripts with pip
#+BEGIN_SRC sh pip install --upgrade --user git+https://github.com/NapoleonWils0n/curve2ffmpeg.git #+END_SRC
*** Linux install
#+BEGIN_SRC sh pip3 install --user git+https://github.com/NapoleonWils0n/curve2ffmpeg.git #+END_SRC
*** Upgrade scripts with pip
#+BEGIN_SRC sh pip3 install --upgrade --user git+https://github.com/NapoleonWils0n/curve2ffmpeg.git #+END_SRC
*** mac install
**** xcode command line tools install
#+BEGIN_SRC sh xcode-select --install #+END_SRC
**** Homebrew install
#+BEGIN_SRC sh /usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)" #+END_SRC
**** Homebrew path setup
edit you bashrc or zshrc and add the following code to the file
#+BEGIN_SRC sh export PATH=/usr/local/bin:$PATH #+END_SRC
source your ~/.bash_profile
#+BEGIN_SRC sh source ~/.bash_profile #+END_SRC
or if you are using zsh source your ~/.zshrc file
#+BEGIN_SRC sh source ~/.zshrc #+END_SRC
**** python 3 install
#+BEGIN_SRC sh brew install python #+END_SRC
**** curve2ffmpeg install
#+BEGIN_SRC sh pip3 install --user git+https://github.com/NapoleonWils0n/curve2ffmpeg.git #+END_SRC
**** curve2ffmpeg upgrade
#+BEGIN_SRC sh pip3 install --upgrade --user git+https://github.com/NapoleonWils0n/curve2ffmpeg.git #+END_SRC