Adam-Kay / Batch-Encoder

Command line batch file encoder using FFmpeg
GNU General Public License v3.0
0 stars 0 forks source link

FFmpeg Self Grab #42

Open Adam-Kay opened 10 months ago

Adam-Kay commented 10 months ago

Long overdue overhaul of the system that finds and uses FFmpeg.

Functions and related issues:

Adam-Kay commented 9 months ago

Depending on the decided priorities, it would be good to merge in the changes from main before continuing work on this, to ensure that code changes to master and eventual merging in from #48 does not interfere with the new code.

This can be done one of two ways:

Rebase

Will move the starting point for the branch to be the current tip of main. Technically is rewriting history.

git checkout <branch-name> && git rebase main

Merge

Will merge in changes from main to the current point.

git checkout <branch-name> && git merge main