Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

edl

Package Overview
Dependencies
Maintainers
2
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

edl

  • 0.1.7
  • Rubygems
  • Socket score

Version published
Maintainers
2
Created
Source

Work with EDL files from Ruby http://en.wikipedia.org/wiki/Edit_decision_list

The library assists in parsing EDL files 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 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

FAQs

Package last updated on 19 Jul 2017

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc