Skip to main content

Screen-recorder-ffmpeg-cpp - Personal project



The screen-recorder-ffmpeg-cpp project appears to be a relatively small and specialized project that is focused on providing a screen recording utility for Linux systems. It may not be as well-known or widely used as some other open-source projects on GitHub, but it could still be useful for users who are looking for a screen recording solution that works on Linux and uses the FFmpeg library.

watch the demo video https://youtu.be/a31bBY3HuxE

The screen-recorder-ffmpeg-cpp project is a screen recording utility that uses the FFmpeg library to record the screen of a computer running Linux. The project is written in C++ and uses the GTK+ toolkit to provide a command-line interface recording process.

The screen-recorder-ffmpeg-cpp utility allows users to record the entire screen or a specific window, and to choose the audio and video codecs to use for the recording. The utility also provides options for setting the frame rate and bitrate of the recorded video, as well as for choosing the file format of the output file (e.g., MP4, AVI, MKV).

The screen-recorder-ffmpeg-cpp project is open-source, which means that the source code is available for anyone to view, modify, and distribute. If you are interested in using the screen-recorder-ffmpeg-cpp utility, you can clone the project's repository from GitHub and build it from source, or you can download a pre-compiled binary from the project's releases page.

Github : https://github.com/abdullahfarwees/screen-recorder-ffmpeg-cpp

Comments

Popular posts from this blog

Video display in Imgui using C++ and ESCAPI

To create an application that can view the webcam using ImGUI, C++, and ESCAPI, you can follow these steps: Install the required libraries and tools: You will need to have the ImGUI, C++, and DirectX11 libraries and tools installed on your system in order to build the application. You may also need to install additional libraries or tools that are required to access the webcam and capture video frames, such as the Microsoft Media Foundation library or the OpenCV library. Set up the ImGUI interface: Use the ImGUI library to set up the user interface for the application. This will typically involve creating the layout for the application's window, as well as any necessary buttons, sliders, or other controls that will be used to interact with the webcam. Initialize the ESCAPI context: Use the ESCAPI library to create a context that will be used to grabbing the webcam video frames. This will typically involve setting up a creating a render target, and initializing any necessary reso...

Simple ways to add MOOV atom in mp4 file manually

The moov atom is a crucial part of an MP4 file, as it contains information about the layout and structure of the video and audio data in the file. The moov atom is typically located at the beginning of the file, so that it can be read and parsed by a media player as soon as the file is opened. There are a few different ways to add a MOOV atom to an MP4 file: Use a video editing or transcoding software: Many video editing and transcoding tools, such as Adobe Premiere, Final Cut Pro, and HandBrake, have the ability to add a moov atom to an MP4 file as part of the editing or transcoding process. Use a command-line tool: There are several command-line tools that can be used to add a moov atom to an MP4 file. For example, the MP4Box tool, which is part of the GPAC software suite, can be used to add a moov atom to an MP4 file by running a command like this: MP4Box -add input.mp4 output.mp4 Use a programmatic solution: If you want to add a moov atom to an MP4 file as part of a larger process ...

Saving the RTP streams from IP cameras or streaming servers - Only theory

  To receive RTP streams from an IP camera and save the feeds, you can follow these steps: Install the required libraries and tools: To receive RTP streams and save them to a file, you will need to have the appropriate libraries and tools installed on your system. In particular, you will need a library or tool that can receive RTP streams and decode the video and audio data, such as FFmpeg or GStreamer. You will also need a tool or library that can save the decoded video and audio data to a file, such as FFmpeg or libav. Connect to the IP camera: To receive RTP streams from the IP camera, you will need to know the IP address or hostname of the camera and the port number that the camera is using for the RTP stream. You can usually find this information in the documentation for the camera or by accessing the camera's configuration settings. Set up the RTP receiver: Once you have the IP address, port number, and other necessary information, you can use a library or tool such as FFm...