Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/bosscheng/electron-download

electron download rtmp stream by ffmpeg
https://github.com/bosscheng/electron-download

download electron ffmpeg

Last synced: 10 days ago
JSON representation

electron download rtmp stream by ffmpeg

Awesome Lists containing this project

README

        

# electron-download

electron download by ffmpeg

## support

- mac
- window
- linux

## test

use nginx rtmp plugin

``` nginx
rtmp {
server {
listen 1935;

application rtmplive {
live on;
max_connections 1024;
}
application hls {

live on;
hls on;
hls_path /usr/local/var/www/hls;
hls_fragment 1s;

}

}

}
```

push stream

```
ffmpeg -re -i [absolute dir] -vcodec copy -f flv rtmp://localhost:1935/abcs/room
```

# screenshot