The filenames output by webdl should not have spaces

Issue #108 invalid
Craig Lister created an issue

This could be easily fixed by this patch in common.py :-

def remux(infile, outfile):
outfile = outfile.replace(' ', '')

You may have a more elegant way but this works for me 😉

Comments (3)

  1. delx repo owner

    Why should they not have spaces? I quite like having spaces in filenames for my media and they don’t cause any problems for me.

  2. pawD

    I also agree with delx that it seems messy without the space, replace it with '_' maybe still good. Only down-side that I can say with space is working with command line. Yet, escape character or double quote work great already.

  3. Log in to comment