Top Level Namespace
Defined Under Namespace
Modules: Scissor Classes: MP4Info
Instance Method Summary collapse
Instance Method Details
#Scissor(filename_or_url = nil) ⇒ Object
8 9 10 11 12 13 14 |
# File 'lib/scissor.rb', line 8 def Scissor(filename_or_url = nil) if filename_or_url && filename_or_url.to_s =~ /^http/ Scissor::Tape.new_from_url(filename_or_url) else Scissor::Tape.new(filename_or_url) end end |