edl
文件大小: unknow
源码售价: 5 个金币 积分规则     积分充值
资源说明:Manage EDLs (Edit Decision Lists) from Ruby
Work with EDL files from Ruby
http://en.wikipedia.org/wiki/Edit_decision_list 

The library assists in parsing [EDL files](http://en.wikipedia.org/wiki/Edit_decision_list) in CMX 3600 format.
You can use it to generate capture lists, inspect needed video segments for the assembled program
and display edit timelines. When used together with [depix](https://github.com/guerilla-di/depix) you could write your own "blind"
conform utility in about 10 minutes, no joke.

## Basic usage

```
require 'rubygems'
require 'edl'

list = EDL::Parser.new(fps=25).parse(File.open('OFFLINE.EDL'))
list.events.each do | evt |
 evt.clip_name #=> Boat_Trip_Take1
 evt.capture_from_tc #=> 01:20:22:10
 evt.capture_to_tc #=> 01:20:26:15, accounts for outgoing transition AND M2 timewarps
end
```

## Requirements

* Timecode gem (sudo gem install timecode)

## Currently unsupportedl EDL features:

There is currently no support for:

* drop-frame TC
* audio
* split edits
* key effects

Some reverse/timewarp combinations can produce source dificiencies of 1 frame

## Installation

Add the following to your project `Gemfile`:

```
gem 'edl'
```

## License

See LICENSE.txt

本源码包内暂不包含可直接显示的源代码文件,请下载源码包。