Trial version can be downloaded from https://www.trichview.com/download/
Full version: can be found in the protected section of the forum. This update is free for customers who ordered/renewed RVMedia in 2023-2024, and for customers with RVMedia subscription.
Main new features after the last released version (v10.3):
A reminder of other changes made after version 10.0:
See RVMedia version history: https://www.trichview.com/help-media/version_history.htm
In the trial version
Support of RAD Studio 12 Community Edition is added. Support of RAD Studio 11 Community Edition is removed.
New supported platforms: macOS 64-bit (Intel and ARM)
In the full version
New supported platforms: macOS 64-bit (Intel and ARM), Windows 64-bit modern
(“Windows 64-bit modern” was not added to the trial setup to prevent unnecessary growth in size; all features can be tested on the classic Windows 64-bit platform).
Compatibility
The trial was compiled using RAD Studio 12.2 (+ patch), so it does not include support of Linux platform for RAD Studio 12 (because this version does not have FMXLinux). The users of the full version of RVMedia and RAD Studio 12 can use Linux platform after downgrading to RAD Studio 12.1.
RVMedia 11 implements support of 64-bit OSX platform for FireMonkey.
Requirements
Features
All RVMedia features are supported, including:
Required permissions
The user must grant the application the following system permissions:
Only permissions for the features that are actually used are required.
The “Remote Control” demo also needs “Accessibility” access. RVMedia itself does not need this access, but this demo requires it to simulate mouse operations.
Without screen recording access, your application will receive screen images without windows of other applications.
Notes
RVMedia 11 has added support for FFmpeg 7. Now, all versions of FFmpeg from version 1 to version 7 are supported.
Remuxing, short for re-multiplexing, is a video processing technique that transfers the contents of a multimedia file or stream into a different file format without altering the original encoding settings. It preserves the audio and video as they are, simply re-wrapping them from one container format to another. This differs from recoding with the TRVCamRecorder component, which generates video files using specified video and audio formats along with custom settings.
In RVMedia, remuxing is only available for videos played via FFmpeg, while TRVCamRecorder works with all video sources.
A new property is added: TRVCamera.FFMpegProperty.Remuxing: TRVFFMpegrRemuxProperty.
It has sub-properties:
Unlike other properties of TRVCamera.FFMpegProperty, changing values of the remuxing properties does not restart video playback. You can enable or disable remuxing, or change the output file name, while the video is playing.
The output video file format is determined by the extension of the FileName.
Only the played video stream and, optionally, the audio stream (if TRVCamera.FFMpegProperty.Audio = True and TRVCamSound is linked to this TRVCamera) are saved.
Remuxing requires FFmpeg version 4 or newer.
Normally, TRVCamera uses FFmpeg to play videos from the specified file or URL. However, FFmpeg may include special video sources.
A new property is added: TRVCamera.FFMpegProperty.VideoInputFormat: String. If not empty, specifies the input format for video.
Available formats are listed by GetListOfVideoInputFormats function.
For example, on Windows, you can assign VideoFormat = ‘gdigrab’. After that, you can specify values like ‘desktop’ in URL or SourceFileName property (depending on the value of DeviceType property). Additional information: https://ffmpeg.org/ffmpeg-devices.html
Note: due to known problems, this feature is disabled for FFmpeg 6. It is available for FFmpeg 7 and older versions.
Audio captured from a microphone is usually highly noisy. Therefore, it is necessary to use software algorithms for noise suppression.
RVMedia has its own noise reduction algorithm, which was greatly improved in version 10.2. However, results are still far from perfect.
RVMedia 11 allows the use of RNNoise, which can deliver results close to perfect (although the outcome depends on the nature of the noise). RNNoise is a free cross-platform open-source noise suppression library based on a recurrent neural network.
RNNoise has no settings — it just works. I highly recommend setting the sample size to 16-bit when using a microphone (instead of the default 8-bit), as this significantly improves the quality of RNNoise’s output.
Information about RNNoise and how to use it in RVMedia: https://www.trichview.com/help-media/third_party_libraries.htm
By default, TRVMicrophone uses RNNoise if it is available (and noise reduction is not turned off). To switch to the built-in noise reduction, assign TRVMicrophone.UseRNNoise = False. Do it when the microphone is inactive (RNNoise and RVMedia’s noise reduction require different buffer size, so they cannot be switched on the fly)
RVMedia provides specialized support for cameras from Foscam, Axis, Panasonic, and D-Link (as well as cameras from other manufacturers using the same APIs). RVMedia 11 adds support for Mobotix MJPEG cameras. The supported camera models have video URL like */cgi-bin/faststream.jpg
Supported functions: pan and tilt, brightness.
The order of the OK and Cancel buttons has been changed in the Linux version of the webcam properties dialog (both Lazarus and FireMonkey) to match the order familiar to users of this operating system.
RVMedia can use desktop as a video source (when TRVCamera.DeviceType = rvdtDesktop).
For Windows and macOS, you can stream the whole desktop, the selected monitor, the specified area on the screen, or the area of the specified window.
The new function GetVisibleWindowsHandles returns a list of available window handles.
For each handle, you can get:
Note: on macOS, the application needs “screen recording” permission to record windows of other applications.
Using RVMedia, applications can send data to each other, including video, audio, commands, and files.
While there were no problems with a direct transfer (from TRVCamSender to TRVCamReceiver components), transferring large files (more than 100 Mb) via TRVMediaServer was slow and usually failed.
This problem is fixed in RVMedia 11, you can send large files (for example more than 1 GB).
New property: TRVCamReceiver.UseTempFiles.
Webcam video modes
New cross-platform DescribeVideoMode and DescribeVideoModePixelFormat functions.
They can be used to represent a list of video modes of local cameras to the user.
1. A list of public video cameras is updated.
2. FireMonkey version of WebCam demo uses DescribeVideoMode function.
3. MRVGUIDFuncs (or fmxMRVGUIDFuncs) unit is added to “uses” of demo projects that use RVMedia’s GUID functions (previously, these functions were defined in MRVType/fmxMRVType).
4. Deploying options are set for FireMonkey projects, for macOS platforms (for applications that need additional files)
How to test chat demos
Although the chat demo projects (Demos.FMX\ClientServer\) were designed to work on different computers, it can be useful to test them by running them on the same computer. Unfortunately, if you try to launch a second instance of a FireMonkey project for macOS, it will simply switch to the already running instance. As a result, you cannot run two instances of the same application.
However, you can create a copy of the application file to launch it. In most cases, though, such a copy will not function correctly unless you change the application’s identifier. To do this, open the package contents (this can be done in Finder), locate and edit the info.plist file, and modify the application identifier within it. Once this is done, you can launch the second instance (and additional instances if you repeat the renaming process).
We have released TRichView 23.2 and updates of related components The main new feature in…
RVMedia 11.1 has been released Main new features: UDP streaming with FFmpeg improved error handling…
We have released TRichView 23.1 and updates of related components The main new feature in…
We've released our installer program as freeware with source code:http://www.trichview.com/ideinstall/ It was updated to version…
We have released TRichView 23 and updates of related components This update is free for…