All Projects → developer0hye → Rtsp Client Ffmpeg Opencv On Qt

developer0hye / Rtsp Client Ffmpeg Opencv On Qt

RTSP Client Program using FFmpeg and OpenCV on Qt

Projects that are alternatives of or similar to Rtsp Client Ffmpeg Opencv On Qt

Spacextract
Extraction and analysis of telemetry from rocket launch webcasts (from SpaceX and RocketLab)
Stars: ✭ 131 (+322.58%)
Mutual labels:  opencv, ffmpeg
Real-Time-Video-Streaming
a real time streaming video application using RTSP
Stars: ✭ 15 (-51.61%)
Mutual labels:  rtsp, ffmpeg
Vidgear
A High-performance cross-platform Video Processing Python framework powerpacked with unique trailblazing features 🔥
Stars: ✭ 2,048 (+6506.45%)
Mutual labels:  opencv, ffmpeg
Ipcamera Cpython Interface
兼容主流海康和雄迈IPC的适用于C++和python的帧数据获取接口
Stars: ✭ 38 (+22.58%)
Mutual labels:  opencv, ffmpeg
Delphi Opencv
Project Delphi-OpenCV. Translation of OpenCV library header files in Delphi
Stars: ✭ 354 (+1041.94%)
Mutual labels:  opencv, ffmpeg
Dokai
Collection of Docker images for ML/DL and video processing projects
Stars: ✭ 58 (+87.1%)
Mutual labels:  opencv, ffmpeg
rtsp-samsung-tv
Display RTSP streams from IP Cameras on Samsung Smart TV (Tizen TV)
Stars: ✭ 40 (+29.03%)
Mutual labels:  rtsp, ffmpeg
Ffmpegandroid
android端基于FFmpeg实现音频剪切、拼接、转码、编解码;视频剪切、水印、截图、转码、编解码、转Gif动图;音视频合成与分离,配音;音视频解码、同步与播放;FFmpeg本地推流、H264与RTMP实时推流直播;FFmpeg滤镜:素描、色彩平衡、hue、lut、模糊、九宫格等;歌词解析与显示
Stars: ✭ 2,858 (+9119.35%)
Mutual labels:  ffmpeg, rtsp
Desktopsharing
桌面共享, 支持RTSP转发, RTSP推流, RTMP推流。
Stars: ✭ 337 (+987.1%)
Mutual labels:  ffmpeg, rtsp
Hplayer
A multi-screen player using Qt + FFmpeg.
Stars: ✭ 330 (+964.52%)
Mutual labels:  opencv, ffmpeg
Pyimagevideo
write animated GIF, multipage append TIFF, AVI OGV video in Python
Stars: ✭ 36 (+16.13%)
Mutual labels:  opencv, ffmpeg
Ffmpeg
Mirror of https://git.ffmpeg.org/ffmpeg.git
Stars: ✭ 27,382 (+88229.03%)
Mutual labels:  ffmpeg, rtsp
Video To Ascii
It is a simple python package to play videos in the terminal using characters as pixels
Stars: ✭ 960 (+2996.77%)
Mutual labels:  opencv, ffmpeg
Caption ocr tool
视频硬字幕提取工具
Stars: ✭ 98 (+216.13%)
Mutual labels:  opencv, ffmpeg
Fanplayer
A portable video player based on ffmpeg for windows and android platform.
Stars: ✭ 229 (+638.71%)
Mutual labels:  ffmpeg, rtsp
smart rtmpd
RTMP server, smart, compact, high performance(c, c++), high concurrency, easy to maintain, easy to deploy, (supports multiple operating systems Windows and Linux, ARM, FreeBSD)
Stars: ✭ 159 (+412.9%)
Mutual labels:  rtsp, ffmpeg
Rtp Streamer
rtp record and rtp streamer
Stars: ✭ 60 (+93.55%)
Mutual labels:  ffmpeg, rtsp
Videostreamer
Stream video (e.g. RTSP) to an HTML5 video element (MP4)
Stars: ✭ 208 (+570.97%)
Mutual labels:  ffmpeg, rtsp
Ffdynamic
Library with dynamic audio/video composition and runtime control
Stars: ✭ 274 (+783.87%)
Mutual labels:  opencv, ffmpeg
Javacv
Java interface to OpenCV, FFmpeg, and more
Stars: ✭ 5,543 (+17780.65%)
Mutual labels:  opencv, ffmpeg

RTSP-Client-FFMPEG-OpenCV-ON-QT

Prerequisite

Install libraries to use ffmpeg

sudo apt-get install libavcodec-dev
sudo apt-get install libavformat-dev
sudo apt-get install libavutil-dev
sudo apt-get install libswscale-dev
sudo apt-get install libswresample-dev
sudo apt-get install libavdevice-dev
sudo apt-get install libavfilter-dev

Install qtcreator

sudo apt-get install qtcreator

if you want to process only a image except a packet, you can easily process a image by using the below code.


#include <iostream>
#include <opencv2/opencv.hpp>

int main()
{
  cv::VideoCapture vc("your rtsp address");

  if(vc.isOpened())
  {
    cv::Mat src;

    while(vc.read(src))
    {
      cv::imshow("src",src);
      cv::waitKey(10);
    }
  }

  return 0;
}

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].