Skip to content

Commit

Permalink
First code-baring commit for thumbcoil!
Browse files Browse the repository at this point in the history
  • Loading branch information
jrivera committed Aug 9, 2016
1 parent 152f435 commit 1b10dee
Show file tree
Hide file tree
Showing 36 changed files with 4,045 additions and 29 deletions.
13 changes: 13 additions & 0 deletions .editorconfig
@@ -0,0 +1,13 @@
# http://editorconfig.org
root = true

[*]
charset = utf-8
end_of_line = lf
indent_style = space
indent_size = 2
insert_final_newline = true
trim_trailing_whitespace = true

[*.md]
trim_trailing_whitespace = false
56 changes: 27 additions & 29 deletions .gitignore
@@ -1,37 +1,35 @@
# OS
Thumbs.db
ehthumbs.db
Desktop.ini
.DS_Store
._*

# Editors
*~
*.swp
*.tmproj
*.tmproject
*.sublime-*
.idea/
.project/
.settings/
.vscode/

# Logs
logs
*.log
npm-debug.log*

# Runtime data
pids
*.pid
*.seed

# Directory for instrumented libs generated by jscoverage/JSCover
lib-cov

# Coverage directory used by tools like istanbul
coverage

# nyc test coverage
.nyc_output

# Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files)
.grunt

# node-waf configuration
.lock-wscript

# Compiled binary addons (http://nodejs.org/api/addons.html)
build/Release

# Dependency directories
node_modules
jspm_packages
bower_components/
node_modules/

# Optional npm cache directory
.npm
# Yeoman meta-data
.yo-rc.json

# Optional REPL history
.node_repl_history
# Build-related directories
dist/
docs/api/
es5/
test/dist/
3 changes: 3 additions & 0 deletions .npmignore
@@ -0,0 +1,3 @@
# Intentionally left blank, so that npm does not ignore anything by default,
# but relies on the package.json "files" array to explicitly define what ends
# up in the package.
13 changes: 13 additions & 0 deletions .travis.yml
@@ -0,0 +1,13 @@
sudo: false
language: node_js
node_js:
- 'node'
- '4.2'
- '0.12'
- '0.10'

before_script:

# Set up a virtual screen for Firefox.
- export DISPLAY=:99.0
- sh -e /etc/init.d/xvfb start
8 changes: 8 additions & 0 deletions CHANGELOG.md
@@ -0,0 +1,8 @@
CHANGELOG
=========

## HEAD (Unreleased)
_(none)_

--------------------

13 changes: 13 additions & 0 deletions LICENSE
@@ -0,0 +1,13 @@
Copyright 2016 Brightcove, Inc.

Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at

http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
26 changes: 26 additions & 0 deletions README.md
@@ -0,0 +1,26 @@
# Thumbcoil

Tools for inspecting MPEG2TS and MP4 files and the codec bitstreams therein

## Table of Contents

<!-- START doctoc generated TOC please keep comment here to allow auto update -->
<!-- DON'T EDIT THIS SECTION, INSTEAD RE-RUN doctoc TO UPDATE -->
## Installation

- [Installation](#installation)
- [License](#license)

<!-- END doctoc generated TOC please keep comment here to allow auto update -->
## Installation

```sh
npm install --save thumbcoil
```

## License

Apache-2.0. Copyright (c) Jon-Carlos Rivera


[videojs]: http://videojs.com/

0 comments on commit 1b10dee

Please sign in to comment.