diff --git a/README.md b/README.md index f47068b..c6de88b 100644 --- a/README.md +++ b/README.md @@ -45,7 +45,7 @@ The configuration file in which our encoding properties are defined. By default, the program will write to or read from `batch_encoder.ini` in the user config directory of appname `batch_encoder` and author `AnimeThemes`. -Example: `C:\Users\paranarimasu\AppData\Local\AnimeThemes\batch_encoder\batch_encoder.ini` +Example: `C:\Users\Kyrch\AppData\Local\AnimeThemes\batch_encoder\batch_encoder.ini` **Encoding Properties** diff --git a/batch_encoder/_encode_webm.py b/batch_encoder/_encode_webm.py index 7ae7b5d..1a326bf 100644 --- a/batch_encoder/_encode_webm.py +++ b/batch_encoder/_encode_webm.py @@ -154,7 +154,7 @@ def get_video_filters(config_filter=None): if config_filter is not None: video_filters.append(config_filter) - if not video_filters: + if not video_filters or len(video_filters[0].strip()) == 0: return '' return ' -vf ' + ','.join(video_filters) diff --git a/setup.py b/setup.py index 8c280bf..5c6acb6 100644 --- a/setup.py +++ b/setup.py @@ -7,7 +7,7 @@ setup( name='animethemes-batch-encoder', - version='1.3', + version='1.3.1', author='AnimeThemes', author_email='admin@animethemes.moe', url='https://github.com/AnimeThemes/animethemes-batch-encoder',