Class: FFMPEG::Movie

Inherits:
Object
  • Object
show all
Defined in:
lib/ffmpeg/movie.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(path) ⇒ Movie

Returns a new instance of Movie.

Raises:

  • (Errno::ENOENT)


7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
# File 'lib/ffmpeg/movie.rb', line 7

def initialize(path)
  raise Errno::ENOENT, "the file '#{path}' does not exist" unless File.exists?(path)
  
  @path = escape(path)

  stdin, stdout, stderr = Open3.popen3("#{FFMPEG.ffmpeg_binary} -i '#{path}'") # Output will land in stderr
  output = stderr.read
  
  fix_encoding(output)
  
  output[/Duration: (\d{2}):(\d{2}):(\d{2}\.\d{2})/]
  @duration = ($1.to_i*60*60) + ($2.to_i*60) + $3.to_f
  
  output[/start: (\d*\.\d*)/]
  @time = $1 ? $1.to_f : 0.0
  
  output[/bitrate: (\d*)/]
  @bitrate = $1 ? $1.to_i : nil
  
  output[/Video: (.*)/]
  @video_stream = $1
  
  output[/Audio: (.*)/]
  @audio_stream = $1
  
  @uncertain_duration = true #output.include?("Estimating duration from bitrate, this may be inaccurate") || @time > 0
   
  if video_stream
    @video_codec, @colorspace, resolution, video_bitrate = video_stream.split(/\s?,\s?/)
    @video_bitrate = video_bitrate =~ %r(\A(\d+) kb/s\Z) ? $1.to_i : nil
    @resolution = resolution.split(" ").first rescue nil # get rid of [PAR 1:1 DAR 16:9]
    @dar = $1 if video_stream[/DAR (\d+:\d+)/]
  end
  
  if audio_stream
    @audio_codec, audio_sample_rate, @audio_channels, unused, audio_bitrate = audio_stream.split(/\s?,\s?/)
    @audio_bitrate = audio_bitrate =~ %r(\A(\d+) kb/s\Z) ? $1.to_i : nil
    @audio_sample_rate = audio_sample_rate[/\d*/].to_i
  end
  
  @invalid = true if @video_stream.to_s.empty? && @audio_stream.to_s.empty?
  @invalid = true if output.include?("is not supported")
end

Instance Attribute Details

#audio_bitrateObject (readonly)

Returns the value of attribute audio_bitrate.



5
6
7
# File 'lib/ffmpeg/movie.rb', line 5

def audio_bitrate
  @audio_bitrate
end

#audio_codecObject (readonly)

Returns the value of attribute audio_codec.



5
6
7
# File 'lib/ffmpeg/movie.rb', line 5

def audio_codec
  @audio_codec
end

#audio_sample_rateObject (readonly)

Returns the value of attribute audio_sample_rate.



5
6
7
# File 'lib/ffmpeg/movie.rb', line 5

def audio_sample_rate
  @audio_sample_rate
end

#audio_streamObject (readonly)

Returns the value of attribute audio_stream.



5
6
7
# File 'lib/ffmpeg/movie.rb', line 5

def audio_stream
  @audio_stream
end

#bitrateObject (readonly)

Returns the value of attribute bitrate.



3
4
5
# File 'lib/ffmpeg/movie.rb', line 3

def bitrate
  @bitrate
end

#colorspaceObject (readonly)

Returns the value of attribute colorspace.



4
5
6
# File 'lib/ffmpeg/movie.rb', line 4

def colorspace
  @colorspace
end

#darObject (readonly)

Returns the value of attribute dar.



4
5
6
# File 'lib/ffmpeg/movie.rb', line 4

def dar
  @dar
end

#durationObject (readonly)

Returns the value of attribute duration.



3
4
5
# File 'lib/ffmpeg/movie.rb', line 3

def duration
  @duration
end

#pathObject (readonly)

Returns the value of attribute path.



3
4
5
# File 'lib/ffmpeg/movie.rb', line 3

def path
  @path
end

#resolutionObject (readonly)

Returns the value of attribute resolution.



4
5
6
# File 'lib/ffmpeg/movie.rb', line 4

def resolution
  @resolution
end

#timeObject (readonly)

Returns the value of attribute time.



3
4
5
# File 'lib/ffmpeg/movie.rb', line 3

def time
  @time
end

#video_bitrateObject (readonly)

Returns the value of attribute video_bitrate.



4
5
6
# File 'lib/ffmpeg/movie.rb', line 4

def video_bitrate
  @video_bitrate
end

#video_codecObject (readonly)

Returns the value of attribute video_codec.



4
5
6
# File 'lib/ffmpeg/movie.rb', line 4

def video_codec
  @video_codec
end

#video_streamObject (readonly)

Returns the value of attribute video_stream.



4
5
6
# File 'lib/ffmpeg/movie.rb', line 4

def video_stream
  @video_stream
end

Instance Method Details

#audio_channelsObject



81
82
83
84
85
86
87
# File 'lib/ffmpeg/movie.rb', line 81

def audio_channels
  return nil unless @audio_channels
  return @audio_channels[/\d*/].to_i if @audio_channels["channels"]
  return 1 if @audio_channels["mono"]
  return 2 if @audio_channels["stereo"]
  return 6 if @audio_channels["5.1"]
end

#calculated_aspect_ratioObject



67
68
69
70
71
72
73
74
75
# File 'lib/ffmpeg/movie.rb', line 67

def calculated_aspect_ratio
  if dar
    w, h = dar.split(":")
    w.to_f / h.to_f
  else
    aspect = width.to_f / height.to_f
    aspect.nan? ? nil : aspect
  end
end

#frame_rateObject



89
90
91
# File 'lib/ffmpeg/movie.rb', line 89

def frame_rate
  video_stream[/(\d*\.?\d*)\s?fps/] ? $1.to_f : nil
end

#heightObject



63
64
65
# File 'lib/ffmpeg/movie.rb', line 63

def height
  resolution.split("x")[1].to_i rescue nil
end

#sizeObject



77
78
79
# File 'lib/ffmpeg/movie.rb', line 77

def size
  File.size(@path)
end

#transcode(output_file, options = EncodingOptions.new, transcoder_options = {}, &block) ⇒ Object



93
94
95
# File 'lib/ffmpeg/movie.rb', line 93

def transcode(output_file, options = EncodingOptions.new, transcoder_options = {}, &block)
  Transcoder.new(self, output_file, options, transcoder_options).run &block
end

#uncertain_duration?Boolean

Returns:

  • (Boolean)


55
56
57
# File 'lib/ffmpeg/movie.rb', line 55

def uncertain_duration?
  @uncertain_duration
end

#valid?Boolean

Returns:

  • (Boolean)


51
52
53
# File 'lib/ffmpeg/movie.rb', line 51

def valid?
  not @invalid
end

#widthObject



59
60
61
# File 'lib/ffmpeg/movie.rb', line 59

def width
  resolution.split("x")[0].to_i rescue nil
end