Skip to content

Instantly share code, notes, and snippets.

@mcls
Created May 14, 2013 14:10
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save mcls/5576202 to your computer and use it in GitHub Desktop.
Save mcls/5576202 to your computer and use it in GitHub Desktop.
Quick hack to fetch duration of RTMP stream using rtmpdump v2.4.
require 'forwardable'
module RtmpMeta
class Parser
PATTERN = /duration\s+(?<duration>\d+\.?\d+)$/
attr_reader :raw_data
def initialize raw_data
@raw_data = raw_data
end
def duration
@duration ||= metadata[:duration]
end
protected
def metadata
@metadata ||= parse_raw_data
end
def parse_raw_data
match = PATTERN.match(raw_data)
{ duration: match ? match[:duration] : '0' }
end
end
end
module RtmpMeta
class MetadataCommand
attr_reader :rtmp_url
def initialize rtmp_url
@rtmp_url = rtmp_url
end
def execute
fetch_metadata.encode('UTF-8', invalid: :replace, replace: '?')
end
protected
def fetch_metadata
`rtmpdump -r '#{rtmp_url}' -o '/dev/null' --stop '0.01' 2>&1`
end
end
end
module RtmpMeta
class Stream
extend Forwardable
attr_reader :metadata
def_delegator :metadata, :duration
def initialize stream, path
url = [stream, path].join('/')
@raw_data = MetadataCommand.new(url).execute
@metadata = Parser.new(@raw_data)
end
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment