PlayerComponent.cpp 50 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514
  1. #include "PlayerComponent.h"
  2. #include <QString>
  3. #include <Qt>
  4. #include <QDir>
  5. #include <QCoreApplication>
  6. #include <QGuiApplication>
  7. #include "display/DisplayComponent.h"
  8. #include "settings/SettingsComponent.h"
  9. #include "system/SystemComponent.h"
  10. #include "utils/Utils.h"
  11. #include "utils/Log.h"
  12. #include "ComponentManager.h"
  13. #include "settings/SettingsSection.h"
  14. #include "PlayerQuickItem.h"
  15. #include "input/InputComponent.h"
  16. #include "QsLog.h"
  17. #include <math.h>
  18. #include <string.h>
  19. #include <shared/Paths.h>
  20. #if !defined(Q_OS_WIN)
  21. #include <unistd.h>
  22. #endif
  23. #ifdef TARGET_RPI
  24. #include <bcm_host.h>
  25. #include <interface/vmcs_host/vcgencmd.h>
  26. #endif
  27. ///////////////////////////////////////////////////////////////////////////////////////////////////
  28. static void wakeup_cb(void *context)
  29. {
  30. PlayerComponent *player = (PlayerComponent *)context;
  31. emit player->onMpvEvents();
  32. }
  33. ///////////////////////////////////////////////////////////////////////////////////////////////////
  34. PlayerComponent::PlayerComponent(QObject* parent)
  35. : ComponentBase(parent), m_state(State::finished), m_paused(false), m_playbackActive(false),
  36. m_windowVisible(false), m_videoPlaybackActive(false), m_inPlayback(false), m_playbackCanceled(false),
  37. m_bufferingPercentage(100), m_lastBufferingPercentage(-1),
  38. m_lastPositionUpdate(0.0), m_playbackAudioDelay(0),
  39. m_window(nullptr), m_mediaFrameRate(0),
  40. m_restoreDisplayTimer(this), m_reloadAudioTimer(this),
  41. m_streamSwitchImminent(false), m_doAc3Transcoding(false),
  42. m_videoRectangle(-1, -1, -1, -1)
  43. {
  44. qmlRegisterType<PlayerQuickItem>("Konvergo", 1, 0, "MpvVideo"); // deprecated name
  45. qmlRegisterType<PlayerQuickItem>("Konvergo", 1, 0, "KonvergoVideo");
  46. m_restoreDisplayTimer.setSingleShot(true);
  47. connect(&m_restoreDisplayTimer, &QTimer::timeout, this, &PlayerComponent::onRestoreDisplay);
  48. connect(&DisplayComponent::Get(), &DisplayComponent::refreshRateChanged, this, &PlayerComponent::onRefreshRateChange);
  49. m_reloadAudioTimer.setSingleShot(true);
  50. connect(&m_reloadAudioTimer, &QTimer::timeout, this, &PlayerComponent::updateAudioDevice);
  51. }
  52. /////////////////////////////////////////////////////////////////////////////////////////
  53. void PlayerComponent::componentPostInitialize()
  54. {
  55. InputComponent::Get().registerHostCommand("player", this, "userCommand");
  56. }
  57. ///////////////////////////////////////////////////////////////////////////////////////////////////
  58. PlayerComponent::~PlayerComponent()
  59. {
  60. if (m_mpv)
  61. mpv_set_wakeup_callback(m_mpv, nullptr, nullptr);
  62. }
  63. ///////////////////////////////////////////////////////////////////////////////////////////////////
  64. bool PlayerComponent::componentInitialize()
  65. {
  66. m_mpv = mpv::qt::Handle::FromRawHandle(mpv_create());
  67. if (!m_mpv)
  68. throw FatalException(tr("Failed to load mpv."));
  69. mpv_request_log_messages(m_mpv, "terminal-default");
  70. mpv::qt::set_property(m_mpv, "msg-level", "all=v");
  71. mpv::qt::set_property(m_mpv, "config", "yes");
  72. mpv::qt::set_property(m_mpv, "config-dir", Paths::dataDir());
  73. mpv_set_wakeup_callback(m_mpv, wakeup_cb, this);
  74. // Disable native OSD if mpv_command_string() is used.
  75. mpv::qt::set_property(m_mpv, "osd-level", "0");
  76. // This forces the player not to rebase playback time to 0 with mkv. We
  77. // require this, because mkv transcoding lets files start at times other
  78. // than 0, and web-client expects that we return these times unchanged.
  79. mpv::qt::set_property(m_mpv, "demuxer-mkv-probe-start-time", false);
  80. // Upstream mpv sets this to "auto", which disables probing for HLS (at least),
  81. // in order to speed up playback start. The situation is more complex in PMP
  82. // due to us wanting to use system codecs, so always enable this.
  83. mpv::qt::set_property(m_mpv, "demuxer-lavf-probe-info", true);
  84. // Just discard audio output if no audio device could be opened. This gives
  85. // us better flexibility how to react to such errors (instead of just
  86. // aborting playback immediately).
  87. mpv::qt::set_property(m_mpv, "audio-fallback-to-null", "yes");
  88. // Do not let the decoder downmix (better customization for us).
  89. mpv::qt::set_property(m_mpv, "ad-lavc-downmix", false);
  90. // Make it load the hwdec interop, so hwdec can be enabled at runtime.
  91. mpv::qt::set_property(m_mpv, "hwdec-preload", "auto");
  92. // User-visible application name used by some audio APIs (at least PulseAudio).
  93. mpv::qt::set_property(m_mpv, "audio-client-name", QCoreApplication::applicationName());
  94. // User-visible stream title used by some audio APIs (at least PulseAudio and wasapi).
  95. mpv::qt::set_property(m_mpv, "title", QCoreApplication::applicationName());
  96. mpv::qt::set_property(m_mpv, "tls-verify", "yes");
  97. #if !defined(Q_OS_WIN) && !defined(Q_OS_MAC)
  98. QList<QByteArray> list;
  99. list << "/etc/ssl/certs/ca-certificates.crt"
  100. << "/etc/pki/tls/certs/ca-bundle.crt"
  101. << "/usr/share/ssl/certs/ca-bundle.crt"
  102. << "/usr/local/share/certs/ca-root-nss.crt"
  103. << "/etc/ssl/cert.pem"
  104. << "/usr/share/curl/curl-ca-bundle.crt"
  105. << "/usr/local/share/curl/curl-ca-bundle.crt";
  106. bool success = false;
  107. for (auto path : list)
  108. {
  109. if (access(path.data(), R_OK) == 0) {
  110. mpv::qt::set_property(m_mpv, "tls-ca-file", path.data());
  111. success = true;
  112. break;
  113. }
  114. }
  115. if (!success)
  116. throw FatalException(tr("Failed to locate CA bundle."));
  117. #endif
  118. // Apply some low-memory settings on RPI, which is relatively memory-constrained.
  119. #ifdef TARGET_RPI
  120. // The backbuffer makes seeking back faster (without having to do a HTTP-level seek)
  121. mpv::qt::set_property(m_mpv, "cache-backbuffer", 10 * 1024); // KB
  122. // The demuxer queue is used for the readahead, and also for dealing with badly
  123. // interlaved audio/video. Setting it too low increases sensitivity to network
  124. // issues, and could cause playback failure with "bad" files.
  125. mpv::qt::set_property(m_mpv, "demuxer-max-bytes", 50 * 1024 * 1024); // bytes
  126. // Specifically for enabling mpeg4.
  127. mpv::qt::set_property(m_mpv, "hwdec-codecs", "all");
  128. // Do not use exact seeks by default. (This affects the start position in the "loadfile"
  129. // command in particular. We override the seek mode for normal "seek" commands.)
  130. mpv::qt::set_property(m_mpv, "hr-seek", "no");
  131. // Force vo_rpi to fullscreen.
  132. mpv::qt::set_property(m_mpv, "fullscreen", true);
  133. #endif
  134. if (mpv_initialize(m_mpv) < 0)
  135. throw FatalException(tr("Failed to initialize mpv."));
  136. mpv_observe_property(m_mpv, 0, "pause", MPV_FORMAT_FLAG);
  137. mpv_observe_property(m_mpv, 0, "core-idle", MPV_FORMAT_FLAG);
  138. mpv_observe_property(m_mpv, 0, "cache-buffering-state", MPV_FORMAT_INT64);
  139. mpv_observe_property(m_mpv, 0, "playback-time", MPV_FORMAT_DOUBLE);
  140. mpv_observe_property(m_mpv, 0, "vo-configured", MPV_FORMAT_FLAG);
  141. mpv_observe_property(m_mpv, 0, "duration", MPV_FORMAT_DOUBLE);
  142. mpv_observe_property(m_mpv, 0, "audio-device-list", MPV_FORMAT_NODE);
  143. mpv_observe_property(m_mpv, 0, "video-dec-params", MPV_FORMAT_NODE);
  144. // Setup a hook with the ID 1, which is run during the file is loaded.
  145. // Used to delay playback start for display framerate switching.
  146. // (See handler in handleMpvEvent() for details.)
  147. mpv::qt::command(m_mpv, QStringList() << "hook-add" << "on_load" << "1" << "0");
  148. // Setup a hook with the ID 2, which is run at a certain stage during loading.
  149. // We use it to initialize stream selections and to probe the codecs.
  150. mpv::qt::command(m_mpv, QStringList() << "hook-add" << "on_preloaded" << "2" << "0");
  151. updateAudioDeviceList();
  152. setAudioConfiguration();
  153. updateSubtitleSettings();
  154. updateVideoSettings();
  155. connect(SettingsComponent::Get().getSection(SETTINGS_SECTION_VIDEO), &SettingsSection::valuesUpdated,
  156. this, &PlayerComponent::updateVideoSettings);
  157. connect(SettingsComponent::Get().getSection(SETTINGS_SECTION_SUBTITLES), &SettingsSection::valuesUpdated,
  158. this, &PlayerComponent::updateSubtitleSettings);
  159. connect(SettingsComponent::Get().getSection(SETTINGS_SECTION_AUDIO), &SettingsSection::valuesUpdated,
  160. this, &PlayerComponent::setAudioConfiguration);
  161. initializeCodecSupport();
  162. Codecs::initCodecs();
  163. QString codecInfo;
  164. for (auto codec : Codecs::getCachedCodecList())
  165. {
  166. if (codec.present)
  167. {
  168. if (codecInfo.size())
  169. codecInfo += " ";
  170. codecInfo += codec.driver;
  171. if (codec.type == CodecType::Encoder)
  172. codecInfo += "(enc)";
  173. }
  174. }
  175. QLOG_INFO() << "Present codecs:" << qPrintable(codecInfo);
  176. connect(this, &PlayerComponent::onMpvEvents, this, &PlayerComponent::handleMpvEvents, Qt::QueuedConnection);
  177. emit onMpvEvents();
  178. return true;
  179. }
  180. ///////////////////////////////////////////////////////////////////////////////////////////////////
  181. void PlayerComponent::setVideoRectangle(int x, int y, int w, int h)
  182. {
  183. QRect rc(x, y, w, h);
  184. if (rc != m_videoRectangle)
  185. {
  186. m_videoRectangle = rc;
  187. emit onVideoRecangleChanged();
  188. }
  189. }
  190. ///////////////////////////////////////////////////////////////////////////////////////////////////
  191. void PlayerComponent::setQtQuickWindow(QQuickWindow* window)
  192. {
  193. PlayerQuickItem* video = window->findChild<PlayerQuickItem*>("video");
  194. if (!video)
  195. throw FatalException(tr("Failed to load video element."));
  196. video->initMpv(this);
  197. }
  198. ///////////////////////////////////////////////////////////////////////////////////////////////////
  199. void PlayerComponent::setWindow(QQuickWindow* window)
  200. {
  201. QString vo = "opengl-cb";
  202. #ifdef TARGET_RPI
  203. window->setFlags(Qt::FramelessWindowHint);
  204. vo = "rpi";
  205. #endif
  206. m_window = window;
  207. if (!window)
  208. return;
  209. QString forceVo = SettingsComponent::Get().value(SETTINGS_SECTION_VIDEO, "debug.force_vo").toString();
  210. if (forceVo.size())
  211. vo = forceVo;
  212. mpv::qt::set_property(m_mpv, "vo", vo);
  213. if (vo == "opengl-cb")
  214. setQtQuickWindow(window);
  215. }
  216. ///////////////////////////////////////////////////////////////////////////////////////////////////
  217. bool PlayerComponent::load(const QString& url, const QVariantMap& options, const QVariantMap &metadata, const QString& audioStream , const QString& subtitleStream)
  218. {
  219. stop();
  220. queueMedia(url, options, metadata, audioStream, subtitleStream);
  221. return true;
  222. }
  223. ///////////////////////////////////////////////////////////////////////////////////////////////////
  224. static QString ConvertPlexDirectURL(const QString& host)
  225. {
  226. if (!host.endsWith(".plex.direct"))
  227. return host;
  228. QString substr = host.left(host.indexOf('.'));
  229. substr.replace('-', '.');
  230. return substr;
  231. }
  232. ///////////////////////////////////////////////////////////////////////////////////////////////////
  233. void PlayerComponent::queueMedia(const QString& url, const QVariantMap& options, const QVariantMap &metadata, const QString& audioStream, const QString& subtitleStream)
  234. {
  235. InputComponent::Get().cancelAutoRepeat();
  236. m_mediaFrameRate = metadata["frameRate"].toFloat(); // returns 0 on failure
  237. m_serverMediaInfo = metadata["media"].toMap();
  238. updateVideoSettings();
  239. QUrl qurl = url;
  240. QString host = qurl.host();
  241. qurl.setHost(ConvertPlexDirectURL(host));
  242. QVariantList command;
  243. command << "loadfile" << qurl.toString();
  244. command << "append-play"; // if nothing is playing, play it now, otherwise just enqueue it
  245. QVariantMap extraArgs;
  246. quint64 startMilliseconds = options["startMilliseconds"].toLongLong();
  247. if (startMilliseconds != 0)
  248. extraArgs.insert("start", "+" + QString::number(startMilliseconds / 1000.0));
  249. // we're going to select these streams later, in the preloaded hook
  250. extraArgs.insert("aid", "no");
  251. extraArgs.insert("sid", "no");
  252. m_currentSubtitleStream = subtitleStream;
  253. m_currentAudioStream = audioStream;
  254. if (metadata["type"] == "music")
  255. extraArgs.insert("vid", "no");
  256. extraArgs.insert("pause", options["autoplay"].toBool() ? "no" : "yes");
  257. QString userAgent = metadata["headers"].toMap()["User-Agent"].toString();
  258. if (userAgent.size())
  259. extraArgs.insert("user-agent", userAgent);
  260. // Make sure the list of requested codecs is reset.
  261. extraArgs.insert("ad", "");
  262. extraArgs.insert("vd", "");
  263. extraArgs.insert("stream-lavf-o", "verifyhost=" + host);
  264. command << extraArgs;
  265. mpv::qt::command(m_mpv, command);
  266. }
  267. /////////////////////////////////////////////////////////////////////////////////////////
  268. void PlayerComponent::streamSwitch()
  269. {
  270. m_streamSwitchImminent = true;
  271. }
  272. ///////////////////////////////////////////////////////////////////////////////////////////////////
  273. bool PlayerComponent::switchDisplayFrameRate()
  274. {
  275. QLOG_DEBUG() << "Video framerate:" << m_mediaFrameRate << "fps";
  276. if (!SettingsComponent::Get().value(SETTINGS_SECTION_VIDEO, "refreshrate.auto_switch").toBool())
  277. {
  278. QLOG_DEBUG() << "Not switching refresh-rate (disabled by settings).";
  279. return false;
  280. }
  281. bool fs = SettingsComponent::Get().value(SETTINGS_SECTION_MAIN, "fullscreen").toBool();
  282. #if KONVERGO_OPENELEC
  283. fs = true;
  284. #endif
  285. if (!fs)
  286. {
  287. QLOG_DEBUG() << "Not switching refresh-rate (not in fullscreen mode).";
  288. return false;
  289. }
  290. if (m_mediaFrameRate < 1)
  291. {
  292. QLOG_DEBUG() << "Not switching refresh-rate (no known video framerate).";
  293. return false;
  294. }
  295. // Make sure a timer started by the previous file ending isn't accidentally
  296. // still in-flight. It could switch the display back after we've switched.
  297. m_restoreDisplayTimer.stop();
  298. DisplayComponent* display = &DisplayComponent::Get();
  299. if (!display->switchToBestVideoMode(m_mediaFrameRate))
  300. {
  301. QLOG_DEBUG() << "Switching refresh-rate failed or unnecessary.";
  302. return false;
  303. }
  304. // Make sure settings dependent on the display refresh rate are updated properly.
  305. updateVideoSettings();
  306. return true;
  307. }
  308. ///////////////////////////////////////////////////////////////////////////////////////////////////
  309. void PlayerComponent::onRestoreDisplay()
  310. {
  311. // If the player will in fact start another file (or is playing one), don't restore.
  312. if (mpv::qt::get_property(m_mpv, "idle-active").toBool())
  313. DisplayComponent::Get().restorePreviousVideoMode();
  314. }
  315. ///////////////////////////////////////////////////////////////////////////////////////////////////
  316. void PlayerComponent::onRefreshRateChange()
  317. {
  318. // Make sure settings dependent on the display refresh rate are updated properly.
  319. updateVideoSettings();
  320. }
  321. ///////////////////////////////////////////////////////////////////////////////////////////////////
  322. void PlayerComponent::updatePlaybackState()
  323. {
  324. State newState = m_state;
  325. if (m_inPlayback) {
  326. if (m_paused)
  327. {
  328. newState = State::paused;
  329. }
  330. else if (m_playbackActive)
  331. {
  332. newState = State::playing;
  333. }
  334. else
  335. {
  336. // Playback not active, but also not buffering means we're in some "other"
  337. // waiting state. Pretend to web-client that we're buffering.
  338. if (m_bufferingPercentage == 100)
  339. m_bufferingPercentage = 0;
  340. newState = State::buffering;
  341. }
  342. }
  343. else
  344. {
  345. if (!m_playbackError.isEmpty())
  346. newState = State::error;
  347. else if (m_playbackCanceled)
  348. newState = State::canceled;
  349. else
  350. newState = State::finished;
  351. }
  352. if (newState != m_state)
  353. {
  354. switch (newState) {
  355. case State::paused:
  356. QLOG_INFO() << "Entering state: paused";
  357. emit paused();
  358. break;
  359. case State::playing:
  360. QLOG_INFO() << "Entering state: playing";
  361. emit playing();
  362. break;
  363. case State::buffering:
  364. QLOG_INFO() << "Entering state: buffering";
  365. m_lastBufferingPercentage = -1; /* force update below */
  366. break;
  367. case State::finished:
  368. QLOG_INFO() << "Entering state: finished";
  369. emit finished();
  370. emit stopped();
  371. break;
  372. case State::canceled:
  373. QLOG_INFO() << "Entering state: canceled";
  374. emit canceled();
  375. emit stopped();
  376. break;
  377. case State::error:
  378. QLOG_INFO() << ("Entering state: error (" + m_playbackError + ")");
  379. emit error(m_playbackError);
  380. break;
  381. }
  382. emit stateChanged(newState, m_state);
  383. m_state = newState;
  384. }
  385. if (m_state == State::buffering && m_lastBufferingPercentage != m_bufferingPercentage)
  386. emit buffering(m_bufferingPercentage);
  387. m_lastBufferingPercentage = m_bufferingPercentage;
  388. bool is_videoPlaybackActive = m_state == State::playing && m_windowVisible;
  389. if (m_videoPlaybackActive != is_videoPlaybackActive)
  390. {
  391. m_videoPlaybackActive = is_videoPlaybackActive;
  392. emit videoPlaybackActive(m_videoPlaybackActive);
  393. }
  394. }
  395. ///////////////////////////////////////////////////////////////////////////////////////////////////
  396. void PlayerComponent::handleMpvEvent(mpv_event *event)
  397. {
  398. switch (event->event_id)
  399. {
  400. case MPV_EVENT_START_FILE:
  401. {
  402. m_inPlayback = true;
  403. break;
  404. }
  405. case MPV_EVENT_END_FILE:
  406. {
  407. mpv_event_end_file *endFile = (mpv_event_end_file *)event->data;
  408. m_inPlayback = false;
  409. m_playbackCanceled = false;
  410. m_playbackError = "";
  411. switch (endFile->reason)
  412. {
  413. case MPV_END_FILE_REASON_ERROR:
  414. {
  415. m_playbackError = mpv_error_string(endFile->error);
  416. break;
  417. }
  418. case MPV_END_FILE_REASON_STOP:
  419. {
  420. m_playbackCanceled = true;
  421. break;
  422. }
  423. }
  424. if (!m_streamSwitchImminent)
  425. m_restoreDisplayTimer.start(0);
  426. m_streamSwitchImminent = false;
  427. break;
  428. }
  429. case MPV_EVENT_PROPERTY_CHANGE:
  430. {
  431. mpv_event_property *prop = (mpv_event_property *)event->data;
  432. if (strcmp(prop->name, "pause") == 0 && prop->format == MPV_FORMAT_FLAG)
  433. {
  434. m_paused = !!*(int *)prop->data;
  435. }
  436. else if (strcmp(prop->name, "core-idle") == 0 && prop->format == MPV_FORMAT_FLAG)
  437. {
  438. m_playbackActive = !*(int *)prop->data;
  439. }
  440. else if (strcmp(prop->name, "cache-buffering-state") == 0)
  441. {
  442. m_bufferingPercentage = prop->format == MPV_FORMAT_INT64 ? *(int64_t *)prop->data : 100;
  443. }
  444. else if (strcmp(prop->name, "playback-time") == 0 && prop->format == MPV_FORMAT_DOUBLE)
  445. {
  446. double pos = *(double*)prop->data;
  447. if (fabs(pos - m_lastPositionUpdate) > 0.015)
  448. {
  449. quint64 ms = (quint64)(qMax(pos * 1000.0, 0.0));
  450. emit positionUpdate(ms);
  451. m_lastPositionUpdate = pos;
  452. }
  453. }
  454. else if (strcmp(prop->name, "vo-configured") == 0)
  455. {
  456. int state = prop->format == MPV_FORMAT_FLAG ? *(int *)prop->data : 0;
  457. m_windowVisible = state;
  458. emit windowVisible(m_windowVisible);
  459. }
  460. else if (strcmp(prop->name, "duration") == 0)
  461. {
  462. if (prop->format == MPV_FORMAT_DOUBLE)
  463. emit updateDuration(*(double *)prop->data * 1000.0);
  464. }
  465. else if (strcmp(prop->name, "audio-device-list") == 0)
  466. {
  467. updateAudioDeviceList();
  468. }
  469. else if (strcmp(prop->name, "video-dec-params") == 0)
  470. {
  471. // Aspect might be known now (or it changed during playback), so update settings
  472. // dependent on the aspect ratio.
  473. updateVideoAspectSettings();
  474. }
  475. break;
  476. }
  477. case MPV_EVENT_LOG_MESSAGE:
  478. {
  479. mpv_event_log_message *msg = (mpv_event_log_message *)event->data;
  480. // Strip the trailing '\n'
  481. size_t len = strlen(msg->text);
  482. if (len > 0 && msg->text[len - 1] == '\n')
  483. len -= 1;
  484. QString logline = QString::fromUtf8(msg->prefix) + ": " + QString::fromUtf8(msg->text, (int)len);
  485. if (msg->log_level >= MPV_LOG_LEVEL_V)
  486. QLOG_DEBUG() << qPrintable(logline);
  487. else if (msg->log_level >= MPV_LOG_LEVEL_INFO)
  488. QLOG_INFO() << qPrintable(logline);
  489. else if (msg->log_level >= MPV_LOG_LEVEL_WARN)
  490. QLOG_WARN() << qPrintable(logline);
  491. else
  492. QLOG_ERROR() << qPrintable(logline);
  493. break;
  494. }
  495. case MPV_EVENT_CLIENT_MESSAGE:
  496. {
  497. mpv_event_client_message *msg = (mpv_event_client_message *)event->data;
  498. if (msg->num_args < 3 || strcmp(msg->args[0], "hook_run") != 0)
  499. break;
  500. QString resumeId = QString::fromUtf8(msg->args[2]);
  501. // Start "on_load" hook.
  502. // This happens when the player is about to load the file, but no actual loading has taken part yet.
  503. // We use this to block loading until we explicitly tell it to continue.
  504. if (!strcmp(msg->args[1], "1"))
  505. {
  506. // Calling this lambda will instruct mpv to continue loading the file.
  507. auto resume = [=] {
  508. QLOG_INFO() << "checking codecs";
  509. startCodecsLoading([=] {
  510. QLOG_INFO() << "resuming loading";
  511. mpv::qt::command(m_mpv, QStringList() << "hook-ack" << resumeId);
  512. });
  513. };
  514. if (switchDisplayFrameRate())
  515. {
  516. // Now wait for some time for mode change - this is needed because mode changing can take some
  517. // time, during which the screen is black, and initializing hardware decoding could fail due
  518. // to various strange OS-related reasons.
  519. // (Better hope the user doesn't try to exit Konvergo during mode change.)
  520. int pause = SettingsComponent::Get().value(SETTINGS_SECTION_VIDEO, "refreshrate.delay").toInt() * 1000;
  521. QLOG_INFO() << "waiting" << pause << "msec after rate switch before loading";
  522. QTimer::singleShot(pause, resume);
  523. }
  524. else
  525. {
  526. resume();
  527. }
  528. break;
  529. }
  530. // Start "on_preloaded" hook.
  531. // Used initialize stream selections and to probe codecs.
  532. if (!strcmp(msg->args[1], "2"))
  533. {
  534. reselectStream(m_currentSubtitleStream, MediaType::Subtitle);
  535. reselectStream(m_currentAudioStream, MediaType::Audio);
  536. startCodecsLoading([=] {
  537. mpv::qt::command(m_mpv, QStringList() << "hook-ack" << resumeId);
  538. });
  539. break;
  540. }
  541. break;
  542. }
  543. default:; /* ignore */
  544. }
  545. }
  546. ///////////////////////////////////////////////////////////////////////////////////////////////////
  547. void PlayerComponent::handleMpvEvents()
  548. {
  549. // Process all events, until the event queue is empty.
  550. while (1)
  551. {
  552. mpv_event *event = mpv_wait_event(m_mpv, 0);
  553. if (event->event_id == MPV_EVENT_NONE)
  554. break;
  555. handleMpvEvent(event);
  556. }
  557. // Once we got all status updates, determine the new canonical state.
  558. updatePlaybackState();
  559. }
  560. ///////////////////////////////////////////////////////////////////////////////////////////////////
  561. void PlayerComponent::setVideoOnlyMode(bool enable)
  562. {
  563. if (m_window)
  564. {
  565. QQuickItem *web = m_window->findChild<QQuickItem *>("web");
  566. if (web)
  567. web->setVisible(!enable);
  568. }
  569. }
  570. ///////////////////////////////////////////////////////////////////////////////////////////////////
  571. void PlayerComponent::play()
  572. {
  573. QStringList args = (QStringList() << "set" << "pause" << "no");
  574. mpv::qt::command(m_mpv, args);
  575. }
  576. ///////////////////////////////////////////////////////////////////////////////////////////////////
  577. void PlayerComponent::stop()
  578. {
  579. QStringList args("stop");
  580. mpv::qt::command(m_mpv, args);
  581. }
  582. ///////////////////////////////////////////////////////////////////////////////////////////////////
  583. void PlayerComponent::clearQueue()
  584. {
  585. QStringList args("playlist_clear");
  586. mpv::qt::command(m_mpv, args);
  587. }
  588. ///////////////////////////////////////////////////////////////////////////////////////////////////
  589. void PlayerComponent::pause()
  590. {
  591. QStringList args = (QStringList() << "set" << "pause" << "yes");
  592. mpv::qt::command(m_mpv, args);
  593. }
  594. ///////////////////////////////////////////////////////////////////////////////////////////////////
  595. void PlayerComponent::seekTo(qint64 ms)
  596. {
  597. double timeSecs = ms / 1000.0;
  598. QVariantList args = (QVariantList() << "seek" << timeSecs << "absolute+exact");
  599. mpv::qt::command(m_mpv, args);
  600. }
  601. ///////////////////////////////////////////////////////////////////////////////////////////////////
  602. QVariant PlayerComponent::getAudioDeviceList()
  603. {
  604. return mpv::qt::get_property(m_mpv, "audio-device-list");
  605. }
  606. ///////////////////////////////////////////////////////////////////////////////////////////////////
  607. void PlayerComponent::setAudioDevice(const QString& name)
  608. {
  609. mpv::qt::set_property(m_mpv, "audio-device", name);
  610. }
  611. ///////////////////////////////////////////////////////////////////////////////////////////////////
  612. void PlayerComponent::setVolume(int volume)
  613. {
  614. // Will fail if no audio output opened (i.e. no file playing)
  615. mpv::qt::set_property(m_mpv, "volume", volume);
  616. }
  617. ///////////////////////////////////////////////////////////////////////////////////////////////////
  618. int PlayerComponent::volume()
  619. {
  620. QVariant volume = mpv::qt::get_property(m_mpv, "volume");
  621. if (volume.isValid())
  622. return volume.toInt();
  623. return 0;
  624. }
  625. ///////////////////////////////////////////////////////////////////////////////////////////////////
  626. void PlayerComponent::setMuted(bool muted)
  627. {
  628. // Will fail if no audio output opened (i.e. no file playing)
  629. mpv::qt::set_property(m_mpv, "mute", muted);
  630. }
  631. ///////////////////////////////////////////////////////////////////////////////////////////////////
  632. bool PlayerComponent::muted()
  633. {
  634. QVariant mute = mpv::qt::get_property(m_mpv, "mute");
  635. if (mute.isValid())
  636. return mute.toBool();
  637. return false;
  638. }
  639. ///////////////////////////////////////////////////////////////////////////////////////////////////
  640. QVariantList PlayerComponent::findStreamsForURL(const QString &url)
  641. {
  642. bool isExternal = !url.isEmpty();
  643. QVariantList res;
  644. auto tracks = mpv::qt::get_property(m_mpv, "track-list");
  645. for (auto track : tracks.toList())
  646. {
  647. QVariantMap map = track.toMap();
  648. if (map["external"].toBool() != isExternal)
  649. continue;
  650. if (!isExternal || map["external-filename"].toString() == url)
  651. res += map;
  652. }
  653. return res;
  654. }
  655. ///////////////////////////////////////////////////////////////////////////////////////////////////
  656. void PlayerComponent::reselectStream(const QString &streamSelection, MediaType target)
  657. {
  658. QString streamIdPropertyName;
  659. QString streamAddCommandName;
  660. QString mpvStreamTypeName;
  661. switch (target)
  662. {
  663. case MediaType::Subtitle:
  664. mpvStreamTypeName = "sub";
  665. streamIdPropertyName = "sid";
  666. streamAddCommandName = "sub-add";
  667. break;
  668. case MediaType::Audio:
  669. mpvStreamTypeName = "audio";
  670. streamIdPropertyName = "aid";
  671. streamAddCommandName = "audio-add";
  672. break;
  673. }
  674. QString streamName;
  675. QString streamID;
  676. if (streamSelection.startsWith("#"))
  677. {
  678. int splitPos = streamSelection.indexOf(",");
  679. if (splitPos < 0)
  680. {
  681. // Stream from the main file
  682. streamID = streamSelection.mid(1);
  683. streamName = "";
  684. }
  685. else
  686. {
  687. // Stream from an external file
  688. streamID = streamSelection.mid(1, splitPos - 1);
  689. streamName = streamSelection.mid(splitPos + 1);
  690. }
  691. }
  692. else if (!streamSelection.isEmpty())
  693. {
  694. if (target == MediaType::Audio)
  695. {
  696. // For some reason, audio stream selections never start with '#'.
  697. streamID = streamSelection;
  698. streamName = "";
  699. }
  700. else
  701. {
  702. // Legacy web-client single external subtitle
  703. streamID = "0";
  704. streamName = streamSelection;
  705. }
  706. }
  707. if (!streamName.isEmpty())
  708. {
  709. if (streamName.startsWith("https://")) {
  710. QUrl qurl = streamName;
  711. qurl.setHost(ConvertPlexDirectURL(qurl.host()));
  712. streamName = qurl.toString();
  713. }
  714. auto streams = findStreamsForURL(streamName);
  715. if (streams.isEmpty())
  716. {
  717. QStringList args = (QStringList() << streamAddCommandName << streamName);
  718. mpv::qt::command(m_mpv, args);
  719. }
  720. }
  721. QString selection = "no";
  722. for (auto stream : findStreamsForURL(streamName))
  723. {
  724. auto map = stream.toMap();
  725. if (map["type"].toString() != mpvStreamTypeName)
  726. continue;
  727. if (!streamID.isEmpty() && map["ff-index"].toString() == streamID)
  728. {
  729. selection = map["id"].toString();
  730. break;
  731. }
  732. }
  733. // Fallback to the first stream if none could be found.
  734. // Useful if web-client uses wrong stream IDs when e.g. transcoding.
  735. if ((target == MediaType::Audio || !streamID.isEmpty()) && selection == "no")
  736. selection = "1";
  737. mpv::qt::set_property(m_mpv, streamIdPropertyName, selection);
  738. }
  739. ///////////////////////////////////////////////////////////////////////////////////////////////////
  740. void PlayerComponent::setSubtitleStream(const QString &subtitleStream)
  741. {
  742. m_currentSubtitleStream = subtitleStream;
  743. reselectStream(m_currentSubtitleStream, MediaType::Subtitle);
  744. }
  745. ///////////////////////////////////////////////////////////////////////////////////////////////////
  746. void PlayerComponent::setAudioStream(const QString &audioStream)
  747. {
  748. m_currentAudioStream = audioStream;
  749. reselectStream(m_currentAudioStream, MediaType::Audio);
  750. }
  751. /////////////////////////////////////////////////////////////////////////////////////////
  752. void PlayerComponent::setAudioDelay(qint64 milliseconds)
  753. {
  754. m_playbackAudioDelay = milliseconds;
  755. double displayFps = DisplayComponent::Get().currentRefreshRate();
  756. const char *audioDelaySetting = "audio_delay.normal";
  757. if (fabs(displayFps - 24) < 0.5) // cover 24Hz, 23.976Hz, and values very close
  758. audioDelaySetting = "audio_delay.24hz";
  759. else if (fabs(displayFps - 25) < 0.5)
  760. audioDelaySetting = "audio_delay.25hz";
  761. else if (fabs(displayFps - 50) < 0.5)
  762. audioDelaySetting = "audio_delay.50hz";
  763. double fixedDelay = SettingsComponent::Get().value(SETTINGS_SECTION_VIDEO, audioDelaySetting).toFloat();
  764. mpv::qt::set_property(m_mpv, "audio-delay", (fixedDelay + m_playbackAudioDelay) / 1000.0);
  765. }
  766. /////////////////////////////////////////////////////////////////////////////////////////
  767. void PlayerComponent::setSubtitleDelay(qint64 milliseconds)
  768. {
  769. mpv::qt::set_property(m_mpv, "sub-delay", milliseconds / 1000.0);
  770. }
  771. ///////////////////////////////////////////////////////////////////////////////////////////////////
  772. // This is called with the set of previous audio devices that were detected, and the set of current
  773. // audio devices. From this we guess whether we should reopen the audio device. If the user-selected
  774. // device went away previously, and now comes back, reinitializing the player's audio output will
  775. // force the player and/or the OS to move audio output back to the user-selected device.
  776. void PlayerComponent::checkCurrentAudioDevice(const QSet<QString>& old_devs, const QSet<QString>& new_devs)
  777. {
  778. QString userDevice = SettingsComponent::Get().value(SETTINGS_SECTION_AUDIO, "device").toString();
  779. QSet<QString> removed = old_devs - new_devs;
  780. QSet<QString> added = new_devs - old_devs;
  781. QLOG_DEBUG() << "Audio devices removed:" << removed;
  782. QLOG_DEBUG() << "Audio devices added:" << added;
  783. QLOG_DEBUG() << "Audio device selected:" << userDevice;
  784. if (userDevice.length())
  785. {
  786. if (added.contains(userDevice) || removed.contains(userDevice))
  787. {
  788. // The timer is for debouncing the reload. Several change notifications could
  789. // come in quick succession. Also, it's possible that trying to open the
  790. // reappeared audio device immediately can fail.
  791. m_reloadAudioTimer.start(500);
  792. }
  793. }
  794. }
  795. ///////////////////////////////////////////////////////////////////////////////////////////////////
  796. void PlayerComponent::updateAudioDeviceList()
  797. {
  798. QString userDevice = SettingsComponent::Get().value(SETTINGS_SECTION_AUDIO, "device").toString();
  799. bool userDeviceFound = false;
  800. QVariantList settingList;
  801. QVariant list = getAudioDeviceList();
  802. QSet<QString> devices;
  803. for(const QVariant& d : list.toList())
  804. {
  805. Q_ASSERT(d.type() == QVariant::Map);
  806. QVariantMap dmap = d.toMap();
  807. QString device = dmap["name"].toString();
  808. QString description = dmap["description"].toString();
  809. devices.insert(device);
  810. if (userDevice == device)
  811. userDeviceFound = true;
  812. QVariantMap entry;
  813. entry["value"] = device;
  814. entry["title"] = description;
  815. settingList << entry;
  816. }
  817. if (!userDeviceFound)
  818. {
  819. QVariantMap entry;
  820. entry["value"] = userDevice;
  821. entry["title"] = "[Disconnected device: " + userDevice + "]";
  822. settingList << entry;
  823. }
  824. SettingsComponent::Get().updatePossibleValues(SETTINGS_SECTION_AUDIO, "device", settingList);
  825. checkCurrentAudioDevice(m_audioDevices, devices);
  826. m_audioDevices = devices;
  827. }
  828. ///////////////////////////////////////////////////////////////////////////////////////////////////
  829. void PlayerComponent::updateAudioDevice()
  830. {
  831. QString device = SettingsComponent::Get().value(SETTINGS_SECTION_AUDIO, "device").toString();
  832. if (!m_audioDevices.contains(device))
  833. {
  834. QLOG_WARN() << "Not using audio device" << device << "because it's not present.";
  835. device = "auto";
  836. }
  837. mpv::qt::set_property(m_mpv, "audio-device", device);
  838. }
  839. ///////////////////////////////////////////////////////////////////////////////////////////////////
  840. void PlayerComponent::setAudioConfiguration()
  841. {
  842. QString deviceType = SettingsComponent::Get().value(SETTINGS_SECTION_AUDIO, "devicetype").toString();
  843. mpv::qt::set_property(m_mpv, "audio-exclusive", SettingsComponent::Get().value(SETTINGS_SECTION_AUDIO, "exclusive").toBool());
  844. updateAudioDevice();
  845. QString resampleOpts = "";
  846. bool normalize = SettingsComponent::Get().value(SETTINGS_SECTION_AUDIO, "normalize").toBool();
  847. resampleOpts += QString(":normalize=") + (normalize ? "yes" : "no");
  848. // Make downmix more similar to PHT.
  849. resampleOpts += ":o=[surround_mix_level=1]";
  850. mpv::qt::set_property(m_mpv, "af-defaults", "lavrresample" + resampleOpts);
  851. m_passthroughCodecs.clear();
  852. // passthrough doesn't make sense with basic type
  853. if (deviceType != AUDIO_DEVICE_TYPE_BASIC)
  854. {
  855. SettingsSection* audioSection = SettingsComponent::Get().getSection(SETTINGS_SECTION_AUDIO);
  856. QStringList codecs;
  857. if (deviceType == AUDIO_DEVICE_TYPE_SPDIF)
  858. codecs = AudioCodecsSPDIF();
  859. else if (deviceType == AUDIO_DEVICE_TYPE_HDMI)
  860. codecs = AudioCodecsAll();
  861. for(const QString& key : codecs)
  862. {
  863. if (audioSection->value("passthrough." + key).toBool())
  864. m_passthroughCodecs << key;
  865. }
  866. // dts-hd includes dts, but listing dts before dts-hd may disable dts-hd.
  867. if (m_passthroughCodecs.indexOf("dts-hd") != -1)
  868. m_passthroughCodecs.removeAll("dts");
  869. }
  870. QString passthroughCodecs = m_passthroughCodecs.join(",");
  871. mpv::qt::set_property(m_mpv, "audio-spdif", passthroughCodecs);
  872. // set the channel layout
  873. QVariant layout = SettingsComponent::Get().value(SETTINGS_SECTION_AUDIO, "channels");
  874. // always force either stereo or transcoding
  875. if (deviceType == AUDIO_DEVICE_TYPE_SPDIF)
  876. layout = "2.0";
  877. mpv::qt::set_property(m_mpv, "audio-channels", layout);
  878. // if the user has indicated that PCM only works for stereo, and that
  879. // the receiver supports AC3, set this extra option that allows us to transcode
  880. // 5.1 audio into a usable format, note that we only support AC3
  881. // here for now. We might need to add support for DTS transcoding
  882. // if we see user requests for it.
  883. //
  884. m_doAc3Transcoding = false;
  885. if (deviceType == AUDIO_DEVICE_TYPE_SPDIF &&
  886. SettingsComponent::Get().value(SETTINGS_SECTION_AUDIO, "passthrough.ac3").toBool())
  887. {
  888. QString filterArgs = "";
  889. mpv::qt::command(m_mpv, QStringList() << "af" << "add" << ("@ac3:lavcac3enc" + filterArgs));
  890. m_doAc3Transcoding = true;
  891. }
  892. else
  893. {
  894. mpv::qt::command(m_mpv, QStringList() << "af" << "del" << "@ac3");
  895. }
  896. QVariant device = SettingsComponent::Get().value(SETTINGS_SECTION_AUDIO, "device");
  897. // Make a informational log message.
  898. QString audioConfig = QString(QString("Audio Config - device: %1, ") +
  899. "channel layout: %2, " +
  900. "passthrough codecs: %3, " +
  901. "ac3 transcoding: %4").arg(device.toString(),
  902. layout.toString(),
  903. passthroughCodecs.isEmpty() ? "none" : passthroughCodecs,
  904. m_doAc3Transcoding ? "yes" : "no");
  905. QLOG_INFO() << qPrintable(audioConfig);
  906. }
  907. ///////////////////////////////////////////////////////////////////////////////////////////////////
  908. void PlayerComponent::updateSubtitleSettings()
  909. {
  910. QVariant size = SettingsComponent::Get().value(SETTINGS_SECTION_SUBTITLES, "size");
  911. mpv::qt::set_property(m_mpv, "sub-text-font-size", size);
  912. QVariant colorsString = SettingsComponent::Get().value(SETTINGS_SECTION_SUBTITLES, "color");
  913. auto colors = colorsString.toString().split(",");
  914. if (colors.length() == 2)
  915. {
  916. mpv::qt::set_property(m_mpv, "sub-text-color", colors[0]);
  917. mpv::qt::set_property(m_mpv, "sub-text-border-color", colors[1]);
  918. }
  919. QVariant subposString = SettingsComponent::Get().value(SETTINGS_SECTION_SUBTITLES, "placement");
  920. auto subpos = subposString.toString().split(",");
  921. if (subpos.length() == 2)
  922. {
  923. mpv::qt::set_property(m_mpv, "sub-text-align-x", subpos[0]);
  924. mpv::qt::set_property(m_mpv, "sub-text-align-y", subpos[1]);
  925. }
  926. }
  927. ///////////////////////////////////////////////////////////////////////////////////////////////////
  928. void PlayerComponent::updateVideoAspectSettings()
  929. {
  930. QVariant mode = SettingsComponent::Get().value(SETTINGS_SECTION_VIDEO, "aspect").toString();
  931. bool disableScaling = false;
  932. bool keepAspect = true;
  933. QString forceAspect = "-1";
  934. double panScan = 0.0;
  935. if (mode == "custom")
  936. {
  937. // in particular, do not restore anything - the intention is not to touch the user's mpv.conf settings, or whatever
  938. return;
  939. }
  940. else if (mode == "zoom")
  941. {
  942. panScan = 1.0;
  943. }
  944. else if (mode == "force_4_3")
  945. {
  946. forceAspect = "4:3";
  947. }
  948. else if (mode == "force_16_9")
  949. {
  950. forceAspect = "16:9";
  951. }
  952. else if (mode == "force_16_9_if_4_3")
  953. {
  954. auto params = mpv::qt::get_property(m_mpv, "video-dec-params").toMap();
  955. auto aspect = params["aspect"].toFloat();
  956. if (fabs(aspect - 4.0/3.0) < 0.1)
  957. forceAspect = "16:9";
  958. }
  959. else if (mode == "stretch")
  960. {
  961. keepAspect = false;
  962. }
  963. else if (mode == "noscaling")
  964. {
  965. disableScaling = true;
  966. }
  967. mpv::qt::set_property(m_mpv, "video-unscaled", disableScaling);
  968. mpv::qt::set_property(m_mpv, "video-aspect", forceAspect);
  969. mpv::qt::set_property(m_mpv, "keepaspect", keepAspect);
  970. mpv::qt::set_property(m_mpv, "panscan", panScan);
  971. }
  972. ///////////////////////////////////////////////////////////////////////////////////////////////////
  973. void PlayerComponent::updateVideoSettings()
  974. {
  975. if (!m_mpv)
  976. return;
  977. QVariant syncMode = SettingsComponent::Get().value(SETTINGS_SECTION_VIDEO, "sync_mode");
  978. mpv::qt::set_property(m_mpv, "video-sync", syncMode);
  979. QString hardwareDecodingMode = SettingsComponent::Get().value(SETTINGS_SECTION_VIDEO, "hardwareDecoding").toString();
  980. QString hwdecMode = "no";
  981. QString hwdecVTFormat = "nv12";
  982. if (hardwareDecodingMode == "enabled")
  983. hwdecMode = "auto";
  984. else if (hardwareDecodingMode == "osx_compat")
  985. {
  986. hwdecMode = "auto";
  987. hwdecVTFormat = "uyvy422";
  988. }
  989. else if (hardwareDecodingMode == "copy")
  990. {
  991. hwdecMode = "auto-copy";
  992. }
  993. mpv::qt::set_property(m_mpv, "hwdec", hwdecMode);
  994. mpv::qt::set_property(m_mpv, "videotoolbox-format", hwdecVTFormat);
  995. QVariant deinterlace = SettingsComponent::Get().value(SETTINGS_SECTION_VIDEO, "deinterlace");
  996. mpv::qt::set_property(m_mpv, "deinterlace", deinterlace.toBool() ? "yes" : "no");
  997. #ifndef TARGET_RPI
  998. double displayFps = DisplayComponent::Get().currentRefreshRate();
  999. mpv::qt::set_property(m_mpv, "display-fps", displayFps);
  1000. #endif
  1001. setAudioDelay(m_playbackAudioDelay);
  1002. QVariant cache = SettingsComponent::Get().value(SETTINGS_SECTION_VIDEO, "cache");
  1003. mpv::qt::set_property(m_mpv, "cache", cache.toInt() * 1024);
  1004. updateVideoAspectSettings();
  1005. }
  1006. /////////////////////////////////////////////////////////////////////////////////////////
  1007. void PlayerComponent::userCommand(QString command)
  1008. {
  1009. QByteArray cmdUtf8 = command.toUtf8();
  1010. mpv_command_string(m_mpv, cmdUtf8.data());
  1011. }
  1012. /////////////////////////////////////////////////////////////////////////////////////////
  1013. void PlayerComponent::initializeCodecSupport()
  1014. {
  1015. QMap<QString, QString> all = { {"vc1", "WVC1"}, {"mpeg2video", "MPG2"} };
  1016. for (auto name : all.keys())
  1017. {
  1018. bool ok = true;
  1019. #ifdef TARGET_RPI
  1020. char res[100] = "";
  1021. bcm_host_init();
  1022. if (vc_gencmd(res, sizeof(res), "codec_enabled %s", all[name].toUtf8().data()))
  1023. res[0] = '\0'; // error
  1024. ok = !!strstr(res, "=enabled");
  1025. #endif
  1026. m_codecSupport[name] = ok;
  1027. QLOG_INFO() << "Codec" << name << (ok ? "present" : "disabled");
  1028. }
  1029. }
  1030. /////////////////////////////////////////////////////////////////////////////////////////
  1031. bool PlayerComponent::checkCodecSupport(const QString& codec)
  1032. {
  1033. if (m_codecSupport.contains(codec))
  1034. return m_codecSupport[codec];
  1035. return true; // doesn't matter if unknown codecs are reported as "ok"
  1036. }
  1037. /////////////////////////////////////////////////////////////////////////////////////////
  1038. QList<CodecDriver> convertCodecList(QVariant list, CodecType type)
  1039. {
  1040. QList<CodecDriver> codecs;
  1041. foreach (const QVariant& e, list.toList())
  1042. {
  1043. QVariantMap map = e.toMap();
  1044. QString family = map["family"].toString();
  1045. QString codec = map["codec"].toString();
  1046. QString driver = map["driver"].toString();
  1047. // Only include FFmpeg codecs; exclude pseudo-codecs like spdif.
  1048. if (family != "lavc")
  1049. continue;
  1050. CodecDriver ncodec = {};
  1051. ncodec.type = type;
  1052. ncodec.format = codec;
  1053. ncodec.driver = driver;
  1054. ncodec.present = true;
  1055. codecs.append(ncodec);
  1056. }
  1057. return codecs;
  1058. }
  1059. /////////////////////////////////////////////////////////////////////////////////////////
  1060. QList<CodecDriver> PlayerComponent::installedCodecDrivers()
  1061. {
  1062. QList<CodecDriver> codecs;
  1063. codecs.append(convertCodecList(mpv::qt::get_property(m_mpv, "decoder-list"), CodecType::Decoder));
  1064. codecs.append(convertCodecList(mpv::qt::get_property(m_mpv, "encoder-list"), CodecType::Encoder));
  1065. return codecs;
  1066. }
  1067. /////////////////////////////////////////////////////////////////////////////////////////
  1068. QStringList PlayerComponent::installedDecoderCodecs()
  1069. {
  1070. QStringList formats;
  1071. bool hasPcm = false;
  1072. for (auto driver : installedCodecDrivers())
  1073. {
  1074. if (driver.type == CodecType::Decoder && checkCodecSupport(driver.format))
  1075. {
  1076. QString name = Codecs::plexNameFromFF(driver.format);
  1077. if (name.startsWith("pcm_") && name != "pcm_bluray" && name != "pcm_dvd")
  1078. {
  1079. if (hasPcm)
  1080. continue;
  1081. hasPcm = true;
  1082. name = "pcm";
  1083. }
  1084. formats.append(name);
  1085. }
  1086. }
  1087. return formats;
  1088. }
  1089. /////////////////////////////////////////////////////////////////////////////////////////
  1090. PlaybackInfo PlayerComponent::getPlaybackInfo()
  1091. {
  1092. PlaybackInfo info = {};
  1093. for (auto codec : m_passthroughCodecs)
  1094. {
  1095. // Normalize back to canonical codec names.
  1096. if (codec == "dts-hd")
  1097. codec = "dts";
  1098. info.audioPassthroughCodecs.insert(codec);
  1099. }
  1100. info.enableAC3Transcoding = m_doAc3Transcoding;
  1101. auto tracks = mpv::qt::get_property(m_mpv, "track-list");
  1102. for (auto track : tracks.toList())
  1103. {
  1104. QVariantMap map = track.toMap();
  1105. QString type = map["type"].toString();
  1106. StreamInfo stream = {};
  1107. stream.isVideo = type == "video";
  1108. stream.isAudio = type == "audio";
  1109. stream.codec = map["codec"].toString();
  1110. stream.audioChannels = map["demux-channel-count"].toInt();
  1111. stream.audioSampleRate = map["demux-samplerate"].toInt();
  1112. stream.videoResolution = QSize(map["demux-w"].toInt(), map["demux-h"].toInt());
  1113. // Get the profile from the server, because mpv can't determine it yet.
  1114. if (stream.isVideo)
  1115. {
  1116. int index = map["ff-index"].toInt();
  1117. for (auto partInfo : m_serverMediaInfo["Part"].toList())
  1118. {
  1119. for (auto streamInfo : partInfo.toMap()["Stream"].toList())
  1120. {
  1121. auto streamInfoMap = streamInfo.toMap();
  1122. bool ok = false;
  1123. if (streamInfoMap["index"].toInt(&ok) == index && ok)
  1124. {
  1125. stream.profile = streamInfoMap["profile"].toString();
  1126. QLOG_DEBUG() << "h264profile:" << stream.profile;
  1127. }
  1128. }
  1129. }
  1130. }
  1131. info.streams.append(stream);
  1132. }
  1133. // If we're in an early stage where we don't have streams yet, try to get the
  1134. // info from the PMS metadata.
  1135. if (!info.streams.size())
  1136. {
  1137. for (auto partInfo : m_serverMediaInfo["Part"].toList())
  1138. {
  1139. for (auto streamInfo : partInfo.toMap()["Stream"].toList())
  1140. {
  1141. auto streamInfoMap = streamInfo.toMap();
  1142. StreamInfo stream = {};
  1143. stream.isVideo = streamInfoMap["width"].isValid();
  1144. stream.isAudio = streamInfoMap["channels"].isValid();
  1145. stream.codec = Codecs::plexNameToFF(streamInfoMap["codec"].toString());
  1146. stream.audioChannels = streamInfoMap["channels"].toInt();
  1147. stream.videoResolution = QSize(streamInfoMap["width"].toInt(), streamInfoMap["height"].toInt());
  1148. stream.profile = streamInfoMap["profile"].toString();
  1149. info.streams.append(stream);
  1150. }
  1151. }
  1152. }
  1153. return info;
  1154. }
  1155. /////////////////////////////////////////////////////////////////////////////////////////
  1156. void PlayerComponent::setPreferredCodecs(const QList<CodecDriver>& codecs)
  1157. {
  1158. QStringList items;
  1159. for (auto codec : codecs)
  1160. {
  1161. if (codec.type == CodecType::Decoder)
  1162. {
  1163. items << codec.driver;
  1164. }
  1165. }
  1166. QString opt = items.join(",");
  1167. // For simplicity, we don't distinguish between audio and video. The player
  1168. // will ignore entries with mismatching media type.
  1169. mpv::qt::set_property(m_mpv, "ad", opt);
  1170. mpv::qt::set_property(m_mpv, "vd", opt);
  1171. }
  1172. // For QVariant.
  1173. Q_DECLARE_METATYPE(std::function<void()>);
  1174. /////////////////////////////////////////////////////////////////////////////////////////
  1175. void PlayerComponent::startCodecsLoading(std::function<void()> resume)
  1176. {
  1177. auto fetcher = new CodecsFetcher();
  1178. fetcher->userData = QVariant::fromValue(resume);
  1179. connect(fetcher, &CodecsFetcher::done, this, &PlayerComponent::onCodecsLoadingDone);
  1180. Codecs::updateCachedCodecList();
  1181. QList<CodecDriver> codecs = Codecs::determineRequiredCodecs(getPlaybackInfo());
  1182. setPreferredCodecs(codecs);
  1183. fetcher->installCodecs(codecs);
  1184. }
  1185. /////////////////////////////////////////////////////////////////////////////////////////
  1186. void PlayerComponent::onCodecsLoadingDone(CodecsFetcher* sender)
  1187. {
  1188. sender->deleteLater();
  1189. sender->userData.value<std::function<void()>>()();
  1190. }
  1191. /////////////////////////////////////////////////////////////////////////////////////////
  1192. static QString get_mpv_osd(mpv_handle *ctx, const QString& property)
  1193. {
  1194. char *s = mpv_get_property_osd_string(ctx, property.toUtf8().data());
  1195. if (!s)
  1196. return "-";
  1197. QString r = QString::fromUtf8(s);
  1198. mpv_free(s);
  1199. if (r.size() > 400)
  1200. r = r.mid(0, 400) + "...";
  1201. Log::CensorAuthTokens(r);
  1202. return r;
  1203. }
  1204. #define MPV_PROPERTY(p) get_mpv_osd(m_mpv, p)
  1205. #define MPV_PROPERTY_BOOL(p) (mpv::qt::get_property(m_mpv, p).toBool())
  1206. /////////////////////////////////////////////////////////////////////////////////////////
  1207. void PlayerComponent::appendAudioFormat(QTextStream& info, const QString& property) const
  1208. {
  1209. // Guess if it's a passthrough format. Don't show the channel layout in this
  1210. // case, because it's confusing.
  1211. QString audioFormat = MPV_PROPERTY(property + "/format");
  1212. if (audioFormat.startsWith("spdif-"))
  1213. {
  1214. info << "passthrough (" << audioFormat.mid(6) << ")";
  1215. }
  1216. else
  1217. {
  1218. QString hr = MPV_PROPERTY(property + "/hr-channels");
  1219. QString full = MPV_PROPERTY(property + "/channels");
  1220. info << hr;
  1221. if (hr != full)
  1222. info << " (" << full << ")";
  1223. }
  1224. }
  1225. /////////////////////////////////////////////////////////////////////////////////////////
  1226. QString PlayerComponent::videoInformation() const
  1227. {
  1228. QString infoStr;
  1229. QTextStream info(&infoStr);
  1230. // check if video is playing
  1231. if (mpv::qt::get_property(m_mpv, "idle-active").toBool())
  1232. return "";
  1233. info << "File:" << endl;
  1234. info << "URL: " << MPV_PROPERTY("path") << endl;
  1235. info << "Container: " << MPV_PROPERTY("file-format") << endl;
  1236. info << "Native seeking: " << ((MPV_PROPERTY_BOOL("seekable") &&
  1237. !MPV_PROPERTY_BOOL("partially-seekable"))
  1238. ? "yes" : "no") << endl;
  1239. info << endl;
  1240. info << "Video:" << endl;
  1241. info << "Codec: " << MPV_PROPERTY("video-codec") << endl;
  1242. info << "Size: " << MPV_PROPERTY("video-params/dw") << "x"
  1243. << MPV_PROPERTY("video-params/dh") << endl;
  1244. info << "FPS (container): " << MPV_PROPERTY("container-fps") << endl;
  1245. info << "FPS (filters): " << MPV_PROPERTY("estimated-vf-fps") << endl;
  1246. info << "Aspect: " << MPV_PROPERTY("video-aspect") << endl;
  1247. info << "Bitrate: " << MPV_PROPERTY("video-bitrate") << endl;
  1248. double displayFps = DisplayComponent::Get().currentRefreshRate();
  1249. info << "Display FPS: " << MPV_PROPERTY("display-fps")
  1250. << " (" << displayFps << ")" << endl;
  1251. info << "Hardware Decoding: " << MPV_PROPERTY("hwdec-current")
  1252. << " (" << MPV_PROPERTY("hwdec-interop") << ")" << endl;
  1253. info << endl;
  1254. info << "Audio: " << endl;
  1255. info << "Codec: " << MPV_PROPERTY("audio-codec") << endl;
  1256. info << "Bitrate: " << MPV_PROPERTY("audio-bitrate") << endl;
  1257. info << "Channels: ";
  1258. appendAudioFormat(info, "audio-params");
  1259. info << " -> ";
  1260. appendAudioFormat(info, "audio-out-params");
  1261. info << endl;
  1262. info << "Output driver: " << MPV_PROPERTY("current-ao") << endl;
  1263. info << endl;
  1264. info << "Performance: " << endl;
  1265. info << "A/V: " << MPV_PROPERTY("avsync") << endl;
  1266. info << "Dropped frames: " << MPV_PROPERTY("vo-drop-frame-count") << endl;
  1267. bool dispSync = MPV_PROPERTY_BOOL("display-sync-active");
  1268. info << "Display Sync: ";
  1269. if (!dispSync)
  1270. {
  1271. info << "no" << endl;
  1272. }
  1273. else
  1274. {
  1275. info << "yes (ratio " << MPV_PROPERTY("vsync-ratio") << ")" << endl;
  1276. info << "Mistimed frames: " << MPV_PROPERTY("mistimed-frame-count")
  1277. << "/" << MPV_PROPERTY("vo-delayed-frame-count") << endl;
  1278. info << "Measured FPS: " << MPV_PROPERTY("estimated-display-fps")
  1279. << " (" << MPV_PROPERTY("vsync-jitter") << ")" << endl;
  1280. info << "V. speed corr.: " << MPV_PROPERTY("video-speed-correction") << endl;
  1281. info << "A. speed corr.: " << MPV_PROPERTY("audio-speed-correction") << endl;
  1282. }
  1283. info << endl;
  1284. info << "Cache:" << endl;
  1285. info << "Seconds: " << MPV_PROPERTY("demuxer-cache-duration") << endl;
  1286. info << "Extra readahead: " << MPV_PROPERTY("cache-used") << endl;
  1287. info << "Buffering: " << MPV_PROPERTY("cache-buffering-state") << endl;
  1288. info << "Speed: " << MPV_PROPERTY("cache-speed") << endl;
  1289. info << endl;
  1290. info << "Misc: " << endl;
  1291. info << "Time: " << MPV_PROPERTY("playback-time") << " / "
  1292. << MPV_PROPERTY("duration")
  1293. << " (" << MPV_PROPERTY("percent-pos") << "%)" << endl;
  1294. info << "State: " << (MPV_PROPERTY_BOOL("pause") ? "paused " : "")
  1295. << (MPV_PROPERTY_BOOL("paused-for-cache") ? "buffering " : "")
  1296. << (MPV_PROPERTY_BOOL("core-idle") ? "waiting " : "playing ")
  1297. << (MPV_PROPERTY_BOOL("seeking") ? "seeking " : "")
  1298. << endl;
  1299. info << flush;
  1300. return infoStr;
  1301. }