<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<style type="text/css" style="display:none;"> P {margin-top:0;margin-bottom:0;} </style>
</head>
<body dir="ltr">
<div style="font-family: Calibri, Arial, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);">
Hi all, I wanted to share something I've been working on: <a href="https://www.linkedin.com/feed/update/urn:li:activity:6532671764118417408" id="LPNoLP985771">https://www.linkedin.com/feed/update/urn:li:activity:6532671764118417408</a> . In the screenshot I'm
 sending the master out from Ardour to my eZuce Vibe client running on a separate Windows machine. Anyone that joins the room would thus hear the master out of your session. The audio you hear is in HD stereo. There's nothing really special going on, I'm just
 using ffmpeg to send to my Vibe client: </div>
<div style="font-family: Calibri, Arial, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);">
<br>
</div>
<div style="font-family: Calibri, Arial, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);">
# opus stereo</div>
<div>ffmpeg -re -f jack -i system:capture_1,system:capture_2 -c:a libopus -payload_type 105 -vn -f rtp rtp://192.168.3.200:3335?pkt_size=1200<br>
</div>
<div><br>
</div>
<div># ardour desktop capture</div>
<div>ffmpeg -video_size 1280x720 -framerate 5 -f x11grab -i :0.0 -c:v libx264 -preset ultrafast -pix_fmt yuv420p -an -f rtp rtp://192.168.2.163:3333?pkt_size=1200<br>
</div>
<div><br>
</div>
<div>You have to create a special .properties file to open the ports in the client. On windows its for example C:\Users\Matt\.vibe\plugins\EVO_RTP.properties , or mac/linux ~/.vibe/plugins/EVO_RTP.properties with contents ..</div>
<div><br>
</div>
<div><span>VideoAparte=true<br>
</span>
<div>AudioAparte=true<br>
</div>
<div>VideoEnable=true<br>
</div>
<div>VideoSend=0<br>
</div>
<div>VideoRecv=3333<br>
</div>
<div>Video_mtu=1490<br>
</div>
<div>Audio_mtu=1490<br>
</div>
<div>AudioEnable=true<br>
</div>
<div>AudioSend=0<br>
</div>
<div>AudioRecv=3335<br>
</div>
<span></span><br>
</div>
<div>You can change port numbers as necessary, just make sure theres +2 between audio and video. I also have more ffmpeg examples if you need them (windows, webcams, etc.)</div>
<div><br>
</div>
<div>Regards,</div>
<div>Matt</div>
</body>
</html>