Sha256: ee23055b74575f3d3fe3b11798d4b7059177ee66a869e8365394bd4ee37f6527

Contents?: true

Size: 1.53 KB

Versions: 2

Compression:

Stored size: 1.53 KB

Contents

=begin
Copyright 2010, Roger Pack 
This file is part of Sensible Cinema.

    Sensible Cinema is free software: you can redistribute it and/or modify
    it under the terms of the GNU General Public License as published by
    the Free Software Foundation, either version 3 of the License, or
    (at your option) any later version.

    Sensible Cinema is distributed in the hope that it will be useful,
    but WITHOUT ANY WARRANTY; without even the implied warranty of
    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
    GNU General Public License for more details.

    You should have received a copy of the GNU General Public License
    along with Sensible Cinema.  If not, see <http://www.gnu.org/licenses/>.
=end

require_relative 'edl_parser'

class MplayerEdl
  
  def self.convert_to_edl specs, add_this_many_to_end = 0, add_this_many_to_beginning = 0, splits = [], extra_time_to_all = 0.0, use_english_timestamps = false
    
    # simple re-map to EDL style output
    combined = EdlParser.convert_incoming_to_split_sectors specs, add_this_many_to_end, add_this_many_to_beginning, splits
    
    out = ''
    map = {:mute => 1, :blank => 0}
    for start, endy, type in combined
      start += extra_time_to_all
      endy += extra_time_to_all
      if use_english_timestamps
        start = EdlParser.translate_time_to_human_readable start
        endy  = EdlParser.translate_time_to_human_readable endy
      end
      out += "#{start} #{endy} #{map[type]}\n"
    end
    out
  end
  
end

Version data entries

2 entries across 2 versions & 2 rubygems

Version Path
content-editing-movie-player-0.38.0 lib/mplayer_edl.rb
sensible-cinema-0.35.3 lib/mplayer_edl.rb