mirror of
https://gitlab.crans.org/nounous/ghostream.git
synced 2024-12-22 19:42:20 +00:00
Prepare ascii art quality
This commit is contained in:
parent
fc96fa4d4e
commit
b675023804
@ -3,6 +3,7 @@ package webrtc
|
|||||||
|
|
||||||
import (
|
import (
|
||||||
"bufio"
|
"bufio"
|
||||||
|
"fmt"
|
||||||
"io"
|
"io"
|
||||||
"log"
|
"log"
|
||||||
"net"
|
"net"
|
||||||
@ -51,7 +52,8 @@ func ingestFrom(inputChannel chan srt.Packet) {
|
|||||||
"-auto-alt-ref", "1",
|
"-auto-alt-ref", "1",
|
||||||
"-f", "rtp", "rtp://127.0.0.1:5004",
|
"-f", "rtp", "rtp://127.0.0.1:5004",
|
||||||
"-vn", "-acodec", "libopus", "-cpu-used", "5", "-deadline", "1", "-qmin", "10", "-qmax", "42", "-error-resilient", "1", "-auto-alt-ref", "1",
|
"-vn", "-acodec", "libopus", "-cpu-used", "5", "-deadline", "1", "-qmin", "10", "-qmax", "42", "-error-resilient", "1", "-auto-alt-ref", "1",
|
||||||
"-f", "rtp", "rtp://127.0.0.1:5005")
|
"-f", "rtp", "rtp://127.0.0.1:5005",
|
||||||
|
"-an", "-f", "rawvideo", "-vf", "scale=32x18", "-pix_fmt", "gray", "pipe:1")
|
||||||
|
|
||||||
input, err := ffmpeg.StdinPipe()
|
input, err := ffmpeg.StdinPipe()
|
||||||
if err != nil {
|
if err != nil {
|
||||||
@ -62,6 +64,10 @@ func ingestFrom(inputChannel chan srt.Packet) {
|
|||||||
if err != nil {
|
if err != nil {
|
||||||
panic(err)
|
panic(err)
|
||||||
}
|
}
|
||||||
|
output, err := ffmpeg.StdoutPipe()
|
||||||
|
if err != nil {
|
||||||
|
panic(err)
|
||||||
|
}
|
||||||
|
|
||||||
if err := ffmpeg.Start(); err != nil {
|
if err := ffmpeg.Start(); err != nil {
|
||||||
panic(err)
|
panic(err)
|
||||||
@ -99,6 +105,9 @@ func ingestFrom(inputChannel chan srt.Packet) {
|
|||||||
}
|
}
|
||||||
}()
|
}()
|
||||||
|
|
||||||
|
// Receive ascii
|
||||||
|
go asciiArt(output, videoTracks[srtPacket.StreamName])
|
||||||
|
|
||||||
// Receive audio
|
// Receive audio
|
||||||
go func() {
|
go func() {
|
||||||
for {
|
for {
|
||||||
@ -156,3 +165,27 @@ func ingestFrom(inputChannel chan srt.Packet) {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func asciiChar(pixel byte) string {
|
||||||
|
asciiChars := []string{"@", "#", "$", "%", "?", "*", "+", ";", ":", ",", "."}
|
||||||
|
return asciiChars[pixel/25]
|
||||||
|
}
|
||||||
|
|
||||||
|
func asciiArt(reader io.Reader, videoTracks []*webrtc.Track) {
|
||||||
|
|
||||||
|
buff := make([]byte, 2048)
|
||||||
|
for {
|
||||||
|
n, _ := reader.Read(buff)
|
||||||
|
if n == 0 {
|
||||||
|
break
|
||||||
|
}
|
||||||
|
for j := 0; j < 18; j++ {
|
||||||
|
for i := 0; i < 32; i++ {
|
||||||
|
pixel := buff[32*j+i]
|
||||||
|
fmt.Print(asciiChar(pixel))
|
||||||
|
}
|
||||||
|
fmt.Println()
|
||||||
|
}
|
||||||
|
fmt.Println()
|
||||||
|
}
|
||||||
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user