Compare commits
2 commits
e78cab788f
...
e1f7c784ad
| Author | SHA1 | Date | |
|---|---|---|---|
| e1f7c784ad | |||
| 6c5fc9030a |
2 changed files with 14 additions and 5 deletions
|
|
@ -642,5 +642,7 @@ def chop(video, start, end, subtitles=None):
|
||||||
p.wait()
|
p.wait()
|
||||||
f = open(choped_video, 'rb')
|
f = open(choped_video, 'rb')
|
||||||
os.unlink(choped_video)
|
os.unlink(choped_video)
|
||||||
|
if subtitles_f and os.path.exists(subtitles_f):
|
||||||
|
os.unlink(subtitles_f)
|
||||||
os.rmdir(tmp)
|
os.rmdir(tmp)
|
||||||
return f
|
return f
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,5 @@
|
||||||
# -*- coding: utf-8 -*-
|
# -*- coding: utf-8 -*-
|
||||||
|
import os
|
||||||
import re
|
import re
|
||||||
import subprocess
|
import subprocess
|
||||||
|
|
||||||
|
|
@ -22,11 +23,17 @@ def pdfinfo(pdf):
|
||||||
return data
|
return data
|
||||||
|
|
||||||
def extract_pdfpage(pdf, image, page):
|
def extract_pdfpage(pdf, image, page):
|
||||||
page -= 1
|
page = str(page)
|
||||||
cmd = ['convert', '%s[%d]' % (pdf, page),
|
cmd = [
|
||||||
'-background', 'white', '-flatten', '-resize', '1024x1024', image]
|
'pdftocairo',
|
||||||
p = subprocess.Popen(cmd, close_fds=True)
|
'-jpeg',
|
||||||
p.wait()
|
'-f', page, '-l', page,
|
||||||
|
'-singlefile',
|
||||||
|
'-scale-to', '2048',
|
||||||
|
pdf,
|
||||||
|
os.path.splitext(image)[0]
|
||||||
|
]
|
||||||
|
subprocess.call(cmd, stdout=open('/dev/null', 'wb'))
|
||||||
return image
|
return image
|
||||||
|
|
||||||
def get_documents(text):
|
def get_documents(text):
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue