Skip to content

Commit

Permalink
documentation issues
Browse files Browse the repository at this point in the history
  • Loading branch information
Guray00 committed Dec 27, 2022
1 parent cf10b26 commit e42f3f6
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 4 deletions.
File renamed without changes.
File renamed without changes.
13 changes: 9 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -62,20 +62,25 @@ To cut a single video file with a silence duration of 1 second and a noise level

### Windows

Copy in the bin folder the `ffmpeg.exe` file and:
Create a folder `bin` and copy `ffmpeg.exe` and `ffprobe.exe` files, after:

```bash
pyinstaller -F --add-data ".\bin\ffmpeg.exe;." --runtime-hook ".\.exports\win_export.py" .\cutter.py
pyinstaller -F --add-data ".\bin;." --runtime-hook ".\.exports\win_export.py" .\cutter.py
```

The compiled version will be in the `dist` folder.


## Linux

Copy in the bin folder the `ffmpeg` file and:
Create a folder `bin` and copy `ffmpeg` and `ffprobe` files, after:

```bash
python3 -m PyInstaller -F --add-data "./bin/ffmpeg:." --runtime-hook "./.exports/linux_export.py" ./cutter.py
python3 -m PyInstaller -F --add-data "./bin:." --runtime-hook "./.exports/linux_export.py" ./cutter.py
```

The compiled version will be in the `dist` folder.

## Contributions

Contributions are welcome! If you want to contribute to the project, please fork the repository and create a pull request.
Expand Down

0 comments on commit e42f3f6

Please sign in to comment.