From 49f9ba872dd7ad94bf9e712a62b376210e3c8da2 Mon Sep 17 00:00:00 2001 From: esche Date: Tue, 25 Jul 2023 15:09:32 +0200 Subject: [PATCH] restructured everything --- README.md | 36 +----------------------------------- to_opus/README.md | 5 +---- to_vp9/README.md | 2 ++ 3 files changed, 4 insertions(+), 39 deletions(-) create mode 100644 to_vp9/README.md diff --git a/README.md b/README.md index ddf230c..cd7d121 100644 --- a/README.md +++ b/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
-```-d``` deletes original files after conversion
-```-h``` show help (not implemented) - -### Examples - -convert all files to opus
-```bash to_opus.sh -e "*"``` - -convert all files with .mp3-extension and .flac-extension to opus and deletes original files after that
-```bash to_opus.sh -e mp3 -e flac``` - -convert the audiostream of an movie
-```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) \ No newline at end of file +This is a collection of scripts I use for encoding and transcoding multimedia. Feel free to use and enhance it diff --git a/to_opus/README.md b/to_opus/README.md index ddf230c..288a46f 100644 --- a/to_opus/README.md +++ b/to_opus/README.md @@ -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
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) \ No newline at end of file +![Opus Quality comparison with other formats](https://upload.wikimedia.org/wikipedia/commons/0/01/Opus_quality_comparison.svg) diff --git a/to_vp9/README.md b/to_vp9/README.md new file mode 100644 index 0000000..1e744b2 --- /dev/null +++ b/to_vp9/README.md @@ -0,0 +1,2 @@ +# to_vp9 +This Script is unfinished and not usable