Skip to content

Commit

Permalink
Rimossi file non utilizzati e aggiunti link download
Browse files Browse the repository at this point in the history
  • Loading branch information
Guray00 committed Dec 23, 2022
1 parent d6d4480 commit 7c849d7
Show file tree
Hide file tree
Showing 5 changed files with 20 additions and 156 deletions.
25 changes: 18 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
# Cutter

Utility per la compressione e ritaglio dei silenzi all'interno delle lezioni.

Basato sul lavoro svolto da [Remsi](https://github.com/bambax/Remsi), prende in input il path di una cartelle ed esegue il taglio di tutti i video indicati.
Expand All @@ -12,39 +13,49 @@ Per riconoscere un silenzio sono stati usati, di default, i seguenti parametri:

_Nota: più è basso in modulo la tolleranza più è semplice il taglio, esempio: -40db taglia maggiormente di -50db_

## Parametri
```text
--teams # esegue il crop del video eliminando le bande nere di teams (versione 2021)
```

## Installazione

Prerequisiti:
- **python** installato
- **ffmpeg** installato

- aver installato **python** [(download Windows)](https://www.python.org/ftp/python/3.11.1/python-3.11.1-amd64.exe)
- aver installato **ffmpeg** [(download Windows)](https://github.com/BtbN/FFmpeg-Builds/releases/download/latest/ffmpeg-master-latest-win64-gpl.zip)

Clona questa repo in una cartella comoda:

```bash
git clone https://github.com/Guray00/squeeze
git clone https://github.com/Guray00/cutter
```

Entra nella cartella:

```bash
cd squeeze
```

Clona la repo di Remsi:

```bash
git clone https://github.com/Guray00/Remsi/tree/916b6a1fbfc4fcdec2dc617f7e8fd746a0cc3281
```

Installa le dipendenze:

```bash
pip install -r ./requirements.txt
```

Sei pronto per l'utilizzo!

## Utilizzo
Per eseguire il programma è sufficiente:

```bash
python3 cutter.py "path-to-folder"
```

Mentre le opzioni possiibili sono:

```text
usage: cutter.py [-h] [--teams] [-d D] [-n N] foldername
Expand Down
2 changes: 1 addition & 1 deletion cutter.py
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,7 @@ def cut(__file__):


# eseguo il comando di taglio
command = f'ffmpeg -i "{__file__}" -hide_banner -filter_script:v "./vfilter.txt" -filter_script:a "./afilter.txt" -map_chapters -1 "{output}"'
command = f'ffmpeg -ignore_chapters 1 -i "{__file__}" -hide_banner -filter_script:v "./vfilter.txt" -filter_script:a "./afilter.txt" -c:a aac "{output}"'
print_line()
print_centered(f"✂️ Sto \033[94mtagliando\033[0m il file ({__file__})")
print("\x1B[3m"+command+"\x1B[0m")
Expand Down
81 changes: 0 additions & 81 deletions squeeze.py

This file was deleted.

66 changes: 0 additions & 66 deletions trainer.py

This file was deleted.

0 comments on commit 7c849d7

Please sign in to comment.