Sha256: cb79c60acb95bfed179d3d075a09d486bc29a83c693f8b7360f9355e198b40c4

Contents?: true

Size: 1.95 KB

Versions: 3

Compression:

Stored size: 1.95 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 ZoomPlayerMaxEdl
  
  def self.convert_to_edl_string specs
    
    raise 'needs timestamps_relative_to--or rather, ping me if you want this for file based' unless specs['timestamps_relative_to']
    combined = EdlParser.convert_incoming_to_split_sectors specs
    raise unless mpeg_offset = specs['dvd_start_offset'] # TODO make this a class... also rename it mpeg_dvd_start_offset
    raise unless dvd_nav_packet_offsets = specs['dvd_nav_packet_offset']
    combined2 = EdlParser.convert_to_dvd_nav_times combined, specs['timestamps_relative_to'][0], mpeg_offset.to_f, dvd_nav_packet_offsets, specs['timestamps_relative_to'][1].to_f
    out = ""
    track = specs['dvd_title_track']
    out += "DVDTitle(#{track})\n"
=begin
    DVDTitle(1)
    CutSegment("Start=27.389","End=32.209")
    CutSegment("Start=73.510","End=78.510")
    MuteAudio("From=39.389","Duration=41.389")
=end
    for start, endy, type in combined2      
      if type == :mute
        out += %!MuteAudio("From=#{start}","Duration=#{endy-start}")\n!
      elsif type == :blank
        out += %!CutSegment("Start=#{start}","End=#{endy}")\n!
      else
        raise
      end
    end
    out
  end
end

Version data entries

3 entries across 3 versions & 2 rubygems

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