Sha256: b4f09437c3f0782897fb323a040264ffadf2f8e07efa5ed5530ab3ea79836fc6
Contents?: true
Size: 585 Bytes
Versions: 17
Compression:
Stored size: 585 Bytes
Contents
module VideoCapture def self.start VideoCaptureNative.start end def self.stop VideoCaptureNative.stop end def self.cancel VideoCaptureNative.cancel end #duration #destination #name #audioSaveEvent class << self def method_missing(name, *args) unless name == Fixnum if name[name.length()-1] == '=' VideoCaptureNative.set_property(name.to_s.chop,(args[0]!=nil) ? args[0].to_s : "") else VideoCaptureNative.get_property(name.to_s) end end end end end
Version data entries
17 entries across 17 versions & 2 rubygems