Compare commits

..

No commits in common. "46db1ef5eb02740810f0f53e5a047316d21e90e7" and "f1ac52f50a73947b2a4e54411243eaed46c7dae8" have entirely different histories.

4 changed files with 9 additions and 22 deletions

View File

@ -9,8 +9,6 @@ pip install fsub
# Usage
```
usage: fsub [-h] [-f F] [-c] [-s MS] [-n] [-j] [-u] [-r | -p] [-b B] [-e E] file [file ...]
Fix, edit and clean SubRip (.srt) files.
positional arguments:
@ -55,14 +53,6 @@ python -m unittest tests.unit
python -m unittest tests.integration
```
# Scripted API
An example of calling the program from Python:
```
import fsub
fsub.run('-c', 'test.srt')
```
# Features
- Fixes subtitle numbering
- Converts files to UTF-8 encoding
@ -72,4 +62,3 @@ fsub.run('-c', 'test.srt')
- May strip HTML
- May join files together
- May edit files in-place
- May cut sections out

View File

@ -1,6 +1,6 @@
[metadata]
name = fsub
version = 1.0.4
version = 1.0.2
author = Augusto Lenz Gunsch
author_email = augustogunsch@tutanota.com
description = CLI SubRip editor

View File

@ -1,6 +1,6 @@
import fsub.fsub as fsub
import fsub
# External interface
def run(*args):
def run(args):
fsub.run(args)

View File

@ -303,7 +303,7 @@ class SubripFile:
self.subs = new_subs
self.write_file(in_place=args.replace, stdout=args.stdout)
self.write_file(args.replace)
def write_file(self, in_place=False, stdout=False):
self.renumber()
@ -456,18 +456,16 @@ def parse_args(args):
# Flags that require section
if args.cut_out:
if not args.begin and not args.end:
parser.print_usage(file=sys.stderr)
panic('fsub: error: You must specify a section to work with', 64)
# Validate options
if not args.clean and args.config:
parser.print_usage(file=sys.stderr)
panic('fsub: error: --config requires --clean', 64)
panic('You must specify a section to work with', 64)
# Make sure --clean is the default
if not any((args.shift, args.no_html, args.join, args.cut_out)):
args.clean = True
# Validate options
if not args.clean and args.config:
panic('-f requires -c', 64)
if args.begin:
args.begin = SectionMarker(args.begin)