Code Monkey home page Code Monkey logo

vsmkv's Introduction

About

vsmkv is a FUSE-based virtual filesystem for exporting VapourSynth scripts as uncompressed videos in the Matroska (MKV) file format.

Dependencies

FUSE, CMake and a compiler supporting the C++14 shared mutex (e.g., GCC >= 5.2) are required.

Running the unit tests requires the Criterion framework to be installed.

Installation

from the commandline:

mkdir build
cd build
cmake ../
make

Running

The command requires two arguments. First, the path to your VapourSynth script. Second, an empty directory for mounting the filesystem. Additionally, a number of parameters inherited from FUSE may be specified (e.g., -s for running in single threaded mode or -f for running in foreground mode instead of daemonizing):

cd /tmp
mkdir output
/path/to/vsmkv test.vpy output -f

Finally, a player supporting uncompressed video in MKV files can be used to play back the videos (first output node in this example):

cd /tmp/output
mpv node_0

Limitations

  • Currently, only planar YUV color spaces are supported.
  • Concurrent access to the same video from multiple programs results in constant allocation and de-allocation of frames with a huge performance penalty.
  • The software lacks proper logging and error handling for now - errors result in uncaught exceptions.
  • The filesystem needs to be remounted after changing the VapourSynth script file
  • No Windows support (yet) due to the missing native FUSE implementation. Crossmeta FUSE may possibly work.

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.