One request - what's the bitrate? (I know it's probably possible to measure in 1 line of shell)
Show HN: A Simple terminal-based video chat – renders in ASCII and has audio
11–20 of 48 posts
Re: Show HN: A Simple terminal-based video chat – renders in ASCII and has audio
#12Needs ncurses headers sudo apt-get install libncurses5-dev
sudo apt-get install libpulse-dev
Re: Show HN: A Simple terminal-based video chat – renders in ASCII and has audio
#13Re: Show HN: A Simple terminal-based video chat – renders in ASCII and has audio
#14It's almost too high fidelity. Wow. One request - what's the bitrate? (I know it's probably possible to measure in 1 line of shell)
Re: Show HN: A Simple terminal-based video chat – renders in ASCII and has audio
#15It's almost too high fidelity. Wow. One request - what's the bitrate? (I know it's probably possible to measure in 1 line of shell)
Re: Show HN: A Simple terminal-based video chat – renders in ASCII and has audio
#16This is awesome! Wonder how it compares with mine (github.com/billyeh/termchat). Would love to share notes with the maker, since audio was something I did not even consider while I was making it. The image processing part is fun, though!
I've noticed your implementation uses websockets, which are built on top of TCP. we used UDP and encapsulated everything is a pretty simple to use (and easily the most well documented part of the project) p2plib.c. the fear was that video and audio can get backed up if we were to use TCP. so audio and video were sent via UDP packets and rendered every time a UDP packet was recieved.
Re: Show HN: A Simple terminal-based video chat – renders in ASCII and has audio
#17Wouldn't something like this be easier to encrypt for transmission than normal video? Plus, in the case it comes up, "that ascii representation doesn't look anything like me and you can't prove it was me." I like it.
I think it would actually be "harder" to encrypt since it wouldn't be as compressible as normal video (if you lower the resolution to match). Note you can tunnel arbitrary ports in ssh for data if that's what you're thinking of.
Re: Show HN: A Simple terminal-based video chat – renders in ASCII and has audio
#18Wouldn't something like this be easier to encrypt for transmission than normal video? Plus, in the case it comes up, "that ascii representation doesn't look anything like me and you can't prove it was me." I like it.
Why would it be any easier to encrypt? It's data just the same. I wouldn't rely on terrible quality video for plausible deniability but if you want to there are of course many ways to make your webcam feed shitty looking.
Re: Show HN: A Simple terminal-based video chat – renders in ASCII and has audio
#19This is awesome! Wonder how it compares with mine (github.com/billyeh/termchat). Would love to share notes with the maker, since audio was something I did not even consider while I was making it. The image processing part is fun, though!
I helped create it at a recent hackathon. the ascii is rendered by calculating the intensity of any given pixel, mapping that intensity to a character based on how much that character fills up space ('@' would be bright and '.' would be dark) and then approximating the color of the pixel to fit within the 256 available I've noticed your implementation uses websockets, which are built on top of TCP. we used UDP and en…
Re: Show HN: A Simple terminal-based video chat – renders in ASCII and has audio
#20It would be awesome if it supports XMPP/SIP. And btw is there a image previewer for terminal?