require 'spec_helper.rb' module FFMPEG describe Transcoder do describe "initialization" do before(:each) do @movie = Movie.new("#{fixture_path}/movies/awesome movie.mov") @output_path = "#{tmp_path}/awesome.flv" end it "should accept EncodingOptions as options" do lambda { Transcoder.new(@movie, @output_path, EncodingOptions.new) }.should_not raise_error(ArgumentError) end it "should accept Hash as options" do lambda { Transcoder.new(@movie, @output_path, :video_codec => "libx264") }.should_not raise_error(ArgumentError) end it "should accept String as options" do lambda { Transcoder.new(@movie, @output_path, "-vcodec libx264") }.should_not raise_error(ArgumentError) end it "should not accept anything else as options" do lambda { Transcoder.new(@movie, @output_path, ["array?"]) }.should raise_error(ArgumentError, /Unknown options format/) end end describe "transcoding" do before(:each) do FFMPEG.logger.should_receive(:info).at_least(:once) end it "should transcode the movie with progress given an awesome movie" do FileUtils.rm_f "#{tmp_path}/awesome.flv" movie = Movie.new("#{fixture_path}/movies/awesome movie.mov") transcoder = Transcoder.new(movie, "#{tmp_path}/awesome.flv") stored_progress = 0 transcoder.run { |progress| stored_progress = progress } transcoder.encoded.should be_valid stored_progress.should == 1.0 File.exists?("#{tmp_path}/awesome.flv").should be_true end it "should transcode the movie with EncodingOptions" do FileUtils.rm_f "#{tmp_path}/optionalized.mp4" movie = Movie.new("#{fixture_path}/movies/awesome movie.mov") options = {:video_codec => "libx264", :frame_rate => 10, :resolution => "320x240", :video_bitrate => 300, :audio_codec => "libfaac", :audio_bitrate => 32, :audio_sample_rate => 22050, :audio_channels => 1, :custom => "-flags +loop -cmp +chroma -partitions +parti4x4+partp8x8 -flags2 +mixed_refs -me_method umh -subq 6 -refs 6 -rc_eq 'blurCplx^(1-qComp)' -coder 0 -me_range 16 -g 250 -keyint_min 25 -sc_threshold 40 -i_qfactor 0.71 -qcomp 0.6 -qmin 10 -qmax 51 -qdiff 4 -level 21"} encoded = Transcoder.new(movie, "#{tmp_path}/optionalized.mp4", options).run encoded.video_codec.should == "h264" encoded.resolution.should == "320x240" encoded.frame_rate.should == 10.0 encoded.audio_codec.should == "aac" encoded.audio_sample_rate.should == 22050 encoded.audio_channels.should == 1 end it "should transcode the movie with String options" do FileUtils.rm_f "#{tmp_path}/string_optionalized.flv" movie = Movie.new("#{fixture_path}/movies/awesome movie.mov") encoded = Transcoder.new(movie, "#{tmp_path}/string_optionalized.flv", "-s 300x200 -ac 2").run encoded.resolution.should == "300x200" encoded.audio_channels.should == 2 end it "should fail when given an invalid movie" do FFMPEG.logger.should_receive(:error) movie = Movie.new(__FILE__) transcoder = Transcoder.new(movie, "#{tmp_path}/fail.flv") lambda { transcoder.run }.should raise_error(RuntimeError, /no output file created/) end end end end