Use pathclass.glob.
This commit is contained in:
parent
4a9051e617
commit
02b254836f
1 changed files with 9 additions and 11 deletions
20
ffstreams.py
20
ffstreams.py
|
@ -126,17 +126,15 @@ def ffstreams(
|
|||
subprocess.run(command, stderr=subprocess.STDOUT)
|
||||
|
||||
def ffstreams_argparse(args):
|
||||
for pattern in args.input_filename:
|
||||
for input_filename in winglob.glob(pattern):
|
||||
input_file = pathclass.Path(input_filename)
|
||||
ffstreams(
|
||||
input_file,
|
||||
do_videos=args.videos,
|
||||
do_audios=args.audios,
|
||||
do_subtitles=args.subtitles,
|
||||
dry=args.dry,
|
||||
moveto=args.moveto,
|
||||
)
|
||||
for input_file in pathclass.glob_many(args.input_filename):
|
||||
ffstreams(
|
||||
input_file,
|
||||
do_videos=args.videos,
|
||||
do_audios=args.audios,
|
||||
do_subtitles=args.subtitles,
|
||||
dry=args.dry,
|
||||
moveto=args.moveto,
|
||||
)
|
||||
|
||||
return 0
|
||||
|
||||
|
|
Loading…
Reference in a new issue