move this around to separate simple, matterhorn, and core rec-and-playback for packaging
This commit is contained in:
parent
6bca8db210
commit
60a03364ee
2
record-and-playback/core/scripts/process/README
Normal file
2
record-and-playback/core/scripts/process/README
Normal file
@ -0,0 +1,2 @@
|
||||
This directory is a placeholder for different scripts (e.g. simple and matterhorn) that will
|
||||
process a raw archived recording into different playback formats.
|
1
record-and-playback/core/scripts/publish/README
Normal file
1
record-and-playback/core/scripts/publish/README
Normal file
@ -0,0 +1 @@
|
||||
This directory is a placeholder for different publish scripts (e.g. simple and matterhorn) for different playback formats.
|
53
record-and-playback/simple/scripts/process.rb
Executable file
53
record-and-playback/simple/scripts/process.rb
Executable file
@ -0,0 +1,53 @@
|
||||
require '../lib/recordandplayback'
|
||||
require 'rubygems'
|
||||
require 'trollop'
|
||||
require 'yaml'
|
||||
|
||||
opts = Trollop::options do
|
||||
opt :meeting_id, "Meeting id to archive", :default => '58f4a6b3-cd07-444d-8564-59116cb53974', :type => String
|
||||
end
|
||||
|
||||
meeting_id = opts[:meeting_id]
|
||||
|
||||
# This script lives in scripts/archive/steps while properties.yaml lives in scripts/
|
||||
props = YAML::load(File.open('bigbluebutton.yml'))
|
||||
|
||||
recording_dir = props['recording_dir']
|
||||
raw_archive_dir = "#{recording_dir}/raw/#{meeting_id}"
|
||||
|
||||
target_dir = "#{recording_dir}/process/simple/#{meeting_id}"
|
||||
if FileTest.directory?(target_dir)
|
||||
FileUtils.remove_dir target_dir
|
||||
end
|
||||
FileUtils.mkdir_p target_dir
|
||||
|
||||
# Create a copy of the raw archives
|
||||
temp_dir = "#{target_dir}/temp"
|
||||
FileUtils.mkdir_p temp_dir
|
||||
FileUtils.cp_r(raw_archive_dir, temp_dir)
|
||||
|
||||
BigBlueButton::AudioProcessor.process("#{temp_dir}/#{meeting_id}", "#{target_dir}/audio.ogg")
|
||||
events_xml = "#{temp_dir}/#{meeting_id}/events.xml"
|
||||
FileUtils.cp(events_xml, target_dir)
|
||||
|
||||
presentation_dir = "#{temp_dir}/#{meeting_id}/presentation"
|
||||
presentations = BigBlueButton::Presentation.get_presentations(events_xml)
|
||||
|
||||
processed_pres_dir = "#{target_dir}/presentation"
|
||||
FileUtils.mkdir_p processed_pres_dir
|
||||
|
||||
presentations.each do |pres|
|
||||
pres_dir = "#{presentation_dir}/#{pres}"
|
||||
num_pages = BigBlueButton::Presentation.get_number_of_pages_for(pres_dir)
|
||||
pres_pdf = "#{pres_dir}/#{pres}.pdf"
|
||||
|
||||
target_pres_dir = "#{processed_pres_dir}/#{pres}"
|
||||
FileUtils.mkdir_p target_pres_dir
|
||||
|
||||
1.upto(num_pages) do |page|
|
||||
pdf_page = "#{pres_dir}/slide-#{page}.pdf"
|
||||
BigBlueButton::Presentation.extract_page_from_pdf(page, pres_pdf, pdf_page)
|
||||
BigBlueButton::Presentation.convert_pdf_to_png(pdf_page, "#{target_pres_dir}/slide-#{page}.png")
|
||||
end
|
||||
end
|
||||
|
Before Width: | Height: | Size: 24 KiB After Width: | Height: | Size: 24 KiB |
Loading…
Reference in New Issue
Block a user