forked from wang-bin/QtAV
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- CUDA support for windows and linux. (The first player/library support CUDA decoding on linux?) - Renderering 16-bit YUV (for example Hi10P) for both OpenGL and OpenGL ES2. maybe it's the first player/library supports rendering 10-bit using OpenGL ES2. VLC, XBMC and mplayer can't Supported format: 9, 10, 12, 14, 16 bit, planar, little/big endian. - Support Sailfish OS. Works perfectly. - Fix mosaics for some videos since QtAV1.3.1 - Better seeking - New VideoOutput class with QObject features support - Improve cedarv hardware decoding. - Audio channel api for QML - FFmpeg build script supports maemo5, meego, sailfish, android, mingw gcc, msvc - Fix build error for Qt 5.0 - player: * fix wrong video display size when fullscreen mode changed or toolbar hidden
- Loading branch information
Showing
12 changed files
with
38 additions
and
19 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -63,6 +63,7 @@ Rectangle { | |
objectName: "player" | ||
//loops: MediaPlayer.Infinite | ||
//autoLoad: true | ||
channelLayout: MediaPlayer.ChannelLayoutAuto | ||
onPositionChanged: { | ||
control.setPlayingProgress(position/duration) | ||
} | ||
|
@@ -187,14 +188,14 @@ Rectangle { | |
onLinkActivated: Qt.openUrlExternally(link) | ||
} | ||
function helpText() { | ||
return "<h3>QMLPlayer based on QtAV 1.3.2 </h3>" | ||
return "<h3>QMLPlayer based on QtAV 1.3.3 </h3>" | ||
+ "<p>Distributed under the terms of LGPLv2.1 or later.</p>" | ||
+ "<p>Copyright (C) 2012-2014 Wang Bin (aka. Lucas Wang) <a href='mailto:[email protected]'>[email protected]</a></p>" | ||
+ "<p>Shanghai University->S3 Graphics, Shanghai, China</p>" | ||
+ "<p>Source code: <a href='https://github.com/wang-bin/QtAV'>https://github.com/wang-bin/QtAV</a></p>" | ||
+ "<p>Downloads: <a href='https://sourceforge.net/projects/qtav'>https://sourceforge.net/projects/qtav</a></p>" | ||
+ "<p>Web Site: <a href='http://wang-bin.github.io/QtAV'>http://wang-bin.github.io/QtAV</a></p>" | ||
+ "\n<h3>Command line:</h3>" | ||
+ "<p>QMLPlayer [-vd \"DXVA[;FFmpeg]\"] fileName</p>" | ||
+ "<p>QMLPlayer [-vd \"DXVA[;FFmpeg[;CUDA]]\"] fileName</p>" | ||
+ "\n<h3>Shortcut:</h3>" | ||
+ "<p>M: mute</p><p>F: fullscreen</p><p>Up/Down: volume +/-</p><p>Left/Right: Seek backward/forward | ||
</p><p>Space: pause/play</p><p>Q: quite</p>" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,10 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<Installer> | ||
<Name>QtAV</Name> | ||
<Version>1.3.2</Version> | ||
<Version>1.3.3</Version> | ||
<Title>QtAV Installer</Title> | ||
<Publisher>[email protected]</Publisher> | ||
<ProductUrl>https://github.com/wang-bin/QtAV</ProductUrl> | ||
<ProductUrl>http://wang-bin.github.io/QtAV</ProductUrl> | ||
<Logo></Logo> | ||
<Watermark></Watermark> | ||
<RunProgram></RunProgram> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters