make pep8 a little happier
This commit is contained in:
parent
b2a929ac2a
commit
b9ac31aee0
3 changed files with 9 additions and 3 deletions
|
@ -1,4 +1,6 @@
|
||||||
import os, random, string
|
import os
|
||||||
|
import random
|
||||||
|
import string
|
||||||
|
|
||||||
|
|
||||||
class Config:
|
class Config:
|
||||||
|
|
|
@ -21,6 +21,7 @@ Bootstrap(app)
|
||||||
|
|
||||||
attachment_filenames = {}
|
attachment_filenames = {}
|
||||||
|
|
||||||
|
|
||||||
class DownloadForm(FlaskForm):
|
class DownloadForm(FlaskForm):
|
||||||
start_time = DateTimeField('Start time',
|
start_time = DateTimeField('Start time',
|
||||||
validators=[InputRequired()],
|
validators=[InputRequired()],
|
||||||
|
@ -111,8 +112,8 @@ def prepare_download(form):
|
||||||
|
|
||||||
c = ['ffmpeg', '-y']
|
c = ['ffmpeg', '-y']
|
||||||
c += ['-ss', str(ss)]
|
c += ['-ss', str(ss)]
|
||||||
c += ['-i', 'concat:' + '|'.join([os.path.join(app.config['DATA_DIR'],
|
c += ['-i', 'concat:' + '|'.join(
|
||||||
source['fn']) for source in sources])]
|
[os.path.join(app.config['DATA_DIR'], s['fn']) for s in sources])]
|
||||||
c += ['-codec', 'copy']
|
c += ['-codec', 'copy']
|
||||||
c += ['-t', str(form.length.data * 60)]
|
c += ['-t', str(form.length.data * 60)]
|
||||||
c += [os.path.join(app.config['TMP_DIR'], output_filename)]
|
c += [os.path.join(app.config['TMP_DIR'], output_filename)]
|
||||||
|
|
3
setup.cfg
Normal file
3
setup.cfg
Normal file
|
@ -0,0 +1,3 @@
|
||||||
|
[pep8]
|
||||||
|
#ignore =
|
||||||
|
max-line-length = 160
|
Loading…
Add table
Add a link
Reference in a new issue