Search found 9 matches
- Thu Oct 24, 2024 6:06 am
- Forum: VBAN Procotol
- Topic: New client for Teensy Audio
- Replies: 13
- Views: 67849
Re: New client for Teensy Audio
The code is working well enough for an initial release. Two-way, multi-stream, 1-8 channel audio is working with Voicemeeter (only at 44.1KHz PCM16 as that's the Teensy Audio standard). VBAN Chat is also working, with one bug (my client eats the first few messages from Voicemeeter while it asks for ...
- Thu Oct 17, 2024 12:36 am
- Forum: VBAN Procotol
- Topic: New client for Teensy Audio
- Replies: 13
- Views: 67849
Re: New client for Teensy Audio
An update. So far, I have tested up to 8-channel audio and two streams of 2-channel audio running using a Teensy 4.1 running the Teensy Audio Library and Voicemeeter on a PC, on an isolated 100Mb Ethernet network. Several in and out streams subscribed and running concurrently for several hours witho...
- Wed Oct 09, 2024 12:27 am
- Forum: VBAN Procotol
- Topic: New client for Teensy Audio
- Replies: 13
- Views: 67849
- Tue Oct 08, 2024 7:52 am
- Forum: VBAN Procotol
- Topic: New client for Teensy Audio
- Replies: 13
- Views: 67849
Re: New client for Teensy Audio
Vincent, When I stop and re-start a VBAN stream, a VBAN_SERVICE_IDENTIFICATION : VBAN_SERVICE_FNCT_REPLY message is sent from Voicemeeter. I have tried sending a 28 byte VBAN_SERVICE_IDENTIFICATION : VBAN_SERVICE_FNCT_PING0 message to Voicemeeter. UDP Sender/Receiver picks it up (see attached screen...
- Fri Sep 13, 2024 2:42 am
- Forum: VBAN Procotol
- Topic: New client for Teensy Audio
- Replies: 13
- Views: 67849
Re: New client for Teensy Audio
When I'm converting audio streams to VBAN packets should I create VBAN packets with different numbers of samples or always keep to t he same number of samples? E.g. 8 x 128 sample (PCM16) buffers = 2048 samples = 4096 bytes Packet 1 = 8 x 89 samples Packet 2 = 8 x 39 samples OR Packet 1 = 8 x 64 sam...
- Fri Sep 13, 2024 1:00 am
- Forum: VBAN Procotol
- Topic: New client for Teensy Audio
- Replies: 13
- Views: 67849
Re: New client for Teensy Audio
BTW the four streams were 8 channels of 96kHz, 24 bit PCM each.
- Fri Sep 13, 2024 12:58 am
- Forum: VBAN Procotol
- Topic: New client for Teensy Audio
- Replies: 13
- Views: 67849
Re: New client for Teensy Audio
Thanks. By low latency I'm meaning low enough for live sound use (<15mS), rather than really low latency (1-2mS), so I think things will be OK for output from a DAW and point to point communications. Yesterday's test was between two wired points on my home LAN (which includes WiFi). On an isolated n...
- Thu Sep 12, 2024 8:06 am
- Forum: VBAN Procotol
- Topic: New client for Teensy Audio
- Replies: 13
- Views: 67849
Re: New client for Teensy Audio
Thanks Vincent, I thought that would be the case with dropped packets, underruns and overloads. I will take one of the approaches you suggest. The application I have in mind needs low latency, so I'm staying with wired Ethernet for now. Initial testing: I can receive 14 channels on a Teensy 4.1 befo...
- Tue Sep 10, 2024 11:47 pm
- Forum: VBAN Procotol
- Topic: New client for Teensy Audio
- Replies: 13
- Views: 67849
New client for Teensy Audio
Vincent, I'm updating my ethernet connector ( https://github.com/palmerr23/ether_audio ) for the Teensy Audio suite ( https://github.com/PaulStoffregen/Audio ) to include VBAN compliance. The VBAN documentation is excellent, however I noticed that the more recent VB-Audio products have VBAN error co...