├── .clang-format ├── .gitattributes ├── .github └── workflows │ └── msbuild.yml ├── .gitignore ├── .gitmodules ├── Anime4KCPPCore.vcxproj ├── Anime4KCPPCore.vcxproj.filters ├── Dlls └── Dlls.csproj ├── HttpDownload ├── HttpDownload.cpp ├── HttpDownload.vcxproj ├── HttpDownload.vcxproj.filters ├── ReadMe.txt ├── stdafx.cpp ├── stdafx.h └── targetver.h ├── LICENSE ├── Player.sln ├── Player ├── AsyncGetUrlUnderMouseCursor.cpp ├── AsyncGetUrlUnderMouseCursor.h ├── ByteStreamBuffer.h ├── D3DFONT.CPP ├── D3DFONT.H ├── DialogBarPlayerControl.cpp ├── DialogBarPlayerControl.h ├── DialogBarRange.cpp ├── DialogBarRange.h ├── DialogOpenURL.cpp ├── DialogOpenURL.h ├── EditTime.cpp ├── EditTime.h ├── FrameToHglobal.cpp ├── FrameToHglobal.h ├── GetClipboardText.h ├── HandleFilesSequence.cpp ├── HandleFilesSequence.h ├── I420Effect.cpp ├── I420Effect.h ├── I420Effect_PS.hlsl ├── IEraseableArea.h ├── ImageUpscale.cpp ├── ImageUpscale.h ├── MainFrm.cpp ├── MainFrm.h ├── MakeDelegate.h ├── MemoryMappedFile.h ├── OpenSubtitlesFile.cpp ├── OpenSubtitlesFile.h ├── Player.cpp ├── Player.h ├── Player.rc ├── Player.vcxproj ├── Player.vcxproj.filters ├── PlayerDoc.cpp ├── PlayerDoc.h ├── PlayerView.cpp ├── PlayerView.h ├── PlayerViewD2D.cpp ├── PlayerViewD2D.h ├── ReadMe.txt ├── SecondsToString.h ├── StringDifference.cpp ├── StringDifference.h ├── YouTuber.cpp ├── YouTuber.h ├── res │ ├── Player.ico │ ├── Player.rc2 │ ├── PlayerDoc.ico │ ├── Toolbar.bmp │ ├── audio.ico │ ├── audio_off.ico │ ├── full_screen.ico │ ├── launch.mkv │ ├── pause.ico │ └── play.ico ├── resource.h ├── stdafx.cpp ├── stdafx.h ├── targetver.h └── update_version.cmd ├── QtPlayer ├── .gitattributes ├── .gitignore ├── CMakeLists.txt ├── customdockwidget.cpp ├── customdockwidget.h ├── ffmpegdecoder.cpp ├── ffmpegdecoder.h ├── main.cpp ├── mainwindow.cpp ├── mainwindow.h ├── mainwindow.ui ├── mousehoverbutton.cpp ├── mousehoverbutton.h ├── opengldisplay.cpp ├── opengldisplay.h ├── portaudioplayer.cpp ├── portaudioplayer.h ├── resources │ ├── images │ │ ├── control │ │ │ ├── icodelete.png │ │ │ ├── icoplay.png │ │ │ ├── player___btn_globe___click___(31x31).png │ │ │ ├── player___btn_globe___default___(31x31).png │ │ │ ├── player___btn_globe___hover___(31x31).png │ │ │ ├── player___btn_pause___clicked___(40x31).png │ │ │ ├── player___btn_pause___default___(40x31).png │ │ │ ├── player___btn_pause___hover___(40x31).png │ │ │ ├── player___btn_play___clicked___(40x31).png │ │ │ ├── player___btn_play___default___(40x31).png │ │ │ ├── player___btn_play___hover___(40x31).png │ │ │ ├── player___btn_sound_off___clicked___(31x31).png │ │ │ ├── player___btn_sound_off___default___(31x31).png │ │ │ ├── player___btn_sound_off___hover___(31x31).png │ │ │ ├── player___btn_sound_on___clicked___(31x31).png │ │ │ ├── player___btn_sound_on___default___(31x31).png │ │ │ ├── player___btn_sound_on___hover___(31x31).png │ │ │ ├── player___btn_stop___clicked___(31x31).png │ │ │ ├── player___btn_stop___default___(31x31).png │ │ │ ├── player___btn_stop___hover___(31x31).png │ │ │ ├── player_bg___(230x41).png │ │ │ └── player_bg_fs___(230x41).png │ │ ├── help41.png │ │ ├── play_transparent.png │ │ ├── spinner.gif │ │ ├── style │ │ │ ├── box-shadow.png │ │ │ ├── busy.png │ │ │ ├── button-blank.png │ │ │ ├── button_disable.png │ │ │ ├── button_down.png │ │ │ ├── button_hover.png │ │ │ ├── button_normal.png │ │ │ ├── circle-shadow.png │ │ │ ├── down_arrow.png │ │ │ ├── down_arrow_grey.png │ │ │ ├── floatpanel.png │ │ │ ├── header_arrow_down.png │ │ │ ├── header_line.png │ │ │ ├── lineedit.png │ │ │ ├── progress_dropdown.png │ │ │ ├── scroll-button-down-hover.png │ │ │ ├── scroll-button-down.png │ │ │ ├── scroll-button-left-hover.png │ │ │ ├── scroll-button-left.png │ │ │ ├── scroll-button-right-hover.png │ │ │ ├── scroll-button-right.png │ │ │ ├── scroll-button-up-hover.png │ │ │ ├── scroll-button-up.png │ │ │ ├── scroll-hhandle-hover.png │ │ │ ├── scroll-hhandle.png │ │ │ ├── scroll-vhandle-hover.png │ │ │ ├── scroll-vhandle.png │ │ │ └── tooltip-background.png │ │ ├── triangle_down.png │ │ ├── triangle_right.png │ │ ├── video___btn_play___clicked___(94x94).png │ │ ├── video___btn_play___default___(94x94).png │ │ ├── video___btn_play___hover___(94x94).png │ │ └── video_seek_cursor.png │ ├── qt.conf │ ├── resources.qrc │ ├── style.css │ ├── win7.manifest │ └── winres.rc.in ├── videocontrol.cpp ├── videocontrol.h ├── videocontrol.ui ├── videodisplay.cpp ├── videodisplay.h ├── videoplayer.cpp ├── videoplayer.h ├── videoplayerwidget.cpp ├── videoplayerwidget.h ├── videoprogressbar.cpp ├── videoprogressbar.h ├── videowidget.cpp ├── videowidget.h ├── volumeprogressbar.cpp ├── volumeprogressbar.h ├── widgetdisplay.cpp └── widgetdisplay.h ├── README.md ├── Setup ├── Setup.vdproj └── python-embed-win32.7z ├── ThirdParty └── include │ ├── cmdline │ └── cmdline.hpp │ ├── ini17 │ └── ini17.hpp │ └── opencl │ └── CL │ └── opencl.hpp ├── ToUTF8 ├── ToUTF8.cpp ├── ToUTF8.vcxproj └── ToUTF8.vcxproj.filters ├── audio ├── AudioPitchDecorator.cpp ├── AudioPitchDecorator.h ├── AudioPlayerImpl.cpp ├── AudioPlayerImpl.h ├── AudioPlayerWasapi.cpp ├── AudioPlayerWasapi.h ├── ReadMe.txt ├── audio.vcxproj ├── audio.vcxproj.filters ├── smbPitchShift.cpp └── smbPitchShift.h ├── core └── ac_export.h ├── edit_git_subst_cfg.cmd ├── ffmpeg-3.3.3-experimental-patch ├── common.before.h ├── common.h ├── hevcdsp_template.before.c └── hevcdsp_template.c ├── ffmpeg-4.3.2-experimental-patch ├── common.before.h ├── common.h ├── hevcdsp_template.before.c └── hevcdsp_template.c ├── getYoutubeUrl.py ├── networking ├── ReadMe.txt ├── crypt.h ├── http_download.cpp ├── http_download.h ├── http_get.cpp ├── http_get.h ├── httpioapi.cpp ├── httprequest_h.h ├── httprequest_i.c ├── ioapi.h ├── networking.vcxproj ├── networking.vcxproj.filters ├── unzip.c └── unzip.h ├── remove_pytube.cmd ├── remove_youtube_transcript_api.cmd └── video ├── audioparserunnable.cpp ├── audioplayer.h ├── decoderinterface.h ├── decoderiocontext.cpp ├── decoderiocontext.h ├── displayrunnable.cpp ├── ffmpeg_dxva2.cpp ├── ffmpeg_dxva2.h ├── ffmpegdecoder.cpp ├── ffmpegdecoder.h ├── fqueue.h ├── interlockedadd.h ├── makeguard.h ├── parserunnable.cpp ├── subtitles.cpp ├── subtitles.h ├── video.vcxproj ├── video.vcxproj.filters ├── videoframe.h ├── videoparserunnable.cpp └── vqueue.h /.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliakseis/FFmpegPlayer/HEAD/.clang-format -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliakseis/FFmpegPlayer/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/workflows/msbuild.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliakseis/FFmpegPlayer/HEAD/.github/workflows/msbuild.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliakseis/FFmpegPlayer/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliakseis/FFmpegPlayer/HEAD/.gitmodules -------------------------------------------------------------------------------- /Anime4KCPPCore.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliakseis/FFmpegPlayer/HEAD/Anime4KCPPCore.vcxproj -------------------------------------------------------------------------------- /Anime4KCPPCore.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliakseis/FFmpegPlayer/HEAD/Anime4KCPPCore.vcxproj.filters -------------------------------------------------------------------------------- /Dlls/Dlls.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliakseis/FFmpegPlayer/HEAD/Dlls/Dlls.csproj -------------------------------------------------------------------------------- /HttpDownload/HttpDownload.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliakseis/FFmpegPlayer/HEAD/HttpDownload/HttpDownload.cpp -------------------------------------------------------------------------------- /HttpDownload/HttpDownload.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliakseis/FFmpegPlayer/HEAD/HttpDownload/HttpDownload.vcxproj -------------------------------------------------------------------------------- /HttpDownload/HttpDownload.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliakseis/FFmpegPlayer/HEAD/HttpDownload/HttpDownload.vcxproj.filters -------------------------------------------------------------------------------- /HttpDownload/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliakseis/FFmpegPlayer/HEAD/HttpDownload/ReadMe.txt -------------------------------------------------------------------------------- /HttpDownload/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliakseis/FFmpegPlayer/HEAD/HttpDownload/stdafx.cpp -------------------------------------------------------------------------------- /HttpDownload/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliakseis/FFmpegPlayer/HEAD/HttpDownload/stdafx.h -------------------------------------------------------------------------------- /HttpDownload/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliakseis/FFmpegPlayer/HEAD/HttpDownload/targetver.h -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliakseis/FFmpegPlayer/HEAD/LICENSE -------------------------------------------------------------------------------- /Player.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliakseis/FFmpegPlayer/HEAD/Player.sln -------------------------------------------------------------------------------- /Player/AsyncGetUrlUnderMouseCursor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliakseis/FFmpegPlayer/HEAD/Player/AsyncGetUrlUnderMouseCursor.cpp -------------------------------------------------------------------------------- /Player/AsyncGetUrlUnderMouseCursor.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | enum { WM_ON_ASYNC_URL = 1234 }; 4 | 5 | void AsyncGetUrlUnderMouseCursor(); 6 | -------------------------------------------------------------------------------- /Player/ByteStreamBuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliakseis/FFmpegPlayer/HEAD/Player/ByteStreamBuffer.h -------------------------------------------------------------------------------- /Player/D3DFONT.CPP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliakseis/FFmpegPlayer/HEAD/Player/D3DFONT.CPP -------------------------------------------------------------------------------- /Player/D3DFONT.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliakseis/FFmpegPlayer/HEAD/Player/D3DFONT.H -------------------------------------------------------------------------------- /Player/DialogBarPlayerControl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliakseis/FFmpegPlayer/HEAD/Player/DialogBarPlayerControl.cpp -------------------------------------------------------------------------------- /Player/DialogBarPlayerControl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliakseis/FFmpegPlayer/HEAD/Player/DialogBarPlayerControl.h -------------------------------------------------------------------------------- /Player/DialogBarRange.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliakseis/FFmpegPlayer/HEAD/Player/DialogBarRange.cpp -------------------------------------------------------------------------------- /Player/DialogBarRange.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliakseis/FFmpegPlayer/HEAD/Player/DialogBarRange.h -------------------------------------------------------------------------------- /Player/DialogOpenURL.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliakseis/FFmpegPlayer/HEAD/Player/DialogOpenURL.cpp -------------------------------------------------------------------------------- /Player/DialogOpenURL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliakseis/FFmpegPlayer/HEAD/Player/DialogOpenURL.h -------------------------------------------------------------------------------- /Player/EditTime.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliakseis/FFmpegPlayer/HEAD/Player/EditTime.cpp -------------------------------------------------------------------------------- /Player/EditTime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliakseis/FFmpegPlayer/HEAD/Player/EditTime.h -------------------------------------------------------------------------------- /Player/FrameToHglobal.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliakseis/FFmpegPlayer/HEAD/Player/FrameToHglobal.cpp -------------------------------------------------------------------------------- /Player/FrameToHglobal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliakseis/FFmpegPlayer/HEAD/Player/FrameToHglobal.h -------------------------------------------------------------------------------- /Player/GetClipboardText.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliakseis/FFmpegPlayer/HEAD/Player/GetClipboardText.h -------------------------------------------------------------------------------- /Player/HandleFilesSequence.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliakseis/FFmpegPlayer/HEAD/Player/HandleFilesSequence.cpp -------------------------------------------------------------------------------- /Player/HandleFilesSequence.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliakseis/FFmpegPlayer/HEAD/Player/HandleFilesSequence.h -------------------------------------------------------------------------------- /Player/I420Effect.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliakseis/FFmpegPlayer/HEAD/Player/I420Effect.cpp -------------------------------------------------------------------------------- /Player/I420Effect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliakseis/FFmpegPlayer/HEAD/Player/I420Effect.h -------------------------------------------------------------------------------- /Player/I420Effect_PS.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliakseis/FFmpegPlayer/HEAD/Player/I420Effect_PS.hlsl -------------------------------------------------------------------------------- /Player/IEraseableArea.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliakseis/FFmpegPlayer/HEAD/Player/IEraseableArea.h -------------------------------------------------------------------------------- /Player/ImageUpscale.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliakseis/FFmpegPlayer/HEAD/Player/ImageUpscale.cpp -------------------------------------------------------------------------------- /Player/ImageUpscale.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliakseis/FFmpegPlayer/HEAD/Player/ImageUpscale.h -------------------------------------------------------------------------------- /Player/MainFrm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliakseis/FFmpegPlayer/HEAD/Player/MainFrm.cpp -------------------------------------------------------------------------------- /Player/MainFrm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliakseis/FFmpegPlayer/HEAD/Player/MainFrm.h -------------------------------------------------------------------------------- /Player/MakeDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliakseis/FFmpegPlayer/HEAD/Player/MakeDelegate.h -------------------------------------------------------------------------------- /Player/MemoryMappedFile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliakseis/FFmpegPlayer/HEAD/Player/MemoryMappedFile.h -------------------------------------------------------------------------------- /Player/OpenSubtitlesFile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliakseis/FFmpegPlayer/HEAD/Player/OpenSubtitlesFile.cpp -------------------------------------------------------------------------------- /Player/OpenSubtitlesFile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliakseis/FFmpegPlayer/HEAD/Player/OpenSubtitlesFile.h -------------------------------------------------------------------------------- /Player/Player.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliakseis/FFmpegPlayer/HEAD/Player/Player.cpp -------------------------------------------------------------------------------- /Player/Player.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliakseis/FFmpegPlayer/HEAD/Player/Player.h -------------------------------------------------------------------------------- /Player/Player.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliakseis/FFmpegPlayer/HEAD/Player/Player.rc -------------------------------------------------------------------------------- /Player/Player.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliakseis/FFmpegPlayer/HEAD/Player/Player.vcxproj -------------------------------------------------------------------------------- /Player/Player.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliakseis/FFmpegPlayer/HEAD/Player/Player.vcxproj.filters -------------------------------------------------------------------------------- /Player/PlayerDoc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliakseis/FFmpegPlayer/HEAD/Player/PlayerDoc.cpp -------------------------------------------------------------------------------- /Player/PlayerDoc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliakseis/FFmpegPlayer/HEAD/Player/PlayerDoc.h -------------------------------------------------------------------------------- /Player/PlayerView.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliakseis/FFmpegPlayer/HEAD/Player/PlayerView.cpp -------------------------------------------------------------------------------- /Player/PlayerView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliakseis/FFmpegPlayer/HEAD/Player/PlayerView.h -------------------------------------------------------------------------------- /Player/PlayerViewD2D.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliakseis/FFmpegPlayer/HEAD/Player/PlayerViewD2D.cpp -------------------------------------------------------------------------------- /Player/PlayerViewD2D.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliakseis/FFmpegPlayer/HEAD/Player/PlayerViewD2D.h -------------------------------------------------------------------------------- /Player/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliakseis/FFmpegPlayer/HEAD/Player/ReadMe.txt -------------------------------------------------------------------------------- /Player/SecondsToString.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliakseis/FFmpegPlayer/HEAD/Player/SecondsToString.h -------------------------------------------------------------------------------- /Player/StringDifference.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliakseis/FFmpegPlayer/HEAD/Player/StringDifference.cpp -------------------------------------------------------------------------------- /Player/StringDifference.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliakseis/FFmpegPlayer/HEAD/Player/StringDifference.h -------------------------------------------------------------------------------- /Player/YouTuber.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliakseis/FFmpegPlayer/HEAD/Player/YouTuber.cpp -------------------------------------------------------------------------------- /Player/YouTuber.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliakseis/FFmpegPlayer/HEAD/Player/YouTuber.h -------------------------------------------------------------------------------- /Player/res/Player.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliakseis/FFmpegPlayer/HEAD/Player/res/Player.ico -------------------------------------------------------------------------------- /Player/res/Player.rc2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliakseis/FFmpegPlayer/HEAD/Player/res/Player.rc2 -------------------------------------------------------------------------------- /Player/res/PlayerDoc.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliakseis/FFmpegPlayer/HEAD/Player/res/PlayerDoc.ico -------------------------------------------------------------------------------- /Player/res/Toolbar.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliakseis/FFmpegPlayer/HEAD/Player/res/Toolbar.bmp -------------------------------------------------------------------------------- /Player/res/audio.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliakseis/FFmpegPlayer/HEAD/Player/res/audio.ico -------------------------------------------------------------------------------- /Player/res/audio_off.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliakseis/FFmpegPlayer/HEAD/Player/res/audio_off.ico -------------------------------------------------------------------------------- /Player/res/full_screen.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliakseis/FFmpegPlayer/HEAD/Player/res/full_screen.ico -------------------------------------------------------------------------------- /Player/res/launch.mkv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliakseis/FFmpegPlayer/HEAD/Player/res/launch.mkv -------------------------------------------------------------------------------- /Player/res/pause.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliakseis/FFmpegPlayer/HEAD/Player/res/pause.ico -------------------------------------------------------------------------------- /Player/res/play.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliakseis/FFmpegPlayer/HEAD/Player/res/play.ico -------------------------------------------------------------------------------- /Player/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliakseis/FFmpegPlayer/HEAD/Player/resource.h -------------------------------------------------------------------------------- /Player/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliakseis/FFmpegPlayer/HEAD/Player/stdafx.cpp -------------------------------------------------------------------------------- /Player/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliakseis/FFmpegPlayer/HEAD/Player/stdafx.h -------------------------------------------------------------------------------- /Player/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliakseis/FFmpegPlayer/HEAD/Player/targetver.h -------------------------------------------------------------------------------- /Player/update_version.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliakseis/FFmpegPlayer/HEAD/Player/update_version.cmd -------------------------------------------------------------------------------- /QtPlayer/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliakseis/FFmpegPlayer/HEAD/QtPlayer/.gitattributes -------------------------------------------------------------------------------- /QtPlayer/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliakseis/FFmpegPlayer/HEAD/QtPlayer/.gitignore -------------------------------------------------------------------------------- /QtPlayer/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliakseis/FFmpegPlayer/HEAD/QtPlayer/CMakeLists.txt -------------------------------------------------------------------------------- /QtPlayer/customdockwidget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliakseis/FFmpegPlayer/HEAD/QtPlayer/customdockwidget.cpp -------------------------------------------------------------------------------- /QtPlayer/customdockwidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliakseis/FFmpegPlayer/HEAD/QtPlayer/customdockwidget.h -------------------------------------------------------------------------------- /QtPlayer/ffmpegdecoder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliakseis/FFmpegPlayer/HEAD/QtPlayer/ffmpegdecoder.cpp -------------------------------------------------------------------------------- /QtPlayer/ffmpegdecoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliakseis/FFmpegPlayer/HEAD/QtPlayer/ffmpegdecoder.h -------------------------------------------------------------------------------- /QtPlayer/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliakseis/FFmpegPlayer/HEAD/QtPlayer/main.cpp -------------------------------------------------------------------------------- /QtPlayer/mainwindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliakseis/FFmpegPlayer/HEAD/QtPlayer/mainwindow.cpp -------------------------------------------------------------------------------- /QtPlayer/mainwindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliakseis/FFmpegPlayer/HEAD/QtPlayer/mainwindow.h -------------------------------------------------------------------------------- /QtPlayer/mainwindow.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliakseis/FFmpegPlayer/HEAD/QtPlayer/mainwindow.ui -------------------------------------------------------------------------------- /QtPlayer/mousehoverbutton.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliakseis/FFmpegPlayer/HEAD/QtPlayer/mousehoverbutton.cpp -------------------------------------------------------------------------------- /QtPlayer/mousehoverbutton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliakseis/FFmpegPlayer/HEAD/QtPlayer/mousehoverbutton.h -------------------------------------------------------------------------------- /QtPlayer/opengldisplay.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliakseis/FFmpegPlayer/HEAD/QtPlayer/opengldisplay.cpp -------------------------------------------------------------------------------- /QtPlayer/opengldisplay.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliakseis/FFmpegPlayer/HEAD/QtPlayer/opengldisplay.h -------------------------------------------------------------------------------- /QtPlayer/portaudioplayer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliakseis/FFmpegPlayer/HEAD/QtPlayer/portaudioplayer.cpp -------------------------------------------------------------------------------- /QtPlayer/portaudioplayer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliakseis/FFmpegPlayer/HEAD/QtPlayer/portaudioplayer.h -------------------------------------------------------------------------------- /QtPlayer/resources/images/control/icodelete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliakseis/FFmpegPlayer/HEAD/QtPlayer/resources/images/control/icodelete.png -------------------------------------------------------------------------------- /QtPlayer/resources/images/control/icoplay.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliakseis/FFmpegPlayer/HEAD/QtPlayer/resources/images/control/icoplay.png -------------------------------------------------------------------------------- /QtPlayer/resources/images/control/player___btn_globe___click___(31x31).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliakseis/FFmpegPlayer/HEAD/QtPlayer/resources/images/control/player___btn_globe___click___(31x31).png -------------------------------------------------------------------------------- /QtPlayer/resources/images/control/player___btn_globe___default___(31x31).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliakseis/FFmpegPlayer/HEAD/QtPlayer/resources/images/control/player___btn_globe___default___(31x31).png -------------------------------------------------------------------------------- /QtPlayer/resources/images/control/player___btn_globe___hover___(31x31).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliakseis/FFmpegPlayer/HEAD/QtPlayer/resources/images/control/player___btn_globe___hover___(31x31).png -------------------------------------------------------------------------------- /QtPlayer/resources/images/control/player___btn_pause___clicked___(40x31).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliakseis/FFmpegPlayer/HEAD/QtPlayer/resources/images/control/player___btn_pause___clicked___(40x31).png -------------------------------------------------------------------------------- /QtPlayer/resources/images/control/player___btn_pause___default___(40x31).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliakseis/FFmpegPlayer/HEAD/QtPlayer/resources/images/control/player___btn_pause___default___(40x31).png -------------------------------------------------------------------------------- /QtPlayer/resources/images/control/player___btn_pause___hover___(40x31).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliakseis/FFmpegPlayer/HEAD/QtPlayer/resources/images/control/player___btn_pause___hover___(40x31).png -------------------------------------------------------------------------------- /QtPlayer/resources/images/control/player___btn_play___clicked___(40x31).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliakseis/FFmpegPlayer/HEAD/QtPlayer/resources/images/control/player___btn_play___clicked___(40x31).png -------------------------------------------------------------------------------- /QtPlayer/resources/images/control/player___btn_play___default___(40x31).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliakseis/FFmpegPlayer/HEAD/QtPlayer/resources/images/control/player___btn_play___default___(40x31).png -------------------------------------------------------------------------------- /QtPlayer/resources/images/control/player___btn_play___hover___(40x31).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliakseis/FFmpegPlayer/HEAD/QtPlayer/resources/images/control/player___btn_play___hover___(40x31).png -------------------------------------------------------------------------------- /QtPlayer/resources/images/control/player___btn_sound_off___clicked___(31x31).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliakseis/FFmpegPlayer/HEAD/QtPlayer/resources/images/control/player___btn_sound_off___clicked___(31x31).png -------------------------------------------------------------------------------- /QtPlayer/resources/images/control/player___btn_sound_off___default___(31x31).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliakseis/FFmpegPlayer/HEAD/QtPlayer/resources/images/control/player___btn_sound_off___default___(31x31).png -------------------------------------------------------------------------------- /QtPlayer/resources/images/control/player___btn_sound_off___hover___(31x31).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliakseis/FFmpegPlayer/HEAD/QtPlayer/resources/images/control/player___btn_sound_off___hover___(31x31).png -------------------------------------------------------------------------------- /QtPlayer/resources/images/control/player___btn_sound_on___clicked___(31x31).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliakseis/FFmpegPlayer/HEAD/QtPlayer/resources/images/control/player___btn_sound_on___clicked___(31x31).png -------------------------------------------------------------------------------- /QtPlayer/resources/images/control/player___btn_sound_on___default___(31x31).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliakseis/FFmpegPlayer/HEAD/QtPlayer/resources/images/control/player___btn_sound_on___default___(31x31).png -------------------------------------------------------------------------------- /QtPlayer/resources/images/control/player___btn_sound_on___hover___(31x31).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliakseis/FFmpegPlayer/HEAD/QtPlayer/resources/images/control/player___btn_sound_on___hover___(31x31).png -------------------------------------------------------------------------------- /QtPlayer/resources/images/control/player___btn_stop___clicked___(31x31).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliakseis/FFmpegPlayer/HEAD/QtPlayer/resources/images/control/player___btn_stop___clicked___(31x31).png -------------------------------------------------------------------------------- /QtPlayer/resources/images/control/player___btn_stop___default___(31x31).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliakseis/FFmpegPlayer/HEAD/QtPlayer/resources/images/control/player___btn_stop___default___(31x31).png -------------------------------------------------------------------------------- /QtPlayer/resources/images/control/player___btn_stop___hover___(31x31).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliakseis/FFmpegPlayer/HEAD/QtPlayer/resources/images/control/player___btn_stop___hover___(31x31).png -------------------------------------------------------------------------------- /QtPlayer/resources/images/control/player_bg___(230x41).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliakseis/FFmpegPlayer/HEAD/QtPlayer/resources/images/control/player_bg___(230x41).png -------------------------------------------------------------------------------- /QtPlayer/resources/images/control/player_bg_fs___(230x41).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliakseis/FFmpegPlayer/HEAD/QtPlayer/resources/images/control/player_bg_fs___(230x41).png -------------------------------------------------------------------------------- /QtPlayer/resources/images/help41.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliakseis/FFmpegPlayer/HEAD/QtPlayer/resources/images/help41.png -------------------------------------------------------------------------------- /QtPlayer/resources/images/play_transparent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliakseis/FFmpegPlayer/HEAD/QtPlayer/resources/images/play_transparent.png -------------------------------------------------------------------------------- /QtPlayer/resources/images/spinner.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliakseis/FFmpegPlayer/HEAD/QtPlayer/resources/images/spinner.gif -------------------------------------------------------------------------------- /QtPlayer/resources/images/style/box-shadow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliakseis/FFmpegPlayer/HEAD/QtPlayer/resources/images/style/box-shadow.png -------------------------------------------------------------------------------- /QtPlayer/resources/images/style/busy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliakseis/FFmpegPlayer/HEAD/QtPlayer/resources/images/style/busy.png -------------------------------------------------------------------------------- /QtPlayer/resources/images/style/button-blank.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliakseis/FFmpegPlayer/HEAD/QtPlayer/resources/images/style/button-blank.png -------------------------------------------------------------------------------- /QtPlayer/resources/images/style/button_disable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliakseis/FFmpegPlayer/HEAD/QtPlayer/resources/images/style/button_disable.png -------------------------------------------------------------------------------- /QtPlayer/resources/images/style/button_down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliakseis/FFmpegPlayer/HEAD/QtPlayer/resources/images/style/button_down.png -------------------------------------------------------------------------------- /QtPlayer/resources/images/style/button_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliakseis/FFmpegPlayer/HEAD/QtPlayer/resources/images/style/button_hover.png -------------------------------------------------------------------------------- /QtPlayer/resources/images/style/button_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliakseis/FFmpegPlayer/HEAD/QtPlayer/resources/images/style/button_normal.png -------------------------------------------------------------------------------- /QtPlayer/resources/images/style/circle-shadow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliakseis/FFmpegPlayer/HEAD/QtPlayer/resources/images/style/circle-shadow.png -------------------------------------------------------------------------------- /QtPlayer/resources/images/style/down_arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliakseis/FFmpegPlayer/HEAD/QtPlayer/resources/images/style/down_arrow.png -------------------------------------------------------------------------------- /QtPlayer/resources/images/style/down_arrow_grey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliakseis/FFmpegPlayer/HEAD/QtPlayer/resources/images/style/down_arrow_grey.png -------------------------------------------------------------------------------- /QtPlayer/resources/images/style/floatpanel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliakseis/FFmpegPlayer/HEAD/QtPlayer/resources/images/style/floatpanel.png -------------------------------------------------------------------------------- /QtPlayer/resources/images/style/header_arrow_down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliakseis/FFmpegPlayer/HEAD/QtPlayer/resources/images/style/header_arrow_down.png -------------------------------------------------------------------------------- /QtPlayer/resources/images/style/header_line.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliakseis/FFmpegPlayer/HEAD/QtPlayer/resources/images/style/header_line.png -------------------------------------------------------------------------------- /QtPlayer/resources/images/style/lineedit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliakseis/FFmpegPlayer/HEAD/QtPlayer/resources/images/style/lineedit.png -------------------------------------------------------------------------------- /QtPlayer/resources/images/style/progress_dropdown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliakseis/FFmpegPlayer/HEAD/QtPlayer/resources/images/style/progress_dropdown.png -------------------------------------------------------------------------------- /QtPlayer/resources/images/style/scroll-button-down-hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliakseis/FFmpegPlayer/HEAD/QtPlayer/resources/images/style/scroll-button-down-hover.png -------------------------------------------------------------------------------- /QtPlayer/resources/images/style/scroll-button-down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliakseis/FFmpegPlayer/HEAD/QtPlayer/resources/images/style/scroll-button-down.png -------------------------------------------------------------------------------- /QtPlayer/resources/images/style/scroll-button-left-hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliakseis/FFmpegPlayer/HEAD/QtPlayer/resources/images/style/scroll-button-left-hover.png -------------------------------------------------------------------------------- /QtPlayer/resources/images/style/scroll-button-left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliakseis/FFmpegPlayer/HEAD/QtPlayer/resources/images/style/scroll-button-left.png -------------------------------------------------------------------------------- /QtPlayer/resources/images/style/scroll-button-right-hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliakseis/FFmpegPlayer/HEAD/QtPlayer/resources/images/style/scroll-button-right-hover.png -------------------------------------------------------------------------------- /QtPlayer/resources/images/style/scroll-button-right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliakseis/FFmpegPlayer/HEAD/QtPlayer/resources/images/style/scroll-button-right.png -------------------------------------------------------------------------------- /QtPlayer/resources/images/style/scroll-button-up-hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliakseis/FFmpegPlayer/HEAD/QtPlayer/resources/images/style/scroll-button-up-hover.png -------------------------------------------------------------------------------- /QtPlayer/resources/images/style/scroll-button-up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliakseis/FFmpegPlayer/HEAD/QtPlayer/resources/images/style/scroll-button-up.png -------------------------------------------------------------------------------- /QtPlayer/resources/images/style/scroll-hhandle-hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliakseis/FFmpegPlayer/HEAD/QtPlayer/resources/images/style/scroll-hhandle-hover.png -------------------------------------------------------------------------------- /QtPlayer/resources/images/style/scroll-hhandle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliakseis/FFmpegPlayer/HEAD/QtPlayer/resources/images/style/scroll-hhandle.png -------------------------------------------------------------------------------- /QtPlayer/resources/images/style/scroll-vhandle-hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliakseis/FFmpegPlayer/HEAD/QtPlayer/resources/images/style/scroll-vhandle-hover.png -------------------------------------------------------------------------------- /QtPlayer/resources/images/style/scroll-vhandle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliakseis/FFmpegPlayer/HEAD/QtPlayer/resources/images/style/scroll-vhandle.png -------------------------------------------------------------------------------- /QtPlayer/resources/images/style/tooltip-background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliakseis/FFmpegPlayer/HEAD/QtPlayer/resources/images/style/tooltip-background.png -------------------------------------------------------------------------------- /QtPlayer/resources/images/triangle_down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliakseis/FFmpegPlayer/HEAD/QtPlayer/resources/images/triangle_down.png -------------------------------------------------------------------------------- /QtPlayer/resources/images/triangle_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliakseis/FFmpegPlayer/HEAD/QtPlayer/resources/images/triangle_right.png -------------------------------------------------------------------------------- /QtPlayer/resources/images/video___btn_play___clicked___(94x94).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliakseis/FFmpegPlayer/HEAD/QtPlayer/resources/images/video___btn_play___clicked___(94x94).png -------------------------------------------------------------------------------- /QtPlayer/resources/images/video___btn_play___default___(94x94).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliakseis/FFmpegPlayer/HEAD/QtPlayer/resources/images/video___btn_play___default___(94x94).png -------------------------------------------------------------------------------- /QtPlayer/resources/images/video___btn_play___hover___(94x94).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliakseis/FFmpegPlayer/HEAD/QtPlayer/resources/images/video___btn_play___hover___(94x94).png -------------------------------------------------------------------------------- /QtPlayer/resources/images/video_seek_cursor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliakseis/FFmpegPlayer/HEAD/QtPlayer/resources/images/video_seek_cursor.png -------------------------------------------------------------------------------- /QtPlayer/resources/qt.conf: -------------------------------------------------------------------------------- 1 | [Paths] 2 | Plugins = . -------------------------------------------------------------------------------- /QtPlayer/resources/resources.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliakseis/FFmpegPlayer/HEAD/QtPlayer/resources/resources.qrc -------------------------------------------------------------------------------- /QtPlayer/resources/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliakseis/FFmpegPlayer/HEAD/QtPlayer/resources/style.css -------------------------------------------------------------------------------- /QtPlayer/resources/win7.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliakseis/FFmpegPlayer/HEAD/QtPlayer/resources/win7.manifest -------------------------------------------------------------------------------- /QtPlayer/resources/winres.rc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliakseis/FFmpegPlayer/HEAD/QtPlayer/resources/winres.rc.in -------------------------------------------------------------------------------- /QtPlayer/videocontrol.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliakseis/FFmpegPlayer/HEAD/QtPlayer/videocontrol.cpp -------------------------------------------------------------------------------- /QtPlayer/videocontrol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliakseis/FFmpegPlayer/HEAD/QtPlayer/videocontrol.h -------------------------------------------------------------------------------- /QtPlayer/videocontrol.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliakseis/FFmpegPlayer/HEAD/QtPlayer/videocontrol.ui -------------------------------------------------------------------------------- /QtPlayer/videodisplay.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliakseis/FFmpegPlayer/HEAD/QtPlayer/videodisplay.cpp -------------------------------------------------------------------------------- /QtPlayer/videodisplay.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliakseis/FFmpegPlayer/HEAD/QtPlayer/videodisplay.h -------------------------------------------------------------------------------- /QtPlayer/videoplayer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliakseis/FFmpegPlayer/HEAD/QtPlayer/videoplayer.cpp -------------------------------------------------------------------------------- /QtPlayer/videoplayer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliakseis/FFmpegPlayer/HEAD/QtPlayer/videoplayer.h -------------------------------------------------------------------------------- /QtPlayer/videoplayerwidget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliakseis/FFmpegPlayer/HEAD/QtPlayer/videoplayerwidget.cpp -------------------------------------------------------------------------------- /QtPlayer/videoplayerwidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliakseis/FFmpegPlayer/HEAD/QtPlayer/videoplayerwidget.h -------------------------------------------------------------------------------- /QtPlayer/videoprogressbar.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliakseis/FFmpegPlayer/HEAD/QtPlayer/videoprogressbar.cpp -------------------------------------------------------------------------------- /QtPlayer/videoprogressbar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliakseis/FFmpegPlayer/HEAD/QtPlayer/videoprogressbar.h -------------------------------------------------------------------------------- /QtPlayer/videowidget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliakseis/FFmpegPlayer/HEAD/QtPlayer/videowidget.cpp -------------------------------------------------------------------------------- /QtPlayer/videowidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliakseis/FFmpegPlayer/HEAD/QtPlayer/videowidget.h -------------------------------------------------------------------------------- /QtPlayer/volumeprogressbar.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliakseis/FFmpegPlayer/HEAD/QtPlayer/volumeprogressbar.cpp -------------------------------------------------------------------------------- /QtPlayer/volumeprogressbar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliakseis/FFmpegPlayer/HEAD/QtPlayer/volumeprogressbar.h -------------------------------------------------------------------------------- /QtPlayer/widgetdisplay.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliakseis/FFmpegPlayer/HEAD/QtPlayer/widgetdisplay.cpp -------------------------------------------------------------------------------- /QtPlayer/widgetdisplay.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliakseis/FFmpegPlayer/HEAD/QtPlayer/widgetdisplay.h -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliakseis/FFmpegPlayer/HEAD/README.md -------------------------------------------------------------------------------- /Setup/Setup.vdproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliakseis/FFmpegPlayer/HEAD/Setup/Setup.vdproj -------------------------------------------------------------------------------- /Setup/python-embed-win32.7z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliakseis/FFmpegPlayer/HEAD/Setup/python-embed-win32.7z -------------------------------------------------------------------------------- /ThirdParty/include/cmdline/cmdline.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliakseis/FFmpegPlayer/HEAD/ThirdParty/include/cmdline/cmdline.hpp -------------------------------------------------------------------------------- /ThirdParty/include/ini17/ini17.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliakseis/FFmpegPlayer/HEAD/ThirdParty/include/ini17/ini17.hpp -------------------------------------------------------------------------------- /ThirdParty/include/opencl/CL/opencl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliakseis/FFmpegPlayer/HEAD/ThirdParty/include/opencl/CL/opencl.hpp -------------------------------------------------------------------------------- /ToUTF8/ToUTF8.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliakseis/FFmpegPlayer/HEAD/ToUTF8/ToUTF8.cpp -------------------------------------------------------------------------------- /ToUTF8/ToUTF8.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliakseis/FFmpegPlayer/HEAD/ToUTF8/ToUTF8.vcxproj -------------------------------------------------------------------------------- /ToUTF8/ToUTF8.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliakseis/FFmpegPlayer/HEAD/ToUTF8/ToUTF8.vcxproj.filters -------------------------------------------------------------------------------- /audio/AudioPitchDecorator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliakseis/FFmpegPlayer/HEAD/audio/AudioPitchDecorator.cpp -------------------------------------------------------------------------------- /audio/AudioPitchDecorator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliakseis/FFmpegPlayer/HEAD/audio/AudioPitchDecorator.h -------------------------------------------------------------------------------- /audio/AudioPlayerImpl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliakseis/FFmpegPlayer/HEAD/audio/AudioPlayerImpl.cpp -------------------------------------------------------------------------------- /audio/AudioPlayerImpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliakseis/FFmpegPlayer/HEAD/audio/AudioPlayerImpl.h -------------------------------------------------------------------------------- /audio/AudioPlayerWasapi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliakseis/FFmpegPlayer/HEAD/audio/AudioPlayerWasapi.cpp -------------------------------------------------------------------------------- /audio/AudioPlayerWasapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliakseis/FFmpegPlayer/HEAD/audio/AudioPlayerWasapi.h -------------------------------------------------------------------------------- /audio/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliakseis/FFmpegPlayer/HEAD/audio/ReadMe.txt -------------------------------------------------------------------------------- /audio/audio.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliakseis/FFmpegPlayer/HEAD/audio/audio.vcxproj -------------------------------------------------------------------------------- /audio/audio.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliakseis/FFmpegPlayer/HEAD/audio/audio.vcxproj.filters -------------------------------------------------------------------------------- /audio/smbPitchShift.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliakseis/FFmpegPlayer/HEAD/audio/smbPitchShift.cpp -------------------------------------------------------------------------------- /audio/smbPitchShift.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliakseis/FFmpegPlayer/HEAD/audio/smbPitchShift.h -------------------------------------------------------------------------------- /core/ac_export.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliakseis/FFmpegPlayer/HEAD/core/ac_export.h -------------------------------------------------------------------------------- /edit_git_subst_cfg.cmd: -------------------------------------------------------------------------------- 1 | notepad.exe "%LOCALAPPDATA%\git-subst.cfg" 2 | -------------------------------------------------------------------------------- /ffmpeg-3.3.3-experimental-patch/common.before.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliakseis/FFmpegPlayer/HEAD/ffmpeg-3.3.3-experimental-patch/common.before.h -------------------------------------------------------------------------------- /ffmpeg-3.3.3-experimental-patch/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliakseis/FFmpegPlayer/HEAD/ffmpeg-3.3.3-experimental-patch/common.h -------------------------------------------------------------------------------- /ffmpeg-3.3.3-experimental-patch/hevcdsp_template.before.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliakseis/FFmpegPlayer/HEAD/ffmpeg-3.3.3-experimental-patch/hevcdsp_template.before.c -------------------------------------------------------------------------------- /ffmpeg-3.3.3-experimental-patch/hevcdsp_template.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliakseis/FFmpegPlayer/HEAD/ffmpeg-3.3.3-experimental-patch/hevcdsp_template.c -------------------------------------------------------------------------------- /ffmpeg-4.3.2-experimental-patch/common.before.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliakseis/FFmpegPlayer/HEAD/ffmpeg-4.3.2-experimental-patch/common.before.h -------------------------------------------------------------------------------- /ffmpeg-4.3.2-experimental-patch/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliakseis/FFmpegPlayer/HEAD/ffmpeg-4.3.2-experimental-patch/common.h -------------------------------------------------------------------------------- /ffmpeg-4.3.2-experimental-patch/hevcdsp_template.before.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliakseis/FFmpegPlayer/HEAD/ffmpeg-4.3.2-experimental-patch/hevcdsp_template.before.c -------------------------------------------------------------------------------- /ffmpeg-4.3.2-experimental-patch/hevcdsp_template.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliakseis/FFmpegPlayer/HEAD/ffmpeg-4.3.2-experimental-patch/hevcdsp_template.c -------------------------------------------------------------------------------- /getYoutubeUrl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliakseis/FFmpegPlayer/HEAD/getYoutubeUrl.py -------------------------------------------------------------------------------- /networking/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliakseis/FFmpegPlayer/HEAD/networking/ReadMe.txt -------------------------------------------------------------------------------- /networking/crypt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliakseis/FFmpegPlayer/HEAD/networking/crypt.h -------------------------------------------------------------------------------- /networking/http_download.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliakseis/FFmpegPlayer/HEAD/networking/http_download.cpp -------------------------------------------------------------------------------- /networking/http_download.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliakseis/FFmpegPlayer/HEAD/networking/http_download.h -------------------------------------------------------------------------------- /networking/http_get.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliakseis/FFmpegPlayer/HEAD/networking/http_get.cpp -------------------------------------------------------------------------------- /networking/http_get.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliakseis/FFmpegPlayer/HEAD/networking/http_get.h -------------------------------------------------------------------------------- /networking/httpioapi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliakseis/FFmpegPlayer/HEAD/networking/httpioapi.cpp -------------------------------------------------------------------------------- /networking/httprequest_h.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliakseis/FFmpegPlayer/HEAD/networking/httprequest_h.h -------------------------------------------------------------------------------- /networking/httprequest_i.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliakseis/FFmpegPlayer/HEAD/networking/httprequest_i.c -------------------------------------------------------------------------------- /networking/ioapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliakseis/FFmpegPlayer/HEAD/networking/ioapi.h -------------------------------------------------------------------------------- /networking/networking.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliakseis/FFmpegPlayer/HEAD/networking/networking.vcxproj -------------------------------------------------------------------------------- /networking/networking.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliakseis/FFmpegPlayer/HEAD/networking/networking.vcxproj.filters -------------------------------------------------------------------------------- /networking/unzip.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliakseis/FFmpegPlayer/HEAD/networking/unzip.c -------------------------------------------------------------------------------- /networking/unzip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliakseis/FFmpegPlayer/HEAD/networking/unzip.h -------------------------------------------------------------------------------- /remove_pytube.cmd: -------------------------------------------------------------------------------- 1 | RD "%LOCALAPPDATA%\pytube-master" /S /Q 2 | -------------------------------------------------------------------------------- /remove_youtube_transcript_api.cmd: -------------------------------------------------------------------------------- 1 | RD "%LOCALAPPDATA%\youtube-transcript-api-master" /S /Q 2 | -------------------------------------------------------------------------------- /video/audioparserunnable.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliakseis/FFmpegPlayer/HEAD/video/audioparserunnable.cpp -------------------------------------------------------------------------------- /video/audioplayer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliakseis/FFmpegPlayer/HEAD/video/audioplayer.h -------------------------------------------------------------------------------- /video/decoderinterface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliakseis/FFmpegPlayer/HEAD/video/decoderinterface.h -------------------------------------------------------------------------------- /video/decoderiocontext.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliakseis/FFmpegPlayer/HEAD/video/decoderiocontext.cpp -------------------------------------------------------------------------------- /video/decoderiocontext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliakseis/FFmpegPlayer/HEAD/video/decoderiocontext.h -------------------------------------------------------------------------------- /video/displayrunnable.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliakseis/FFmpegPlayer/HEAD/video/displayrunnable.cpp -------------------------------------------------------------------------------- /video/ffmpeg_dxva2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliakseis/FFmpegPlayer/HEAD/video/ffmpeg_dxva2.cpp -------------------------------------------------------------------------------- /video/ffmpeg_dxva2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliakseis/FFmpegPlayer/HEAD/video/ffmpeg_dxva2.h -------------------------------------------------------------------------------- /video/ffmpegdecoder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliakseis/FFmpegPlayer/HEAD/video/ffmpegdecoder.cpp -------------------------------------------------------------------------------- /video/ffmpegdecoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliakseis/FFmpegPlayer/HEAD/video/ffmpegdecoder.h -------------------------------------------------------------------------------- /video/fqueue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliakseis/FFmpegPlayer/HEAD/video/fqueue.h -------------------------------------------------------------------------------- /video/interlockedadd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliakseis/FFmpegPlayer/HEAD/video/interlockedadd.h -------------------------------------------------------------------------------- /video/makeguard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliakseis/FFmpegPlayer/HEAD/video/makeguard.h -------------------------------------------------------------------------------- /video/parserunnable.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliakseis/FFmpegPlayer/HEAD/video/parserunnable.cpp -------------------------------------------------------------------------------- /video/subtitles.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliakseis/FFmpegPlayer/HEAD/video/subtitles.cpp -------------------------------------------------------------------------------- /video/subtitles.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliakseis/FFmpegPlayer/HEAD/video/subtitles.h -------------------------------------------------------------------------------- /video/video.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliakseis/FFmpegPlayer/HEAD/video/video.vcxproj -------------------------------------------------------------------------------- /video/video.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliakseis/FFmpegPlayer/HEAD/video/video.vcxproj.filters -------------------------------------------------------------------------------- /video/videoframe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliakseis/FFmpegPlayer/HEAD/video/videoframe.h -------------------------------------------------------------------------------- /video/videoparserunnable.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliakseis/FFmpegPlayer/HEAD/video/videoparserunnable.cpp -------------------------------------------------------------------------------- /video/vqueue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliakseis/FFmpegPlayer/HEAD/video/vqueue.h --------------------------------------------------------------------------------