Skip to content
Snippets Groups Projects
Commit ac32c590 authored by Gustavo Salazar's avatar Gustavo Salazar
Browse files

Extract pdf page in a temp dir

parent 999e6f6d
No related branches found
No related tags found
No related merge requests found
......@@ -51,8 +51,10 @@ module BigBlueButton
# Extract a page from the pdf file.
def self.extract_page_from_pdf(page_num, pdf_presentation, pdf_out)
BigBlueButton.logger.info("Task: Extracting a page from pdf file")
command = "ghostscript #{OPTIONS} #{FIRSTPAGE}=#{page_num} #{LASTPAGE}=#{page_num} #{OUTPUTFILE}=#{pdf_out} #{NO_PDF_MARK_WORKAROUND} #{pdf_presentation}"
temp_out = "/tmp/#{File.basename(pdf_out)}"
command = "ghostscript #{OPTIONS} #{FIRSTPAGE}=#{page_num} #{LASTPAGE}=#{page_num} #{OUTPUTFILE}=#{temp_out} #{NO_PDF_MARK_WORKAROUND} #{pdf_presentation}"
BigBlueButton.execute(command)
FileUtils.mv(temp_out,pdf_out)
# Process.wait
end
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment