OK - It does work with uncompressed WAVs. Maybe you could add that to the documentation.
Thanks
Search found 16 matches
Re: Wav files
As you can see from the comment in that code fragment, it is assigned.
Wav files
I cannot get playing from Wav files to work. According to the documentation, this should be OK: procedure TfrmMain.btn_audiofileClick(Sender: TObject); begin // Microphone has SourceType rvsstWav if opendialog1.Execute then begin rvmicrophone1.WavFileName:= opendialog1.FileName; rvmicrophone1.active ...
- Sat Apr 10, 2021 8:24 pm
- Forum: RVMedia
- Topic: ANN: RVMedia 8.0
- Replies: 7
- Views: 21514
Re: ANN: RVMedia 8.0
Nearly there!
But - I don't want to extract the track to a wav unless I have to. That would cause a lot of sync problems. I really need to be able to write data in real-time.
But - I don't want to extract the track to a wav unless I have to. That would cause a lot of sync problems. I really need to be able to write data in real-time.
- Sat Apr 10, 2021 7:39 am
- Forum: RVMedia
- Topic: ANN: RVMedia 8.0
- Replies: 7
- Views: 21514
Re: ANN: RVMedia 8.0
Thanks, Sergey All I need is to expose a method to send audio and video to a Tcamsender. My FFMPEG system can deliver video frame and audio frame events very reliably, if necessary with transcoding. The audio frames are all PCM with the samples/sec, channels and bits/sample in the event call. The ...
- Thu Apr 08, 2021 9:30 pm
- Forum: RVMedia
- Topic: ANN: RVMedia 8.0
- Replies: 7
- Views: 21514
Re: ANN: RVMedia 8.0
Congratulations Sergey. An excellent update. A few points: • Disconnects : In client-server mode the client drops out randomly – usually after a period of no interaction. I can’t see any automatic re-connect mechanism, but maybe I’ve missed it. • FFMPEG : There seems to be a complete FFMPEG interface ...
- Tue Aug 25, 2020 3:55 pm
- Forum: RVMedia
- Topic: PlayVideoFile Bug
- Replies: 4
- Views: 18802
Re: PlayVideoFile Bug
It is working. It's important to use this kind of sequence when using video: procedure TfrmMain.Button_choosevideoClick(Sender: TObject); begin // if opendialog2.execute then begin rvcamera1.abort; rvcamera1.SourceFileName := opendialog2.FileName; rvcamera1.PlayVideoStream; end; end; But - playing ...
- Tue Aug 25, 2020 3:47 pm
- Forum: RVMedia
- Topic: Unacceptable latency
- Replies: 8
- Views: 26372
Re: Unacceptable latency
It's much improved. Client/Server is about 1.5 seconds latency, which is acceptable for chat.
Well done, Sergey!
Well done, Sergey!
- Sat Aug 15, 2020 12:01 pm
- Forum: RVMedia
- Topic: Unacceptable latency
- Replies: 8
- Views: 26372
Re: Unacceptable latency
Thank you - Got installers and will test!
Jim
Jim
- Fri Aug 14, 2020 10:07 pm
- Forum: RVMedia
- Topic: Unacceptable latency
- Replies: 8
- Views: 26372
Re: Unacceptable latency
I would love to test it, but I can't locate it anywhere!
- Tue Jul 21, 2020 9:55 am
- Forum: RVMedia
- Topic: Unacceptable latency
- Replies: 8
- Views: 26372
Re: Unacceptable latency
Thanks, Sergey. Really video should drop frames if overloaded. Audio should be a higher priority, surely?
- Mon Jul 20, 2020 11:49 am
- Forum: RVMedia
- Topic: Unacceptable latency
- Replies: 8
- Views: 26372
Unacceptable latency
After many tests I have reluctantly come to the conclusion that RVMedia is not adequate for a professional environment. We have found it impossible to get latency below about 4 seconds in LAN or WAN tests. IN my area - interpreting - latency must be as low as possible. Below one second would be ...
- Wed May 20, 2020 8:21 am
- Forum: RVMedia
- Topic: Noise reduction for microphone
- Replies: 2
- Views: 14850
Re: Noise reduction for microphone
The sound quality is much more variable than the video. Specifically, it's hard to eliminate pops and crackles and keep the latency down to something acceptable. One possible reason for excessive latency is that TRVMicrophone uses TMemory streams for buffering. I've got about 30+ years of experience ...
- Wed May 20, 2020 7:55 am
- Forum: RVMedia
- Topic: Constant disconnects from the server
- Replies: 5
- Views: 21493
Re: Constant disconnects from the server
These tests are the demos.
- Mon May 18, 2020 12:27 pm
- Forum: RVMedia
- Topic: Constant disconnects from the server
- Replies: 5
- Views: 21493
Re: Constant disconnects from the server
I've seen disconnects. In one session one client (identical to the others but with a unique identity) refused to connect. Changing the audio or video settings on the sender can cause a disconnect if another client is listening. Inactivity will cause a disconnect - but I need to explore this further.