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

Merge pull request #77 from fcecagno/fixing-video-processing

fixing the start-stop camera events matches, so now even if there's no s...
parents d20ffe17 5176e508
No related branches found
No related tags found
No related merge requests found
......@@ -76,7 +76,7 @@ module BigBlueButton
errors = stderr.readlines
unless errors.empty?
BigBlueButton.logger.error( "Error: stderr: #{errors}")
BigBlueButton.logger.error( "Error: stderr: #{Array(errors).join()}")
# raise errors.to_s
end
end
......
......@@ -488,6 +488,19 @@ module BigBlueButton
last_timestamp = BigBlueButton::Events.last_event_timestamp(events_xml)
start_evt = BigBlueButton::Events.get_start_video_events(events_xml)
stop_evt = BigBlueButton::Events.get_stop_video_events(events_xml)
# fix the stop events list so the matched events will be consistent
start_evt.each do |evt|
if stop_evt.select{ |s| s[:stream] == evt[:stream] }.empty?
new_event = {
:stream => evt[:stream],
:stop_timestamp => evt[:start_timestamp] + (BigBlueButton.get_video_duration("#{video_dir}/#{evt[:stream]}.flv") * 1000).to_i
}
BigBlueButton.logger.debug("Adding stop event: #{new_event}")
stop_evt << new_event
end
end
matched_evts = BigBlueButton::Events.match_start_and_stop_video_events(start_evt, stop_evt)
BigBlueButton.logger.debug("First timestamp: #{first_timestamp}")
BigBlueButton.logger.debug("Last timestamp: #{last_timestamp}")
......
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