├── .gitignore ├── Gemfile ├── README.md ├── Rakefile ├── Voyeur.gemspec ├── bin └── voyeur.rb ├── lib ├── Voyeur │ ├── audio_converters │ │ ├── aac.rb │ │ └── ogg.rb │ ├── converter.rb │ ├── exceptions.rb │ ├── media.rb │ ├── media_time.rb │ ├── version.rb │ └── video_converters │ │ ├── iphone.rb │ │ ├── mp4.rb │ │ ├── ogv.rb │ │ └── webm.rb └── voyeur.rb └── spec ├── converter_spec.rb ├── converters ├── audio_converters │ ├── aac_spec.rb │ └── ogg_spec.rb └── video_converters │ ├── iphone_spec.rb │ ├── mp4_spec.rb │ ├── ogv_spec.rb │ └── webm_spec.rb ├── fixtures ├── converted │ └── PLACEHOLDER └── test.mpeg ├── media_time_spec.rb ├── spec_helper.rb ├── spec_helpers └── video_file_spec_helper.rb └── video_spec.rb /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devthenet/voyeur/HEAD/.gitignore -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devthenet/voyeur/HEAD/Gemfile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devthenet/voyeur/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devthenet/voyeur/HEAD/Rakefile -------------------------------------------------------------------------------- /Voyeur.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devthenet/voyeur/HEAD/Voyeur.gemspec -------------------------------------------------------------------------------- /bin/voyeur.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devthenet/voyeur/HEAD/bin/voyeur.rb -------------------------------------------------------------------------------- /lib/Voyeur/audio_converters/aac.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devthenet/voyeur/HEAD/lib/Voyeur/audio_converters/aac.rb -------------------------------------------------------------------------------- /lib/Voyeur/audio_converters/ogg.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devthenet/voyeur/HEAD/lib/Voyeur/audio_converters/ogg.rb -------------------------------------------------------------------------------- /lib/Voyeur/converter.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devthenet/voyeur/HEAD/lib/Voyeur/converter.rb -------------------------------------------------------------------------------- /lib/Voyeur/exceptions.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devthenet/voyeur/HEAD/lib/Voyeur/exceptions.rb -------------------------------------------------------------------------------- /lib/Voyeur/media.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devthenet/voyeur/HEAD/lib/Voyeur/media.rb -------------------------------------------------------------------------------- /lib/Voyeur/media_time.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devthenet/voyeur/HEAD/lib/Voyeur/media_time.rb -------------------------------------------------------------------------------- /lib/Voyeur/version.rb: -------------------------------------------------------------------------------- 1 | module Voyeur 2 | VERSION = "0.2.0" 3 | end 4 | -------------------------------------------------------------------------------- /lib/Voyeur/video_converters/iphone.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devthenet/voyeur/HEAD/lib/Voyeur/video_converters/iphone.rb -------------------------------------------------------------------------------- /lib/Voyeur/video_converters/mp4.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devthenet/voyeur/HEAD/lib/Voyeur/video_converters/mp4.rb -------------------------------------------------------------------------------- /lib/Voyeur/video_converters/ogv.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devthenet/voyeur/HEAD/lib/Voyeur/video_converters/ogv.rb -------------------------------------------------------------------------------- /lib/Voyeur/video_converters/webm.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devthenet/voyeur/HEAD/lib/Voyeur/video_converters/webm.rb -------------------------------------------------------------------------------- /lib/voyeur.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devthenet/voyeur/HEAD/lib/voyeur.rb -------------------------------------------------------------------------------- /spec/converter_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devthenet/voyeur/HEAD/spec/converter_spec.rb -------------------------------------------------------------------------------- /spec/converters/audio_converters/aac_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devthenet/voyeur/HEAD/spec/converters/audio_converters/aac_spec.rb -------------------------------------------------------------------------------- /spec/converters/audio_converters/ogg_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devthenet/voyeur/HEAD/spec/converters/audio_converters/ogg_spec.rb -------------------------------------------------------------------------------- /spec/converters/video_converters/iphone_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devthenet/voyeur/HEAD/spec/converters/video_converters/iphone_spec.rb -------------------------------------------------------------------------------- /spec/converters/video_converters/mp4_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devthenet/voyeur/HEAD/spec/converters/video_converters/mp4_spec.rb -------------------------------------------------------------------------------- /spec/converters/video_converters/ogv_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devthenet/voyeur/HEAD/spec/converters/video_converters/ogv_spec.rb -------------------------------------------------------------------------------- /spec/converters/video_converters/webm_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devthenet/voyeur/HEAD/spec/converters/video_converters/webm_spec.rb -------------------------------------------------------------------------------- /spec/fixtures/converted/PLACEHOLDER: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devthenet/voyeur/HEAD/spec/fixtures/converted/PLACEHOLDER -------------------------------------------------------------------------------- /spec/fixtures/test.mpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devthenet/voyeur/HEAD/spec/fixtures/test.mpeg -------------------------------------------------------------------------------- /spec/media_time_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devthenet/voyeur/HEAD/spec/media_time_spec.rb -------------------------------------------------------------------------------- /spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devthenet/voyeur/HEAD/spec/spec_helper.rb -------------------------------------------------------------------------------- /spec/spec_helpers/video_file_spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devthenet/voyeur/HEAD/spec/spec_helpers/video_file_spec_helper.rb -------------------------------------------------------------------------------- /spec/video_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devthenet/voyeur/HEAD/spec/video_spec.rb --------------------------------------------------------------------------------