Sha256: 9a3345ead487abd52a7fd6431516a0b974d33d771c5359eb2cca92279b8d445e
Contents?: true
Size: 921 Bytes
Versions: 12
Compression:
Stored size: 921 Bytes
Contents
class UserAgent module Browsers # The user agent utilized by ffmpeg or other projects utilizing libavformat class Libavformat < Base def self.extend?(agent) agent.detect do |useragent| useragent.product == "Lavf" || (useragent.product == "NSPlayer" && agent.version == "4.1.0.3856") end end # @return ["libavformat"] To make it easy to pick it out, all of the UAs that Lavf uses have this browser. def browser "libavformat" end # @return [nil, Version] If the product is NSPlayer, we don't have a version def version if detect_product("NSPlayer") nil else super end end # @return [nil] Lavf doesn't return us anything here def os nil end # @return [nil] Lavf doesn't return us anything here def platform nil end end end end
Version data entries
12 entries across 12 versions & 1 rubygems