Module: VideoData

Defined in:
lib/video_data.rb,
lib/video_data/video.rb,
lib/video_data/parser.rb

Overview

The video_data gem helps in the extraction of video data from csv files.

Defined Under Namespace

Classes: NotAWellFormedCSV, Parser, Video

Class Method Summary collapse

Class Method Details

.new(path) ⇒ Object

Create a new parser for the given csv file.

  • Args :

    • path The file path to the csv file.

  • Returns :

    • A parser, VideoData::Parser, ready for video data extraction.



10
11
12
# File 'lib/video_data.rb', line 10

def new(path)
  VideoData::Parser.new(path)
end