Git Product home page Git Product logo

qtav's Introduction

QtAV is a media playing library based on Qt and FFmpeg. It can help you to write a player with less effort than ever before. Currently only a simple player is supplied. I will write a stylish one based on QtAV in the feature.

QtAV is free software licensed under the term of LGPL v2.1. If you use QtAV or its constituent libraries, you must adhere to the terms of the license in question.

Features

QtAV can meet your most demands

  • Seek, pause/resume
  • Video capture
  • OSD
  • Aspect ratio
  • Transform video using GraphicsItemRenderer. (rotate, shear, etc)
  • Playing frame by frame (currently support forward playing)
  • Variant streams: locale file, http, rtsp, etc.
  • Playing music (not perfect)
  • Volume control
  • Fullscreen, stay on top
  • Compatible: QtAV can be built with both Qt4 and Qt5. QtAV will support both FFmpeg and Libav.
  • Multiple render engine support. Currently supports QPainter, GDI+, Direct2D and OpenGL.

Extensible Framework (not finished)

QtAV currently uses FFmpeg to decode video, convert image and audio data, and uses PortAudio to play sound. Every part in QtAV is designed to be extensible. For example, you can write your audio output class using OpenAL, image converting class using cuda to get better performance etc. These features will be added in the feature by default.

For Developers

Requirements

  1. FFmpeg Latest version is recommanded.
    FFmpeg
  2. Qt 4 or 5
    Qt
  3. PortAudio v19
    PortAudio LogoPortAudio

The required development files for MinGW can be found in sourceforge page: depends

Build

For most platforms, just

qmake
make

It's recommend not to build in source dir.

cd your_build_dir
qmake QtAV_source_dir/QtAV.pro
make

qmake will run check the required libraries at the first time, so you must make sure those libraries can be found by compiler. Then qmake will create a cache file .qmake.cache in your build dir. Cache file stores the check results, for example, whether portaudio is available. If you want to recheck, delete .qmake.cache and run qmake again

If the above command failed to build it, try

cd your_build_dir

qmake QtAV_source_dir/QtAV.pro -r BUILD_DIR=your_build_dir

make

The binaries will be created in $BUILD_DIR/bin. If you are using QtCreator to build the project, you should go to Projects->Build Steps->qmake->Additional arguments, add "BUILD_DIR=your/buid/dir"

Build with MSVC

See the wiki Compile with MSVC

How To Write a Player

Wrtie a media player using QtAV is quite easy.

WidgetRenderer renderer;
renderer.show();
AVPlayer player;
player.setRenderer(&renderer);
player.play("test.avi");

For more detail to using QtAV, see the wiki Use QtAV In Your Project

Default Shortcuts

  • Ctrl+O: open a file
  • Space: pause/continue
  • F: fullscreen on/off
  • T: stays on top on/off
  • N: show next frame. Continue the playing by pressing "Space"
  • O: OSD
  • P: replay
  • Q/ESC: quit
  • S: stop
  • R: switch aspect ratio
  • M: mute on/off
  • Up / Down: volume + / -
  • -> / <-: seek forward / backward
  • Drag and drop a media file to player

The default behavior can be replaced by subclassing QObject and call void AVPlayer::setPlayerEventFilter(QObject *obj) (use null to disable).

TODO

  1. Component framework
  2. Subtitle
  3. Filters
  4. Hardware acceleration using DirectX, NVIDIA Cuda, ATI UVD, Intel IPP, OpenCL and OpenGL:
  • decoding: DXVA, XvBA, cuvid
  • image, audio and filters
  • rendering: DirectX, XV, OpenGL
  1. Stylish GUI based on Qt Graphics View Framework
  2. Document and SDK
  3. Other: play speed, better sync method and seeking, tests, playing statistics, etc.
  4. Region of interest support.
  5. More platform support. Maemo, Android, iOS, BB10 etc. Depends on Qt and FFmpeg for those platforms.
  6. Try to write decoders myself.

Screenshots

QtAV on Win8

Alt text

QtAV on Mac OS X

Alt text

IP camera using QtAV. OS: Fedora 18 (some developers from Italy http://www.selcomsrl.eu/)

Alt text

Rotate a video item

Alt text

Video Wall

Alt text

Copyright © Wang Bin [email protected]

Shanghai University, Shanghai, China

2013-01-21

qtav's People

Contributors

wang-bin avatar

Watchers

James Cloos avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.