Giter Club home page Giter Club logo

emilienjcbot's Introduction

EmilienjcBot

My personnal bot for twitch. There are the futur feature of this bot :

  • Read message from the tchat.
  • Write message into the tchat.
  • Control a Raspberry from the tchat.
  • Custom widgets.

emilienjcbot's People

Contributors

emilienleroy avatar

Stargazers

 avatar

Watchers

 avatar  avatar

emilienjcbot's Issues

Create a streaming service to get the robot camera

TODO

The ffmpeg command to stream webcam from the robot :

ffmpeg -f v4l2 -framerate 25 -video_size 640x480 -i /dev/video0 -c:v libx264 -preset veryfast -tune zerolatency -c:a aac -ar 44100 -f flv rtmp://localhost/live/STREAM_NAME

Same command using node-fluent-ffmpeg :

const FfmpegCommand = require('fluent-ffmpeg');
const command = new FfmpegCommand();

command.input('/dev/video0')
        .fps(25)
        .size('640x480')
        .native()
        .flvmeta()
        .format('flv')
        .output('rtmp://192.168.1.93/live/STREAM_NAME')
        .outputOptions([
                '-c:v libx264',
                '-preset veryfast',
                '-tune zerolatency',
                '-c:a aac',
                '-ar 44100'
        ])
        .run();

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.