restructured everything
This commit is contained in:
parent
f197ac9dde
commit
49f9ba872d
3 changed files with 4 additions and 39 deletions
36
README.md
36
README.md
|
@ -1,36 +1,2 @@
|
|||
# to_vp9
|
||||
This Script is unfinished and not usable.
|
||||
|
||||
# to_opus
|
||||
converting all audiostreams in all files with given file extension in your current working directory and all subdirectories to opus.
|
||||
The Script will choose an automatic bitrate for every audiostream dependent on the number of channels and the original bitrate.
|
||||
See https://wiki.xiph.org/Opus_Recommended_Settings for more information about this.
|
||||
|
||||
If used on containers with video- or multiple audiostreams, this skript will only convert the audiostream and copy all streams in a Matroska container.
|
||||
|
||||
### Flags
|
||||
```-e``` defines the extension of the files that should be converted<br>
|
||||
```-d``` deletes original files after conversion<br>
|
||||
```-h``` show help (not implemented)
|
||||
|
||||
### Examples
|
||||
|
||||
convert all files to opus<br>
|
||||
```bash to_opus.sh -e "*"```
|
||||
|
||||
convert all files with .mp3-extension and .flac-extension to opus and deletes original files after that<br>
|
||||
```bash to_opus.sh -e mp3 -e flac```
|
||||
|
||||
convert the audiostream of an movie<br>
|
||||
```bash to_opus.sh -e mp4```
|
||||
|
||||
### Dependencies
|
||||
- ffmpeg
|
||||
- Bash 4^
|
||||
|
||||
### Why opus?
|
||||
|
||||
Opus is an open format and royalty free. It is FOSS.
|
||||
It is supported on most platforms and has a better quality per bitrate then formats like mp3 or Vorbis.
|
||||
|
||||
![Opus Quality comparison with other formats](https://upload.wikimedia.org/wikipedia/commons/0/01/Opus_quality_comparison.svg)
|
||||
This is a collection of scripts I use for encoding and transcoding multimedia. Feel free to use and enhance it
|
||||
|
|
|
@ -1,6 +1,3 @@
|
|||
# to_vp9
|
||||
This Script is unfinished and not usable.
|
||||
|
||||
# to_opus
|
||||
converting all audiostreams in all files with given file extension in your current working directory and all subdirectories to opus.
|
||||
The Script will choose an automatic bitrate for every audiostream dependent on the number of channels and the original bitrate.
|
||||
|
@ -33,4 +30,4 @@ convert the audiostream of an movie<br>
|
|||
Opus is an open format and royalty free. It is FOSS.
|
||||
It is supported on most platforms and has a better quality per bitrate then formats like mp3 or Vorbis.
|
||||
|
||||
![Opus Quality comparison with other formats](https://upload.wikimedia.org/wikipedia/commons/0/01/Opus_quality_comparison.svg)
|
||||
![Opus Quality comparison with other formats](https://upload.wikimedia.org/wikipedia/commons/0/01/Opus_quality_comparison.svg)
|
||||
|
|
2
to_vp9/README.md
Normal file
2
to_vp9/README.md
Normal file
|
@ -0,0 +1,2 @@
|
|||
# to_vp9
|
||||
This Script is unfinished and not usable
|
Loading…
Reference in a new issue