FFmpeg to WebRTC
11–20 of 50 posts
Re: FFmpeg to WebRTC
#12Re: FFmpeg to WebRTC
#13How do I play video files stored in my VPS to Chromecast?
I want my mom to watch a video, from her TV, but I can't upload it to YouTube due to copyrighted content (yes, even if you set unlisted, YouTube will block it).
Re: FFmpeg to WebRTC
#14Since we're on this topic, I want to ask a question: How do I play video files stored in my VPS to Chromecast? I want my mom to watch a video, from her TV, but I can't upload it to YouTube due to copyrighted content (yes, even if you set unlisted, YouTube will block it).
Re: FFmpeg to WebRTC
#15Since we're on this topic, I want to ask a question: How do I play video files stored in my VPS to Chromecast? I want my mom to watch a video, from her TV, but I can't upload it to YouTube due to copyrighted content (yes, even if you set unlisted, YouTube will block it).
https://github.com/skorokithakis/catt
You might need a VPN as whatever is running catt must be able to connect to your chromecast and chromecast must be able to pull from whatever is running catt.
We watch all the movies this way - just cast an mp4 file. Works great on a local network.
Re: FFmpeg to WebRTC
#16Re: FFmpeg to WebRTC
#17Since we're on this topic, I want to ask a question: How do I play video files stored in my VPS to Chromecast? I want my mom to watch a video, from her TV, but I can't upload it to YouTube due to copyrighted content (yes, even if you set unlisted, YouTube will block it).
Both let you stream their videos to Chromecast last I checked.
Plex also has support for pictures which might be interesting in some related cases
Re: FFmpeg to WebRTC
#18go run . -rtbufsize 100M -f dshow -i video="Integrated Webcam" -pix_fmt yuv420p -c:v libx264 -bsf:v h264_mp4toannexb -b:v 2M -max_delay 0 -bf 0 - Connection State has changed failed
Peer Connection State has changed: failed
Peer Connection has gone to failed exiting
Re: FFmpeg to WebRTC
#19Great work! This makes WebRTC much more accessible, it not being available in ffmpeg makes people default to worse alternatives.
I came across your post[0] about KVS from a while ago. Thank you for your work on pion and KVS.
A quick question on the KVS, C implementation. Is this in anyway tied to be used with AWS Kinesis? Can it be used with Wowza for instance?
Re: FFmpeg to WebRTC
#20Since there are probably some people experienced with ffmpeg here, is it possible to to image zooms with ffmpg that go deeper then zoom factor 10? I can zoom up to factor 10 like this: ffmpeg -i someimage.jpg -vf "zoompan=z='10-on/100':d=1000:x='iw/2-(iw/zoom/2)':y='ih/2-(ih/zoom/2)':s=1920x1437" zoom.mp4 But everything above a zoom of 10 seems to fail. Is there a hard limit in the code for some reason? Some way to o…