=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 .
=end
require File.dirname(__FILE__) + "/common"
require_relative '../lib/mplayer_edl'
describe MplayerEdl do
{ "mutes" => {5=> 7}, "blank_outs" => {6=>7} }
it "should translate verbatim" do
a = MplayerEdl.convert_to_edl({ "mutes"=>{105=>145, "46:33.5"=>2801}, "blank_outs" => {6 => 7} } )
# 0 for skip, 1 for mute
a.should == <{105=>106}, "blank_outs" => {110 => 111} }, 1 )
a.should == <{105=>106}, "blank_outs" => {106 => 107} }, 1 )
a.should == <<-EOL
105.0 106.0 1
106.0 107.0 0
EOL
end
end
it "should add to beginning and ending of mutes" do
a = MplayerEdl.convert_to_edl({ "mutes"=>{105=>106}, "blank_outs" => {110 => 111} }, 1, 1 )
a.should == <{5=>6,105=>106}, "blank_outs" => {110 => 111}}, 0, 0, [103] )
a.should == <<-EOL
2.0 3.0 1
5.0 6.0 1
7.0 8.0 0
EOL
end
end