Add readme, clean up some copy
This commit is contained in:
parent
7f62e8a080
commit
413e5c0099
|
@ -0,0 +1,45 @@
|
||||||
|
v2f
|
||||||
|
========
|
||||||
|
|
||||||
|
Convert video to 16mm-sized strips of frames. For transferring to acetate and other experimental needs.
|
||||||
|
|
||||||
|
Look how easy it is to use:
|
||||||
|
|
||||||
|
v2f ./path_to_video.mov 300 -v
|
||||||
|
|
||||||
|
This will turn "path_to_video.mov" into strips of 16mm-sized frames that will printing at 300dpi. They are broken up into 8.5x11in pages.
|
||||||
|
|
||||||
|
|
||||||
|
Dependencies
|
||||||
|
------------
|
||||||
|
|
||||||
|
- node.js (or use a compiled version)
|
||||||
|
- libav
|
||||||
|
- ImageMagick
|
||||||
|
|
||||||
|
Install Dependencies
|
||||||
|
--------------------
|
||||||
|
|
||||||
|
OSX
|
||||||
|
|
||||||
|
brew install libav imagemagick
|
||||||
|
|
||||||
|
Ubuntu
|
||||||
|
|
||||||
|
apt-get install libav imagemagick
|
||||||
|
|
||||||
|
Contribute
|
||||||
|
----------
|
||||||
|
|
||||||
|
- Issue Tracker: github.com/sixteenmillimeter/v2f/issues
|
||||||
|
- Source Code: github.com/sixteenmillimeter/v2f
|
||||||
|
|
||||||
|
Support
|
||||||
|
-------
|
||||||
|
|
||||||
|
If you are having issues, please log it with the project.
|
||||||
|
|
||||||
|
License
|
||||||
|
-------
|
||||||
|
|
||||||
|
The project is licensed under the MIT license.
|
|
@ -1,7 +1,7 @@
|
||||||
{
|
{
|
||||||
"name": "video_to_page",
|
"name": "v2f",
|
||||||
"version": "1.0.0",
|
"version": "1.0.0",
|
||||||
"description": "Turn a video into a page of stills 16mm size",
|
"description": "Turn a video into strips of precise 16mm-size stills",
|
||||||
"main": "v2f.js",
|
"main": "v2f.js",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"test": "echo \"Error: no test specified\" && exit 1"
|
"test": "echo \"Error: no test specified\" && exit 1"
|
||||||
|
|
Loading…
Reference in New Issue