Giter Site home page Giter Site logo

supragya / libfuse-frameserver Goto Github PK

View Code? Open in Web Editor NEW
3.0 3.0 0.0 14.86 MB

An experiment with LibFUSE to implement AVI based FrameServer using OpenCine OCcore as a backend

License: MIT License

C 17.08% C++ 80.73% Makefile 2.02% Shell 0.17%
libfuse frameserver opencine apertus libfuse-frameserver avi dng-files mlv

libfuse-frameserver's Introduction

libfuse-FrameServer

An experiment with LibFUSE to implement FrameServer using OCcore

The repository is divided as follows:

  • FrameServer-RedChannel contains a dummy FrameServer made using libfuse. The program is based on earlier implementation of PiNG12RAW. Extracts the red channel from a RAW12 image and provides it as a File in FUSE based filesystem.
  • AVIWriter contains a simple program to create AVI file from multiple frames. (undone currently)

libfuse-frameserver's People

Contributors

supragya avatar

Stargazers

 avatar  avatar  avatar

Watchers

 avatar  avatar  avatar

libfuse-frameserver's Issues

fuse_operations C++ problem

static struct fuse_operations hello_oper = {

Can be fixed by using common C++ struct filling.

int main(int argc, char *argv[])
{
	fuse_operations fuse_ops = {};
	fuse_ops.getattr = getattr_callback;
	fuse_ops.open = open_callback;
	fuse_ops.read = read_callback;
	fuse_ops.readdir = readdir_callback;

	return fuse_main(argc, argv, &fuse_ops, NULL);
}

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.