From ee18ce7f418ef89e89d79fe804550be9a4918780 Mon Sep 17 00:00:00 2001 From: Britney Fransen Date: Wed, 15 Mar 2023 17:30:14 -0400 Subject: mythtv: update and add some patches --- linhes/mythplugins/PKGBUILD | 4 +- ...ncy-by-moving-blocking-code-to-own-thread.patch | 71 + linhes/mythtv/0059-portchecker-speedup.patch | 27 + ...Add-interlaced-status-to-OSD-debug-screen.patch | 20 + linhes/mythtv/PKGBUILD | 16 +- .../mythtv/autoskip_reduce_commskip_jumpback.patch | 15 + .../mythtv/mythfrontend_en_us.ts_Title_Case.patch | 3348 ++++++++++++++++++-- 7 files changed, 3256 insertions(+), 245 deletions(-) create mode 100644 linhes/mythtv/0031-UPnP-Reduce-startup-latency-by-moving-blocking-code-to-own-thread.patch create mode 100644 linhes/mythtv/0059-portchecker-speedup.patch create mode 100644 linhes/mythtv/0227-OSD-Add-interlaced-status-to-OSD-debug-screen.patch create mode 100644 linhes/mythtv/autoskip_reduce_commskip_jumpback.patch diff --git a/linhes/mythplugins/PKGBUILD b/linhes/mythplugins/PKGBUILD index dca961f..0b4c53c 100644 --- a/linhes/mythplugins/PKGBUILD +++ b/linhes/mythplugins/PKGBUILD @@ -15,8 +15,8 @@ pkgname=('mythplugins-mytharchive' 'mythplugins-mythzoneminder') br=fixes/33 t="${br#*/}+${br%/[0-9][0-9]}" -pkgver=33+fixes.20230219.c273ed0f -pkgrel=2 +pkgver=33+fixes.20230313.7f288be6 +pkgrel=1 epoch=0 arch=('any') url="http://www.mythtv.org" diff --git a/linhes/mythtv/0031-UPnP-Reduce-startup-latency-by-moving-blocking-code-to-own-thread.patch b/linhes/mythtv/0031-UPnP-Reduce-startup-latency-by-moving-blocking-code-to-own-thread.patch new file mode 100644 index 0000000..288a243 --- /dev/null +++ b/linhes/mythtv/0031-UPnP-Reduce-startup-latency-by-moving-blocking-code-to-own-thread.patch @@ -0,0 +1,71 @@ +diff -Naur mythtv-master-20210518-gc8c226c9b4-old/mythtv/libs/libmythupnp/ssdp.cpp mythtv-master-20210518-gc8c226c9b4-new/mythtv/libs/libmythupnp/ssdp.cpp +--- mythtv-master-20210518-gc8c226c9b4-old/mythtv/libs/libmythupnp/ssdp.cpp 2021-05-18 16:11:31.379999938 +0200 ++++ mythtv-master-20210518-gc8c226c9b4-new/mythtv/libs/libmythupnp/ssdp.cpp 2021-05-18 16:11:34.569999938 +0200 +@@ -155,21 +155,21 @@ + // ------------------------------------------------------------------ + + LOG(VB_UPNP, LOG_INFO, +- "SSDP::EnableNotifications() - sending NTS_byebye"); +- m_pNotifyTask->SetNTS( NTS_byebye ); +- m_pNotifyTask->Execute( nullptr ); +- +- m_bAnnouncementsEnabled = true; ++ "SSDP::EnableNotifications() - sending NTS_byebye2"); ++ m_pNotifyTask->SetNTS( NTS_byebye2 ); ++ } ++ else ++ { ++ LOG(VB_UPNP, LOG_INFO, ++ "SSDP::EnableNotifications() - sending NTS_alive"); ++ m_pNotifyTask->SetNTS( NTS_alive ); + } + ++ m_bAnnouncementsEnabled = true; ++ + // ------------------------------------------------------------------ + // Add Announcement Task to the Queue + // ------------------------------------------------------------------ +- +- LOG(VB_UPNP, LOG_INFO, "SSDP::EnableNotifications() - sending NTS_alive"); +- +- m_pNotifyTask->SetNTS( NTS_alive ); +- + TaskQueue::Instance()->AddTask(m_pNotifyTask); + + LOG(VB_UPNP, LOG_INFO, +diff -Naur mythtv-master-20210518-gc8c226c9b4-old/mythtv/libs/libmythupnp/upnptasknotify.cpp mythtv-master-20210518-gc8c226c9b4-new/mythtv/libs/libmythupnp/upnptasknotify.cpp +--- mythtv-master-20210518-gc8c226c9b4-old/mythtv/libs/libmythupnp/upnptasknotify.cpp 2021-05-18 16:11:31.379999938 +0200 ++++ mythtv-master-20210518-gc8c226c9b4-new/mythtv/libs/libmythupnp/upnptasknotify.cpp 2021-05-18 16:11:34.586666605 +0200 +@@ -165,6 +167,11 @@ + + if (m_eNTS == NTS_alive) + pQueue->AddTask( (m_nMaxAge / 2), (Task *)this ); ++ else if (m_eNTS == NTS_byebye2) ++ { ++ m_eNTS = NTS_alive; ++ pQueue->AddTask( this ); ++ } + + m_mutex.unlock(); + +diff -Naur mythtv-master-20210518-gc8c226c9b4-old/mythtv/libs/libmythupnp/upnptasknotify.h mythtv-master-20210518-gc8c226c9b4-new/mythtv/libs/libmythupnp/upnptasknotify.h +--- mythtv-master-20210518-gc8c226c9b4-old/mythtv/libs/libmythupnp/upnptasknotify.h 2021-05-18 16:11:31.379999938 +0200 ++++ mythtv-master-20210518-gc8c226c9b4-new/mythtv/libs/libmythupnp/upnptasknotify.h 2021-05-18 16:11:34.586666605 +0200 +@@ -38,7 +38,8 @@ + enum UPnpNotifyNTS + { + NTS_alive = 0, +- NTS_byebye = 1 ++ NTS_byebye = 1, ++ NTS_byebye2 + }; + + ///////////////////////////////////////////////////////////////////////////// +@@ -89,6 +90,7 @@ + { + case NTS_alive : return( "ssdp:alive" ); + case NTS_byebye: return( "ssdp:byebye" ); ++ case NTS_byebye2: return( "ssdp:byebye" ); + } + return( "unknown" ); + } diff --git a/linhes/mythtv/0059-portchecker-speedup.patch b/linhes/mythtv/0059-portchecker-speedup.patch new file mode 100644 index 0000000..fba1abc --- /dev/null +++ b/linhes/mythtv/0059-portchecker-speedup.patch @@ -0,0 +1,27 @@ +diff -Naur mythtv-master-20210518-gc8c226c9b4-old/mythtv/libs/libmythbase/portchecker.cpp mythtv-master-20210518-gc8c226c9b4-new/mythtv/libs/libmythbase/portchecker.cpp +--- mythtv-master-20210518-gc8c226c9b4-old/mythtv/libs/libmythbase/portchecker.cpp 2021-05-18 16:11:42.736666605 +0200 ++++ mythtv-master-20210518-gc8c226c9b4-new/mythtv/libs/libmythbase/portchecker.cpp 2021-05-18 16:11:45.799999938 +0200 +@@ -180,18 +180,18 @@ + } + else + retryCount++; +- // This retry count of 6 means 3 seconds of waiting for ++ // This retry count of 30 means 3 seconds of waiting for + // connection before aborting and starting a new connection attempt. +- if (retryCount > 6) ++ if (retryCount > 30) + socket.abort(); + processEvents(); + // Check if user got impatient and canceled + if (m_cancelCheck) + break; +- std::this_thread::sleep_for(500ms); ++ std::this_thread::sleep_for(100ms); + state = socket.state(); +- LOG(VB_GENERAL, LOG_DEBUG, LOC + QString("socket state %1") +- .arg(state)); ++ LOG(VB_GENERAL, LOG_DEBUG, LOC + QString("host %1 port %2 socket state %3") ++ .arg(host).arg(port).arg(state)); + if (linkLocalOnly + && state == QAbstractSocket::UnconnectedState + && testedAll) diff --git a/linhes/mythtv/0227-OSD-Add-interlaced-status-to-OSD-debug-screen.patch b/linhes/mythtv/0227-OSD-Add-interlaced-status-to-OSD-debug-screen.patch new file mode 100644 index 0000000..4705b71 --- /dev/null +++ b/linhes/mythtv/0227-OSD-Add-interlaced-status-to-OSD-debug-screen.patch @@ -0,0 +1,20 @@ +diff -Naur mythtv-master-20210518-gc8c226c9b4-old/mythtv/libs/libmythtv/mythplayerui.cpp mythtv-master-20210518-gc8c226c9b4-new/mythtv/libs/libmythtv/mythplayerui.cpp +--- mythtv-master-20210518-gc8c226c9b4-old/mythtv/libs/libmythtv/mythplayerui.cpp 2021-05-18 16:13:11.066666603 +0200 ++++ mythtv-master-20210518-gc8c226c9b4-new/mythtv/libs/libmythtv/mythplayerui.cpp 2021-05-18 16:13:14.299999937 +0200 +@@ -821,14 +821,14 @@ + if (m_decoder) + Map["videocodecdesc"] = m_decoder->GetRawEncodingType(); + Map["videowidth"] = QString::number(width); +- Map["videoheight"] = QString::number(height); ++ bool interlaced = is_interlaced(GetScanType()); ++ Map["videoheight"] = QString::number(height) + (interlaced ? "i" : "p"); + Map["videoframerate"] = QString::number(m_videoFrameRate, 'f', 2); + Map["deinterlacer"] = GetDeinterlacerName(); + + if (width < 640) + return; + +- bool interlaced = is_interlaced(GetScanType()); + if (height > 2100) + Map["videodescrip"] = interlaced ? "UHD_4K_I" : "UHD_4K_P"; + else if (width == 1920 || height == 1080 || height == 1088) diff --git a/linhes/mythtv/PKGBUILD b/linhes/mythtv/PKGBUILD index a51a747..f3504ac 100644 --- a/linhes/mythtv/PKGBUILD +++ b/linhes/mythtv/PKGBUILD @@ -7,8 +7,8 @@ # Contributor: dorphell pkgname=mythtv -pkgver=33+fixes.20230219.c273ed0f -pkgrel=3 +pkgver=33+fixes.20230313.7f288be6 +pkgrel=2 pkgdesc="A Homebrew PVR project" arch=('x86_64') url="https://www.mythtv.org/" @@ -81,7 +81,11 @@ makedepends=( conflicts=('myththemes' 'mythplugins-mythvideo' 'mythtv-git') replaces=('myththemes' 'mythplugins-mythvideo' 'mythtv-git') -patches="defaultThemeLinHES.patch +patches="0031-UPnP-Reduce-startup-latency-by-moving-blocking-code-to-own-thread.patch + 0059-portchecker-speedup.patch + 0227-OSD-Add-interlaced-status-to-OSD-debug-screen.patch + autoskip_reduce_commskip_jumpback.patch + defaultThemeLinHES.patch mythfrontend_en_us.ts_Title_Case.patch" source=( @@ -101,8 +105,12 @@ sha256sums=('SKIP' '12cb52bf9b084a4f16419c9370fef0450ce6a11308b0c3f7240f4f83df7e2ab6' 'ecfd02bbbef5de9773f4de2c52e9b2b382ce8137735f249d7900270d304fd333' '470de0a4050c16c7af11a0e5cfe2810b7daae42df4acf5456c7eae274dc7c5ae' + '276f87058edc6197ab3a53faf6b4c485ef0d2b8447b9caa02ca7234f09ab473f' + '1ed4be912cd1ebd73553306958b7a2bc98e466b947dfb5d90ad7c0590a5a3747' + '630c80c588a9b278c4421d356c5cbaa0debf149524bc896656b580b89d8fae88' + '8a81e724d902976056dc824e7304df343c230ce67ec6ce1d18e110c5ef818ef6' 'ef1d0053d862a9c714093d375e20c96418d665fa504a5b8f30621a271d416dd8' - 'eb26e0cbf3ca3554479d19c383666721fbb5fe45c9dd24f2d36cbe29bcc0056f') + '6c6047d676635375f44fd219b989ed99602ed3260a8a5757195831dcc8a7c1bc') prepare() { msg2 "PKGBUILD pkgver: $pkgver" diff --git a/linhes/mythtv/autoskip_reduce_commskip_jumpback.patch b/linhes/mythtv/autoskip_reduce_commskip_jumpback.patch new file mode 100644 index 0000000..2c05a87 --- /dev/null +++ b/linhes/mythtv/autoskip_reduce_commskip_jumpback.patch @@ -0,0 +1,15 @@ +diff --git a/mythtv/libs/libmythtv/commbreakmap.cpp b/mythtv/libs/libmythtv/commbreakmap.cpp +index 66cacb1eb0..3afcea169c 100644 +--- a/mythtv/libs/libmythtv/commbreakmap.cpp ++++ b/mythtv/libs/libmythtv/commbreakmap.cpp +@@ -257,8 +257,8 @@ bool CommBreakMap::DoSkipCommercials(uint64_t &jumpToFrame, + { + comm_msg = tr("Skipping Back."); + +- if (m_lastCommSkipStart > (2.0 * video_frame_rate)) +- m_lastCommSkipStart -= (long long) (2.0 * video_frame_rate); ++ if (m_lastCommSkipStart > (1.25 * video_frame_rate)) ++ m_lastCommSkipStart -= (long long) (1.25 * video_frame_rate); + m_lastCommSkipDirection = 0; + m_lastCommSkipTime = time(nullptr); + jumpToFrame = m_lastCommSkipStart; diff --git a/linhes/mythtv/mythfrontend_en_us.ts_Title_Case.patch b/linhes/mythtv/mythfrontend_en_us.ts_Title_Case.patch index ea2a097..30b3e48 100644 --- a/linhes/mythtv/mythfrontend_en_us.ts_Title_Case.patch +++ b/linhes/mythtv/mythfrontend_en_us.ts_Title_Case.patch @@ -1,8 +1,372 @@ diff --git a/mythtv/i18n/mythfrontend_en_us.ts b/mythtv/i18n/mythfrontend_en_us.ts -index e4d869578b..a960c92743 100644 +index e4d869578b..bd5db011ef 100644 --- a/mythtv/i18n/mythfrontend_en_us.ts +++ b/mythtv/i18n/mythfrontend_en_us.ts -@@ -1071,17 +1071,17 @@ +@@ -46,19 +46,11 @@ + Sports + Sports + +- +- Other +- Other +- + + + Action + Action + +- +- Advertisement +- Advertisement +- + + + Animated +@@ -69,10 +61,6 @@ + Anthology + Anthology + +- +- Automobile +- Automobile +- + + + Awards +@@ -88,49 +76,17 @@ + Basketball + Basketball + +- +- Bulletin +- Bulletin +- +- +- Business +- Business +- +- +- Classical +- Classical +- +- +- College +- College +- +- +- Combat +- Combat +- + + + + Comedy + Comedy + +- +- Commentary +- Commentary +- +- +- Concert +- Concert +- + + + Consumer + Consumer + +- +- Contemporary +- Contemporary +- + + + Crime +@@ -153,14 +109,6 @@ + Drama + Drama + +- +- Elementary +- Elementary +- +- +- Erotica +- Erotica +- + + + Exercise +@@ -171,134 +119,58 @@ + Fantasy + Fantasy + +- +- Farm +- Farm +- + + + + Fashion + Fashion + +- +- Fiction +- Fiction +- +- +- Food +- Food +- + + + + Football + Football + +- +- Foreign +- Foreign +- + + + Fundraiser + Fundraiser + +- +- Game/Quiz +- Game/Quiz +- +- +- Garden +- Garden +- + + + Golf + Golf + +- +- Government +- Government +- + + + Health + Health + +- +- High School +- High School +- + + + History + History + +- +- Hobby +- Hobby +- + + + Hockey + Hockey + +- +- Home +- Home +- + + + Horror + Horror + +- +- Information +- Information +- +- +- Instruction +- Instruction +- +- +- International +- International +- + + + Interview + Interview + +- +- Language +- Language +- +- +- Legal +- Legal +- +- +- Live +- Live +- +- +- Local +- Local +- +- +- Math +- Math +- + + + Medical + Medical + +- +- Meeting +- Meeting +- + + + Military +@@ -319,64 +191,16 @@ + Mystery + Mystery + +- +- National +- National +- + + + Nature + Nature + +- +- Police +- Police +- + + + Politics + Politics + +- +- Premiere +- Premiere +- +- +- Prerecorded +- Prerecorded +- +- +- Product +- Product +- +- +- Professional +- Professional +- +- +- Public +- Public +- +- +- Racing +- Racing +- +- +- Reading +- Reading +- +- +- Repair +- Repair +- +- +- Repeat +- Repeat +- +- +- Review +- Review +- + + + +@@ -388,23 +212,11 @@ + Science + Science + +- +- Series +- Series +- +- +- Service +- Service +- + + + Shopping + Shopping + +- +- Soap Opera +- Soap Opera +- + + + Special +@@ -420,10 +232,6 @@ + Talk + Talk + +- +- Technical +- Technical +- + + + +@@ -440,10 +248,6 @@ + Variety + Variety + +- +- Video +- Video +- + + + Weather +@@ -1045,10 +849,6 @@ + Science Fiction/Fantasy/Horror + Science Fiction/Fantasy/Horror + +- +- Soap/melodrama/folkloric +- Soap/Melodrama/Folkloric +- + + + Serious/Classical/Religious/Historical Movie/Drama +@@ -1060,28 +860,20 @@ + Adult Movie + Adult + +- +- News/weather report +- News/Weather Report +- +- +- News magazine +- News Magazine +- Soap/Melodrama/Folkloric @@ -23,7 +387,7 @@ index e4d869578b..a960c92743 100644 -@@ -1271,12 +1271,12 @@ +@@ -1271,16 +1063,12 @@ Social/Political/Economics @@ -34,20 +398,42 @@ index e4d869578b..a960c92743 100644 Nature/Animals/Environment - +- +- +- Social/Policical/Economics +- Social/Policical/Economics + Nature/Animals/Environment - Social/Policical/Economics -@@ -1421,7 +1421,7 @@ + +@@ -1302,10 +1090,6 @@ + Education/Science/Factual + Education/Science/Factual + +- +- Nature/animals/Environment +- Nature/Animals/Environment +- + + + Technology/Natural Sciences +@@ -1414,14 +1198,10 @@ + DataDirect Time Offset + DataDirect Time Offset + +- +- Offset (in minutes) to apply to the program guide data during import. This can be used when the listings for a particular channel are in a different time zone. (Works for DataDirect listings only.) +- Offset (in minutes) to apply to the program guide data during import. This can be used when the listings for a particular channel are in a different time zone. (Works for DataDirect listings only.) +- Offset (in minutes) to apply to the program guide data during import. This can be used when the listings for a particular channel are in a different time zone. - -+ ++ Offset (in minutes) to apply to the program guide data during import. This can be used when the listings for a particular channel are in a different time zone. -@@ -1471,17 +1471,17 @@ +@@ -1471,21 +1251,17 @@ Service ID @@ -58,17 +444,43 @@ index e4d869578b..a960c92743 100644 If set to Always Visible or Visible, the channel will be visible in the EPG. Set to Always Visible or Never Visible to prevent MythTV and other utilities from automatically managing the value for this channel. - -+ ++ If set to Always Visible or Visible, the channel will be visible in the EPG. Set to Always Visible or Never Visible to prevent MythTV and other utilities from automatically managing the value for this channel. N.B. This setting is only used for analog channels. Depending on the tuner type, specify either the exact frequency (in kHz) or a valid channel number that will be understood by your tuners. - -+ +- +- +- ServiceID +- Service ID ++ N.B. This setting is only used for analog channels. Depending on the tuner type, specify either the exact frequency (in kHz) or a valid channel number that will be understood by your tuners. + + + +@@ -1507,10 +1283,6 @@ + Visible + Visible + +- +- If enabled, the channel will be visible in the EPG. +- If enabled, the channel will be visible in the EPG. +- + + + Use on air guide +@@ -1526,10 +1298,6 @@ + Freq/Channel + Frequency/Channel +- +- Depending on the tuner type, specify either the exact frequency (in kHz) or a valid channel number that will be understood by your tuners. +- Depending on the tuner type, specify either the exact frequency (in kHz) or a valid channel number that will be understood by your tuners. +- - ServiceID -@@ -1590,7 +1590,7 @@ + + Finetune (kHz) +@@ -1590,7 +1358,7 @@ OK All @@ -77,7 +489,7 @@ index e4d869578b..a960c92743 100644 -@@ -1693,7 +1693,7 @@ +@@ -1693,7 +1461,7 @@ It is NOT a good idea to change this value as it only changes the sourceid in table channel but not in dtv_multiplex. The sourceid in dtv_multiplex cannot and should not be changed. @@ -86,7 +498,7 @@ index e4d869578b..a960c92743 100644 -@@ -1715,22 +1715,22 @@ +@@ -1715,22 +1483,22 @@ Always Visible @@ -113,7 +525,30 @@ index e4d869578b..a960c92743 100644 -@@ -2039,8 +2039,8 @@ +@@ -1820,22 +1588,6 @@ + Off + Off + +- +- Qt +- Qt +- +- +- OpenGL 2 +- OpenGL 2 +- +- +- OpenGL 1 +- OpenGL 1 +- +- +- Direct3D +- Direct3D +- + + + MythFrontend +@@ -2039,8 +1791,8 @@ Failed to open '%1' in %2 Check if the video exists @@ -124,7 +559,7 @@ index e4d869578b..a960c92743 100644 Check if the video exists. -@@ -2051,7 +2051,7 @@ Check if the video exists. +@@ -2051,10 +1803,10 @@ Check if the video exists. BD Failure @@ -132,18 +567,43 @@ index e4d869578b..a960c92743 100644 + BD Failure - -@@ -2334,7 +2334,7 @@ Check if the video exists. +- ++ + MythTV Frontend + Main window title + MythTV Frontend +@@ -2334,51 +2086,27 @@ Check if the video exists. Screen aspect ratio - +- +- +- Auto +- Auto +- +- +- 21:9 +- 0% {21:9?} +- +- +- 32:9 +- 0% {32:9?} +- +- +- 256:135 +- 0% {256:135?} +- +- +- 3:2 +- 0% {3:2?} +- +- +- 5:4 +- 0% {5:4?} + Screen Aspect Ratio - Auto -@@ -2363,22 +2363,22 @@ Check if the video exists. - 16:18 (16:9 Above and below) - @@ -169,7 +629,7 @@ index e4d869578b..a960c92743 100644 -@@ -2388,12 +2388,12 @@ Check if the video exists. +@@ -2388,38 +2116,18 @@ Check if the video exists. Display on screen @@ -184,7 +644,67 @@ index e4d869578b..a960c92743 100644 -@@ -2517,27 +2517,27 @@ Check if the video exists. + Run on the specified screen or spanning all screens. + Run on the specified screen or spanning all screens. + +- +- Monitor aspect ratio +- Monitor Aspect Ratio +- +- +- 16:9 +- 16:9 +- +- +- 16:10 +- 16:10 +- +- +- 4:3 +- 4:3 +- +- +- The aspect ratio of a Xinerama display cannot be queried from the display, so it must be specified. +- The aspect ratio of a Xinerama display cannot be queried from the display, so it must be specified. +- + + + GUI width (pixels) +@@ -2460,22 +2168,6 @@ Check if the video exists. + The vertical offset where the GUI will be displayed. + The vertical offset where the GUI will be displayed. + +- +- Display size - width +- Display Size - Width +- +- +- Horizontal size of the monitor or TV. Used to calculate the actual aspect ratio of the display. This will override the DisplaySize from the system. +- Horizontal size of the monitor or TV. Used to calculate the actual aspect ratio of the display. This will override the DisplaySize from the system. +- +- +- Display size - height +- Display Size - Height +- +- +- Vertical size of the monitor or TV. Used to calculate the actual aspect ratio of the display. This will override the DisplaySize from the system. +- Vertical size of the monitor or TV. Used to calculate the actual aspect ratio of the display. This will override the DisplaySize from the system. +- + + + Use GUI size for TV playback +@@ -2506,38 +2198,30 @@ Check if the video exists. + Toggles between windowed and borderless operation. + Toggles between windowed and borderless operation. + +- +- Use fixed window size +- Use Fixed Window Size +- +- +- If disabled, the video playback window can be resized +- If disabled, the video playback window can be resized. +- Auto (Assume square pixels) @@ -217,7 +737,7 @@ index e4d869578b..a960c92743 100644 -@@ -2606,12 +2606,12 @@ Check if the video exists. +@@ -2606,22 +2290,18 @@ Check if the video exists. Select from Channel Group @@ -232,7 +752,17 @@ index e4d869578b..a960c92743 100644 -@@ -2766,7 +2766,7 @@ Check if the video exists. + Paint engine + Paint Engine + +- +- This selects what MythTV uses to draw. Choosing '%1' is recommended, unless running on systems with broken OpenGL implementations (broken hardware or drivers or windowing systems) where only Qt works. +- This selects what MythTV uses to draw. Choosing '%1' is recommended, unless running on systems with broken OpenGL implementations (broken hardware or drivers or windowing systems) where only Qt works. +- + + + Language +@@ -2766,7 +2446,7 @@ Check if the video exists. Set the audio surround-upconversion quality. @@ -241,7 +771,7 @@ index e4d869578b..a960c92743 100644 -@@ -3046,12 +3046,12 @@ Device Supports Up to %1 +@@ -3046,24 +2726,12 @@ Device Supports Up to %1 OpenSLES default output. Stereo support only. @@ -252,11 +782,23 @@ index e4d869578b..a960c92743 100644 Android AudioTrack output. Supports surround sound. - +- +- +- OpenSLES default output. +- OpenSLES default output. +- +- +- OpenMAX analog output. +- OpenMAX analog output. +- +- +- OpenMAX HDMI output. +- OpenMAX HDMI output. + Android AudioTrack output. Supports surround sound. - - OpenSLES default output. -@@ -3254,7 +3254,7 @@ Device Supports Up to %1 + + +@@ -3254,7 +2922,7 @@ Device Supports Up to %1 Start front left channel test @@ -265,7 +807,7 @@ index e4d869578b..a960c92743 100644 -@@ -3264,7 +3264,7 @@ Device Supports Up to %1 +@@ -3264,7 +2932,7 @@ Device Supports Up to %1 Start front right channel test @@ -274,7 +816,7 @@ index e4d869578b..a960c92743 100644 -@@ -3274,7 +3274,7 @@ Device Supports Up to %1 +@@ -3274,7 +2942,7 @@ Device Supports Up to %1 Start rear left channel test @@ -283,7 +825,7 @@ index e4d869578b..a960c92743 100644 -@@ -3284,7 +3284,7 @@ Device Supports Up to %1 +@@ -3284,7 +2952,7 @@ Device Supports Up to %1 Start rear right channel test @@ -292,7 +834,7 @@ index e4d869578b..a960c92743 100644 -@@ -3294,7 +3294,7 @@ Device Supports Up to %1 +@@ -3294,7 +2962,7 @@ Device Supports Up to %1 Start LFE channel test @@ -301,7 +843,7 @@ index e4d869578b..a960c92743 100644 -@@ -3304,7 +3304,7 @@ Device Supports Up to %1 +@@ -3304,7 +2972,7 @@ Device Supports Up to %1 Start surround left channel test @@ -310,7 +852,7 @@ index e4d869578b..a960c92743 100644 -@@ -3314,7 +3314,7 @@ Device Supports Up to %1 +@@ -3314,7 +2982,7 @@ Device Supports Up to %1 Start surround right channel test @@ -319,7 +861,7 @@ index e4d869578b..a960c92743 100644 -@@ -3324,7 +3324,7 @@ Device Supports Up to %1 +@@ -3324,7 +2992,7 @@ Device Supports Up to %1 Start center channel test @@ -328,7 +870,44 @@ index e4d869578b..a960c92743 100644 -@@ -3416,32 +3416,32 @@ Device Supports Up to %1 +@@ -3350,36 +3018,6 @@ Device Supports Up to %1 + Unable to create AudioOutput. + + +- +- BDInfo +- +- Could not open Blu-ray device: %1 +- Could not open Blu-ray device: %1 +- +- +- +- BDRingBuffer +- +- Title %1 chapter %2 +- Title %1 Chapter %2 +- +- +- Could not open Blu-ray device: %1 +- Could not open Blu-ray device: %1 +- +- +- Could not open Blu-ray device %1, failed to decrypt +- Failed to decrypt, could not open Blu-ray device: %1 +- +- +- Unable to find any Blu-ray compatible titles +- Unable to find any Blu-ray compatible titles. +- +- +- Unable to find any usable Blu-ray titles +- Unable to find any usable Blu-ray titles. +- +- + + BackendSelection + +@@ -3416,32 +3054,32 @@ Device Supports Up to %1 DVD/Video contains a bookmark @@ -367,7 +946,7 @@ index e4d869578b..a960c92743 100644 -@@ -3502,7 +3502,7 @@ Device Supports Up to %1 +@@ -3502,7 +3140,7 @@ Device Supports Up to %1 Enter new group name @@ -376,7 +955,21 @@ index e4d869578b..a960c92743 100644 -@@ -3549,27 +3549,27 @@ Device Supports Up to %1 +@@ -3523,13 +3161,6 @@ Device Supports Up to %1 + Input Connections + + +- +- CetonConfigurationGroup +- +- Description +- Description +- +- + + CetonDeviceID + +@@ -3549,27 +3180,27 @@ Device Supports Up to %1 CetonConfigurationGroup Description @@ -409,7 +1002,18 @@ index e4d869578b..a960c92743 100644 -@@ -3595,31 +3595,31 @@ Device Supports Up to %1 +@@ -3581,10 +3212,6 @@ Device Supports Up to %1 + Channel Name + Channel Name + +- +- Delete all channels on currently selected source(s). +- Delete All Channels on Currently Selected Source(s). +- + + + +@@ -3595,31 +3222,31 @@ Device Supports Up to %1 Delete all channels on currently selected video source. @@ -446,7 +1050,7 @@ index e4d869578b..a960c92743 100644 -@@ -3639,7 +3639,7 @@ Device Supports Up to %1 +@@ -3639,7 +3266,7 @@ Device Supports Up to %1 Restore Data from deleted channels. @@ -455,7 +1059,7 @@ index e4d869578b..a960c92743 100644 -@@ -3730,7 +3730,7 @@ Device Supports Up to %1 +@@ -3730,7 +3357,7 @@ Device Supports Up to %1 Favorites @@ -464,7 +1068,7 @@ index e4d869578b..a960c92743 100644 -@@ -3791,7 +3791,7 @@ Device Supports Up to %1 +@@ -3791,7 +3418,7 @@ Device Supports Up to %1 Enter the name of the new channel group @@ -473,7 +1077,22 @@ index e4d869578b..a960c92743 100644 -@@ -3876,8 +3876,8 @@ Device Supports Up to %1 +@@ -3846,14 +3473,6 @@ Device Supports Up to %1 + Found %n old %1 channels. + + +- +- Found %n new non-conflicting %1 channel(s). +- %n is the number of channels, %1 is the type of channel +- +- Found %n new non-conflicting %1 channel. +- Found %n new non-conflicting %1 channels. +- +- + + + Found %n new conflicting %1 channel(s). +@@ -3876,22 +3495,11 @@ Device Supports Up to %1 Found %n new %1 channel(s). %n is the number of channels, %1 is the type of channel @@ -484,7 +1103,112 @@ index e4d869578b..a960c92743 100644 -@@ -4022,75 +4022,75 @@ Device Supports Up to %1 +- +- Found %n transport(s): +- +- %n is the number of transports +- +- Found %n transport: +- +- Found %n transports: +- +- +- + + + Channels: FTA Enc Dec +@@ -3911,19 +3519,11 @@ Device Supports Up to %1 + Max atsc major count: %1 + Max atsc major count: %1 + +- +- Delete all +- Delete All +- + + + Set all invisible + Set All Invisible + +- +- Ignore all +- Ignore All +- + + + +@@ -3931,70 +3531,22 @@ Device Supports Up to %1 + Do you want to: + Do you want to: + +- +- 1. Delete all +- 1. Delete All +- + + + 2. Set all invisible + 2. Set All Invisible + +- +- 4. Ignore all +- 4. Ignore All +- + + + Please enter either 1, 2 or 4: + Please enter 1, 2 or 4: + +- +- Insert all +- Insert All +- +- +- Insert manually +- Insert Manually +- +- +- 1. Insert all +- 1. Insert All +- +- +- 2. Insert manually +- 2. Insert Manually +- +- +- 3. Ignore all +- 3. Ignore All +- + + + + Please enter either 1, 2, or 3: + Please enter 1, 2, or 3: + +- +- Update all +- Update All +- +- +- Update manually +- Update Manually +- +- +- 1. Update all +- 1. Update All +- +- +- 2. Update manually +- 2. Update Manually +- +- +- Channel %1 was found to be in conflict with other channels. +- Channel %1 was found to be in conflict with other channels. +- + + + +@@ -4022,75 +3574,75 @@ Device Supports Up to %1 Delete All @@ -574,7 +1298,18 @@ index e4d869578b..a960c92743 100644 -@@ -4368,12 +4368,12 @@ Device Supports Up to %1 +@@ -4181,10 +3733,6 @@ Device Supports Up to %1 + Tuning + Tuning + +- +- %1% +- %1: {1%?} +- + + + Locked +@@ -4368,12 +3916,12 @@ Device Supports Up to %1 All matches for a genre (Schedules Direct) @@ -589,7 +1324,7 @@ index e4d869578b..a960c92743 100644 -@@ -4384,12 +4384,12 @@ Device Supports Up to %1 +@@ -4384,12 +3932,12 @@ Device Supports Up to %1 Person named in the credits (Schedules Direct) @@ -604,16 +1339,94 @@ index e4d869578b..a960c92743 100644 -@@ -4727,7 +4727,7 @@ Device Supports Up to %1 +@@ -4471,14 +4019,6 @@ Device Supports Up to %1 + Limit by category + Limit by Category + +- +- All matches for a genre (Data Direct) +- All Matches for a Genre (Data Direct) +- +- +- Limit by MPAA or VCHIP rating (Data Direct) +- Limit by MPAA or VCHIP Rating (Data Direct) +- + + + Limit movies by the year of release +@@ -4489,10 +4029,6 @@ Device Supports Up to %1 + Minimum star rating (0.0 to 1.0 for movies only) + Minimum Star Rating (0.0 to 1.0 for Movies Only) + +- +- Person named in the credits (Data Direct) +- Person Named in the Credits (Data Direct) +- + + + Re-record SDTV in HDTV (disable duplicate matching) +@@ -4518,10 +4054,6 @@ Device Supports Up to %1 + Movie of the Week (complete example - use FindWeekly) + Movie of the Week (complete example - use FindWeekly) + +- +- First Episodes (complete example for Data Direct) +- First Episodes (complete example for Data Direct) +- + + + Current Example +@@ -4727,11 +4259,7 @@ Device Supports Up to %1 DiSEqC (Switch, LNB and Rotor Configuration) - +- +- +- DiSEqC (Switch, LNB, and Rotor Configuration) +- DiSEqC (Switch, LNB, and Rotor Configuration) + DiSEqC (Switch, LNB and Rotor Configuration) - DiSEqC (Switch, LNB, and Rotor Configuration) -@@ -5064,7 +5064,7 @@ Device Supports Up to %1 + +@@ -4770,36 +4298,6 @@ Device Supports Up to %1 + Failed to Open Device %1 + + +- +- DVDRingBuffer +- +- Title %1 chapter %2 +- Title %1 Chapter %2 +- +- +- Failed to open DVD device at %1 +- Failed to Open DVD Device at %1 +- +- +- +- DataDirectLineupSelector +- +- Fetching lineups from %1... +- Fetching Lineups from %1... +- +- +- DataDirect +- DataDirect +- +- +- Fetching of lineups failed +- Fetching Lineups Failed +- +- +- Fetching of lineups complete +- Fetching Lineups Complete +- +- + + DatabaseSettings + +@@ -5064,7 +4562,7 @@ Device Supports Up to %1 If enabled, move deleted recordings to the 'Deleted' recgroup and turn on autoexpire instead of deleting immediately. @@ -622,7 +1435,7 @@ index e4d869578b..a960c92743 100644 -@@ -5298,7 +5298,7 @@ Device Supports Up to %1 +@@ -5298,7 +4796,7 @@ Device Supports Up to %1 Unicable userband ID (0-7). The Unicable userband channels are often numbered starting at 1 but MythTV starts at 0. @@ -631,7 +1444,18 @@ index e4d869578b..a960c92743 100644 -@@ -5670,27 +5670,27 @@ Device Supports Up to %1 +@@ -5335,10 +4833,6 @@ Device Supports Up to %1 + Userband + Userband + +- +- Unicable userband ID (0-7) or sometimes (1-8) +- Unicable userband ID (0-7) or sometimes (1-8) +- + + + Frequency (MHz) +@@ -5670,27 +5164,27 @@ Device Supports Up to %1 Yes, Suspend @@ -664,7 +1488,7 @@ index e4d869578b..a960c92743 100644 -@@ -5700,7 +5700,7 @@ Device Supports Up to %1 +@@ -5700,7 +5194,7 @@ Device Supports Up to %1 ...and more... @@ -673,7 +1497,7 @@ index e4d869578b..a960c92743 100644 -@@ -5713,7 +5713,7 @@ Device Supports Up to %1 +@@ -5713,7 +5207,7 @@ Device Supports Up to %1 Configuration Problems @@ -682,7 +1506,7 @@ index e4d869578b..a960c92743 100644 -@@ -5798,27 +5798,28 @@ Device Supports Up to %1 +@@ -5798,53 +5292,34 @@ Device Supports Up to %1 A 'black box' application controlled via stdin, status on stderr and TransportStream read from stdout. Use absolute path or path relative to the current directory. @@ -712,11 +1536,80 @@ index e4d869578b..a960c92743 100644 WARNING: File '%1' does not exist. - +- +- +- A 'black box' application controlled via stdin, status on stderr and TransportStream read from stdout +- A 'black box' application controlled via stdin, status on stderr and TransportStream read from stdout. + Warning: File '%1' does not exist. - A 'black box' application controlled via stdin, status on stderr and TransportStream read from stdout -@@ -6819,7 +6820,7 @@ Error: %1 + + File info + File Info + +- +- '%1' is valid. +- '%1' is valid. +- +- +- WARNING: '%1' is not readable. +- WARNING: '%1' is not readable. +- +- +- WARNING: '%1' is not executable. +- WARNING: '%1' is not executable. +- +- +- WARNING: '%1' does not exist. +- WARNING: '%1' does not exist. +- + + + FileAssocDialog +@@ -5871,7 +5346,8 @@ Use absolute path or path relative to the current directory. + + + Save and exit this screen. +- Save and Exit ++ ++Save and Exit + + + +@@ -5889,32 +5365,6 @@ Use absolute path or path relative to the current directory. + Enter new extension: + + +- +- FileRingBuffer +- +- Could not open %1 +- %1 is the filename +- Could Not Open %1 +- +- +- File too small (%1B) +- %1 is the file size +- File Too Small (%1B) +- +- +- Improper permissions +- Improper Permissions +- +- +- Cannot seek in file +- Cannot Seek in File +- +- +- Failed to open remote file %1 +- %1 is the filename +- Failed to Open Remote File %1 +- +- + + FileTransferWorker + +@@ -6819,7 +6269,7 @@ Error: %1 The number of days bonus a program gets for each priority point. This is only used when the Weighted time/priority Auto-Expire method is selected. @@ -725,7 +1618,7 @@ index e4d869578b..a960c92743 100644 -@@ -6829,7 +6830,7 @@ Error: %1 +@@ -6829,7 +6279,7 @@ Error: %1 Auto-Expire will force expiration of Live TV recordings when they are this many days old. Live TV recordings may also be expired early if necessary to free up disk space. @@ -734,7 +1627,7 @@ index e4d869578b..a960c92743 100644 -@@ -6839,7 +6840,7 @@ Error: %1 +@@ -6839,7 +6289,7 @@ Error: %1 If enabled, programs that have been marked as watched and are Auto-Expired will be re-recorded if they are shown again. @@ -743,7 +1636,7 @@ index e4d869578b..a960c92743 100644 -@@ -6866,32 +6867,32 @@ Error: %1 +@@ -6866,32 +6316,32 @@ Error: %1 Maximum Start Gap (secs) @@ -782,7 +1675,7 @@ index e4d869578b..a960c92743 100644 -@@ -7352,7 +7353,7 @@ Error: %1 +@@ -7352,7 +6802,7 @@ Error: %1 The program is able to auto-expire @@ -791,7 +1684,7 @@ index e4d869578b..a960c92743 100644 -@@ -7367,7 +7368,7 @@ Error: %1 +@@ -7367,7 +6817,7 @@ Error: %1 Recording is in use @@ -800,7 +1693,7 @@ index e4d869578b..a960c92743 100644 -@@ -7412,37 +7413,37 @@ Error: %1 +@@ -7412,46 +6862,42 @@ Error: %1 Recording is in 1080i High Definition @@ -841,12 +1734,13 @@ index e4d869578b..a960c92743 100644 Recording is using HEVC/H.265 codec - +- +- +- Recording is in 1080i/p High Definition +- Recording is in 1080i/p High Definition + Recording is Using HEVC/H.265 Codec - Recording is in 1080i/p High Definition -@@ -7451,7 +7452,7 @@ Error: %1 - Recording is in 720p High Definition - Recording is in 720p High Definition @@ -854,7 +1748,7 @@ index e4d869578b..a960c92743 100644 -@@ -7461,7 +7462,7 @@ Error: %1 +@@ -7461,17 +6907,13 @@ Error: %1 Recording is in Standard Definition @@ -863,7 +1757,17 @@ index e4d869578b..a960c92743 100644 -@@ -8265,7 +8266,7 @@ Error: %1 + Recording is Widescreen + Recording is Widescreen + +- +- Recording is in HD using H.264 codec +- Recording is in HD Using H.264 Codec +- + + + Recording has been watched +@@ -8265,7 +7707,7 @@ Error: %1 Auto-Expire @@ -872,7 +1776,7 @@ index e4d869578b..a960c92743 100644 -@@ -8370,7 +8371,7 @@ Error: %1 +@@ -8370,7 +7812,7 @@ Error: %1 Allow Auto-Expire @@ -881,7 +1785,7 @@ index e4d869578b..a960c92743 100644 -@@ -9121,7 +9122,7 @@ Error: %1 +@@ -9121,7 +8563,7 @@ Error: %1 Input %1 @@ -890,7 +1794,29 @@ index e4d869578b..a960c92743 100644 -@@ -9739,7 +9740,7 @@ Error: %1 +@@ -9205,10 +8647,6 @@ Error: %1 + Could not open new database connection for metadata lookup. + Could Not Open New Database Connection for Metadata Lookup + +- +- Metadata Lookup Starting +- Metadata Lookup Starting +- + + + Unable to find mythmetadatalookup +@@ -9230,10 +8668,6 @@ Error: %1 + Could not open new database connection for commercial detector. + Could Not Open New Database Connection for Commercial Detector + +- +- Commercial Detection Starting +- Commercial Detection Starting +- + + + Unable to find mythcommflag +@@ -9739,7 +9173,7 @@ Error: %1 Idle time before entering standby mode (minutes) @@ -899,7 +1825,14 @@ index e4d869578b..a960c92743 100644 -@@ -9798,47 +9799,47 @@ Error: %1 +@@ -9791,54 +9225,50 @@ Error: %1 + Show standby + Show Standby + +- +- By default, only remote frontends are shown the shutdown option on the exit menu. Here you can force specific shutdown and reboot options to be displayed. +- By default, only remote frontends are shown the shutdown option on the exit menu. Here you can force specific shutdown and reboot options to be displayed. +- Decoder Device for VAAPI hardware decoding @@ -956,7 +1889,7 @@ index e4d869578b..a960c92743 100644 -@@ -9853,22 +9854,22 @@ Error: %1 +@@ -9853,22 +9283,22 @@ Error: %1 Note: This system appears to support reboot without using this setting. @@ -983,7 +1916,7 @@ index e4d869578b..a960c92743 100644 -@@ -9883,7 +9884,7 @@ Error: %1 +@@ -9883,7 +9313,7 @@ Error: %1 Note: This system appears to support shutdown without using this setting. @@ -992,7 +1925,7 @@ index e4d869578b..a960c92743 100644 -@@ -10018,7 +10019,7 @@ Error: %1 +@@ -10018,7 +9448,7 @@ Error: %1 Only support AirTunes (no video) @@ -1001,7 +1934,7 @@ index e4d869578b..a960c92743 100644 -@@ -10058,7 +10059,7 @@ Error: %1 +@@ -10058,7 +9488,7 @@ Error: %1 During music playback, displays album cover and various media information in full screen mode @@ -1010,7 +1943,18 @@ index e4d869578b..a960c92743 100644 -@@ -10353,28 +10354,28 @@ Error: %1 +@@ -10095,10 +9525,6 @@ Error: %1 + Media Monitor + Media Monitor + +- +- Decoder Device for VAAPI2 hardware decoding +- Decoder Device for VAAPI2 Hardware Decoding +- + + + Use this if your system does not detect the VAAPI device. Example: '/dev/dri/renderD128'. +@@ -10353,28 +9779,28 @@ Error: %1 Title %1 chapter %2 @@ -1044,7 +1988,7 @@ index e4d869578b..a960c92743 100644 -@@ -10382,7 +10383,7 @@ Error: %1 +@@ -10382,7 +9808,7 @@ Error: %1 Could not open Blu-ray device: %1 @@ -1053,7 +1997,7 @@ index e4d869578b..a960c92743 100644 -@@ -10701,12 +10702,12 @@ Error: %1 +@@ -10701,40 +10127,12 @@ Error: %1 Auto 3D @@ -1064,11 +2008,74 @@ index e4d869578b..a960c92743 100644 Ignore 3D - +- +- +- Toggle Picture-in-Picture view +- Toggle Picture-in-Picture View +- +- +- Toggle Picture-by-Picture view +- Toggle Picture-by-Picture View +- +- +- Create Picture-in-Picture view +- Create Picture-in-Picture View +- +- +- Create Picture-by-Picture view +- Create Picture-by-Picture View +- +- +- Toggle active PIP/PBP window +- Toggle Active PIP/PBP Window +- +- +- Swap PBP/PIP Windows +- Swap PBP/PIP Windows +- +- +- Change PxP view +- Change PxP View + Ignore 3D - Toggle Picture-in-Picture view -@@ -12092,12 +12093,12 @@ Error: %1 + +@@ -11001,10 +10399,6 @@ Error: %1 + Playback picture adjustments + Playback Picture Adjustments + +- +- Toggle night mode +- Toggle Night Mode +- + + + Set the picture brightness +@@ -11215,23 +10609,11 @@ Error: %1 + Toggle OSD playback information + Toggle OSD Playback Information + +- +- No 3D +- No 3D +- +- +- 3D Side by Side +- 3D Side by Side +- + + + Discard 3D Side by Side + Discard 3D Side by Side + +- +- 3D Top and Bottom +- 3D Top and Bottom +- + + + Discard 3D Top and Bottom +@@ -12092,12 +11474,12 @@ Error: %1 Title %1 chapter %2 @@ -1083,7 +2090,7 @@ index e4d869578b..a960c92743 100644 -@@ -12118,102 +12119,102 @@ Error: %1 +@@ -12118,102 +11500,102 @@ Error: %1 Spanning %1 screens @@ -1136,7 +2143,7 @@ index e4d869578b..a960c92743 100644 Current screen %1 %2: - -+ Current Screen :%1 %2 ++ Current Screen : %1 %2 @@ -1206,7 +2213,7 @@ index e4d869578b..a960c92743 100644 -@@ -12221,7 +12222,7 @@ Error: %1 +@@ -12221,7 +11603,7 @@ Error: %1 Warning: No GPU acceleration @@ -1215,7 +2222,169 @@ index e4d869578b..a960c92743 100644 -@@ -12418,52 +12419,52 @@ Error: %1 +@@ -12256,214 +11638,63 @@ Error: %1 + Could not open decoder + Could Not Open Decoder + +- +- TXT CAP +- TXT CAP +- +- +- Text subtitles +- Text Subtitles +- +- +- Off +- Off +- +- +- TXT %1 +- TXT %1 +- +- +- On +- On +- +- +- No captions +- CC/Teletext/Subtitle text not available +- No Captions +- +- +- Forced Subtitles On +- Forced Subtitles On +- +- +- Forced Subtitles Off +- Forced Subtitles Off +- +- +- Failed to initialize A/V Sync +- Failed to Initialize A/V Sync +- +- +- Serious error detected in Video Output +- Serious Error Detected in Video Output +- + + + Video frame buffering failed too many times. + Video Frame Buffering Failed Too Many Times + +- +- Error opening switch program buffer +- Error Opening Switch Program Buffer +- +- +- Error opening switch program file +- Error Opening Switch Program File +- +- +- Error opening jump program file buffer +- Error Opening Jump Program File Buffer +- +- +- Error opening jump program file +- Error Opening Jump Program File +- +- +- Error reopening video decoder +- Error Reopening Video Decoder +- +- +- Irrecoverable recorder error +- Irrecoverable Recorder Error +- +- +- Not Flagged +- The commercials/adverts have not been flagged +- Not Flagged +- +- +- Searching +- Searching... +- +- +- No Seektable +- No Seektable +- +- +- Using previously auto-saved cuts +- Using Previously Auto-saved Cuts +- +- +- Paused +- Paused +- +- +- New cut added. +- New Cut Added +- +- +- Delete +- Delete +- +- +- Undo Changes +- Undo Changes +- +- +- Undo - %1 +- %1 is the undo message +- Undo - %1 +- +- +- Redo - %1 +- %1 is the redo message +- Redo - %1 +- +- +- %1 ms +- %1 ms +- +- +- %n second(s) +- +- %n second +- %n seconds +- +- +- +- Still Frame +- Still Frame +- +- +- %1 of %2 +- %1 of %2 +- +- +- Error opening remote stream buffer +- Error Opening Remote Stream Buffer +- +- +- Error opening remote stream +- Error Opening Remote Stream +- +- +- Enabled Studio Levels +- Enabled Studio Levels +- +- +- Disabled Studio Levels +- Disabled Studio Levels +- +- +- Enabled Night Mode +- Enabled Night Mode +- +- +- Disabled Night Mode +- Disabled Night Mode +- + + + MythPlayerAudioUI Adjust Volume @@ -1278,7 +2447,7 @@ index e4d869578b..a960c92743 100644 -@@ -12471,64 +12472,64 @@ Error: %1 +@@ -12471,64 +11702,64 @@ Error: %1 Adjust Subtitle Zoom @@ -1355,7 +2524,7 @@ index e4d869578b..a960c92743 100644 -@@ -12536,43 +12537,43 @@ Error: %1 +@@ -12536,43 +11767,43 @@ Error: %1 No Seektable @@ -1407,7 +2576,7 @@ index e4d869578b..a960c92743 100644 -@@ -12580,7 +12581,7 @@ Error: %1 +@@ -12580,7 +11811,7 @@ Error: %1 %n second(s) @@ -1416,7 +2585,7 @@ index e4d869578b..a960c92743 100644 %n second %n seconds -@@ -12588,12 +12589,12 @@ Error: %1 +@@ -12588,12 +11819,12 @@ Error: %1 Still Frame @@ -1431,7 +2600,7 @@ index e4d869578b..a960c92743 100644 -@@ -12601,58 +12602,58 @@ Error: %1 +@@ -12601,58 +11832,58 @@ Error: %1 Searching @@ -1501,7 +2670,7 @@ index e4d869578b..a960c92743 100644 -@@ -12660,7 +12661,7 @@ Error: %1 +@@ -12660,7 +11891,7 @@ Error: %1 Failed to initialize video output @@ -1510,16 +2679,27 @@ index e4d869578b..a960c92743 100644 -@@ -12668,7 +12669,7 @@ Error: %1 +@@ -12668,18 +11899,7 @@ Error: %1 Visualisation Off - Visualization Off +- +- +- +- MythPopupBox +- +- OK +- OK +- +- +- Cancel +- Cancel + Visualization Off -@@ -12687,27 +12688,27 @@ Error: %1 +@@ -12687,27 +11907,27 @@ Error: %1 Restart @@ -1552,7 +2732,7 @@ index e4d869578b..a960c92743 100644 -@@ -13122,287 +13123,287 @@ Error: %1 +@@ -13122,287 +12342,287 @@ Error: %1 Default (Bilinear) @@ -1895,7 +3075,33 @@ index e4d869578b..a960c92743 100644 -@@ -13539,7 +13540,7 @@ Error: %1 +@@ -13472,25 +12692,6 @@ Error: %1 + MythWelcome Settings + + +- +- MythWizard +- +- &Cancel +- &Cancel +- +- +- < &Back +- < &Back +- +- +- &Next > +- &Next > +- +- +- &Finish +- &Finish +- +- + + NetworkControl + +@@ -13539,7 +12740,7 @@ Error: %1 If enabled, captions will be displayed when playing back recordings or watching Live TV. Closed Captioning can be turned on or off by pressing "T" duringplayback. @@ -1904,7 +3110,7 @@ index e4d869578b..a960c92743 100644 -@@ -13564,12 +13565,12 @@ Error: %1 +@@ -13564,12 +12765,12 @@ Error: %1 Visualiser for audio only playback @@ -1919,7 +3125,7 @@ index e4d869578b..a960c92743 100644 -@@ -13655,32 +13656,32 @@ Error: %1 +@@ -13655,32 +12856,32 @@ Error: %1 First Channel @@ -1958,7 +3164,7 @@ index e4d869578b..a960c92743 100644 -@@ -13848,7 +13849,7 @@ Error: %1 +@@ -13848,7 +13049,7 @@ Error: %1 Enter new group name @@ -1967,7 +3173,7 @@ index e4d869578b..a960c92743 100644 -@@ -14255,7 +14256,7 @@ Are you sure you want to delete: +@@ -14255,7 +13456,7 @@ Are you sure you want to delete: Clear last played position @@ -1976,7 +3182,7 @@ index e4d869578b..a960c92743 100644 -@@ -14525,47 +14526,47 @@ Are you sure you want to delete: +@@ -14525,47 +13726,47 @@ Are you sure you want to delete: Video scaler @@ -2033,7 +3239,7 @@ index e4d869578b..a960c92743 100644 -@@ -14580,17 +14581,17 @@ Are you sure you want to delete: +@@ -14580,29 +13781,17 @@ Are you sure you want to delete: When unchecked the deblocking loopfilter will be disabled. @@ -2050,11 +3256,23 @@ index e4d869578b..a960c92743 100644 The default scaler provides good quality in the majority of situations. Higher quality scalers may offer some benefit when scaling very low resolution material but may not be as fast. - +- +- +- Disabling will significantly reduce the load on the CPU when watching HD H.264 but may significantly reduce video quality. +- Disabling will significantly reduce the load on the CPU when watching HD H.264 but may significantly reduce video quality. +- +- +- When unchecked the OSD will not fade away but instead will disappear abruptly. +- When unchecked the OSD will not fade away but instead will disappear abruptly. +- +- +- Uncheck this if the video studders while the OSD is fading away. +- Uncheck this if the video studders while the OSD is fading away. + The default scaler provides good quality in the majority of situations. Higher quality scalers may offer some benefit when scaling very low resolution material but may not be as fast. - Disabling will significantly reduce the load on the CPU when watching HD H.264 but may significantly reduce video quality. -@@ -14657,7 +14658,7 @@ Are you sure you want to delete: + +@@ -14657,7 +13846,7 @@ Are you sure you want to delete: All formats @@ -2063,7 +3281,57 @@ index e4d869578b..a960c92743 100644 -@@ -14729,19 +14730,19 @@ Are you sure you want to delete: +@@ -14669,34 +13858,6 @@ Are you sure you want to delete: + Video renderer + Video Renderer + +- +- OSD renderer +- OSD Renderer +- +- +- OSD fade +- OSD Fade +- +- +- Primary deinterlacer +- Primary Deinterlacer +- +- +- Fallback deinterlacer +- Fallback Deinterlacer +- +- +- Custom filters +- Custom Filters +- +- +- Example custom filter list: 'ivtc,denoise3d' +- Example Custom Filter List: 'ivtc,denoise3d' +- +- +- When unchecked the deblocking loopfilter will be disabled +- When unchecked the deblocking loopfilter will be disabled. +- + + + Invalid width specification(%1), discarded +@@ -14712,14 +13873,6 @@ Are you sure you want to delete: + Invalid frame rate specification(%1), discarded + Invalid Frame Rate Specification(%1), Discarded + +- +- Main deinterlacing method. %1 +- Main Deinterlacing Method. %1 +- +- +- Fallback deinterlacing method. %1 +- Fallback Deinterlacing Method. %1 +- + + + Remove this profile item? +@@ -14729,19 +13882,19 @@ Are you sure you want to delete: Width video formats @@ -2086,7 +3354,42 @@ index e4d869578b..a960c92743 100644 -@@ -14795,22 +14796,22 @@ Are you sure you want to delete: +@@ -14749,11 +13902,6 @@ Are you sure you want to delete: + and + & + +- +- formats +- video formats +- formats +- + + + framerate +@@ -14772,67 +13920,35 @@ Are you sure you want to delete: + Increase this value if audio cuts out frequently. This is more likely to occur when adjusting audio sync to a negative value. If using high negative audio sync values you may need to set a large value here. Default is 100. + Increase this value if audio cuts out frequently. This is more likely to occur when adjusting audio sync to a negative value. If using high negative audio sync values you may need to set a large value here. Default is 100. + +- +- Enable new timestamp based playback speed (AVSync2) +- Enable New Timestamp Based Playback Speed (AVSync2) +- +- +- Simplified timing and synchronization method. This may offer smoother video playback. Note there is a setting that can be used for fine tuning playback (press right arrow). +- Simplified timing and synchronization method. This may offer smoother video playback. Note there is a setting that can be used for fine tuning playback (press right arrow). +- +- +- AVSync2 audio correction (ms) +- AVSync2 Audio Correction (ms) +- +- +- When using AVSync2, if video playback is speeding up and slowing down every few seconds, reduce this value. For quicker recovery of audio sync after jumps, increase this value. Values can be from 1 to 40. Default is 10. +- When using AVSync2, if video playback is speeding up and slowing down every few seconds, reduce this value. For quicker recovery of audio sync after jumps, increase this value. Values can be from 1 to 40. Default is 10. +- +- +- Extra stage of OpenGL Shading +- Extra Stage of OpenGL Shading +- Primary colourspace conversion @@ -2113,7 +3416,21 @@ index e4d869578b..a960c92743 100644 -@@ -14832,7 +14833,7 @@ Are you sure you want to delete: + Use FFmpeg's original MPEG-TS demuxer + Use FFmpeg's Original MPEG-TS Demuxer + +- +- Experimental: Enable this setting to use FFmpeg's native demuxer. Things will be broken. +- Experimental: Enable this setting to use FFmpeg's native demuxer. Things will be broken. +- +- +- PIP video location +- PIP Video Location +- +- +- Location of PIP Video window. +- Location of PIP Video window. +- Experimental: Enable this setting to use FFmpeg's native demuxer. Try this when encountering playback issues. @@ -2122,7 +3439,7 @@ index e4d869578b..a960c92743 100644 -@@ -14964,7 +14965,7 @@ Are you sure you want to delete: +@@ -14964,7 +14080,7 @@ Are you sure you want to delete: Enter Playback Profile Name @@ -2131,7 +3448,7 @@ index e4d869578b..a960c92743 100644 -@@ -15036,7 +15037,7 @@ name cannot be blank. +@@ -15036,7 +14152,7 @@ name cannot be blank. Selects how to sort a show's episodes @@ -2140,7 +3457,7 @@ index e4d869578b..a960c92743 100644 -@@ -15066,7 +15067,7 @@ name cannot be blank. +@@ -15066,7 +14182,7 @@ name cannot be blank. Adjust this if the image does not fill your screen vertically. Range -100% to 100% @@ -2149,7 +3466,7 @@ index e4d869578b..a960c92743 100644 -@@ -15076,7 +15077,7 @@ name cannot be blank. +@@ -15076,7 +14192,7 @@ name cannot be blank. Adjust this if the image does not fill your screen horizontally. Range -100% to 100% @@ -2158,7 +3475,7 @@ index e4d869578b..a960c92743 100644 -@@ -15101,17 +15102,17 @@ name cannot be blank. +@@ -15101,25 +14217,17 @@ name cannot be blank. Clear last played position and exit @@ -2175,11 +3492,41 @@ index e4d869578b..a960c92743 100644 If 'Side by Side' or 'Top and Bottom' 3D material is detected, enabling this setting will discard one field (enabled by default). - +- +- +- Clear bookmark on playback +- Clear Bookmark on Playback +- +- +- If enabled, automatically clear the bookmark on a recording when the recording is played back. If disabled, you can mark the beginning with rewind then save position. +- If enabled, automatically clear the bookmark on a recording when the recording is played back. If disabled, you can mark the beginning with rewind then save position. + If 'Side by Side' or 'Top and Bottom' 3D material is detected, enabling this setting will discard one field (enabled by default). - Clear bookmark on playback -@@ -15192,7 +15193,7 @@ name cannot be blank. + +@@ -15141,10 +14249,6 @@ name cannot be blank. + Just exit + Exit Without Saving + +- +- Save position and exit +- Save and Exit +- + + + Always prompt (excluding Live TV) +@@ -15160,10 +14264,6 @@ name cannot be blank. + Prompt for Live TV only + Prompt for Live TV Only + +- +- If set to prompt, a menu will be displayed when you exit playback mode. The options available will allow you to save your position, delete the recording, or continue watching. +- If set to prompt, a menu will be displayed when you exit playback mode. The options available will allow you to save your position, delete the recording, or continue watching. +- + + + Prompt at end of recording +@@ -15192,7 +14292,7 @@ name cannot be blank. Set the choice between viewing the current recording group in the OSD, or showing the 'Watch Recording' screen when 'Jump to Program' is activated. If enabled, the recordings are shown in the OSD @@ -2188,7 +3535,7 @@ index e4d869578b..a960c92743 100644 -@@ -15217,7 +15218,7 @@ name cannot be blank. +@@ -15217,7 +14317,7 @@ name cannot be blank. Live TV idle timeout (mins) @@ -2197,16 +3544,20 @@ index e4d869578b..a960c92743 100644 -@@ -15232,7 +15233,7 @@ name cannot be blank. +@@ -15232,11 +14332,7 @@ name cannot be blank. By default MythTV uses black letterboxing to match broadcaster letterboxing, but those with plasma screens may prefer gray to minimize burn-in. - +- +- +- By default MythTV uses black letterboxing to match broadcaster letterboxing, but those with plasma screens may prefer gray to minimize burn-in. Currently only works with XVideo video renderer. +- By default MythTV uses black letterboxing to match broadcaster letterboxing, but those with plasma screens may prefer gray to minimize burn-in. Currently only works with XVideo video renderer. + By default MythTV uses black letterboxing to match broadcaster letterboxing, but those with plasma screens may prefer gray to minimize burn-in. - By default MythTV uses black letterboxing to match broadcaster letterboxing, but those with plasma screens may prefer gray to minimize burn-in. Currently only works with XVideo video renderer. -@@ -15281,7 +15282,7 @@ name cannot be blank. + +@@ -15281,7 +14377,7 @@ name cannot be blank. By recording priority @@ -2215,16 +3566,20 @@ index e4d869578b..a960c92743 100644 -@@ -15752,7 +15753,7 @@ name cannot be blank. +@@ -15752,11 +14848,7 @@ name cannot be blank. 720p Resolution - 720p Resolution +- +- +- 1080i/p Resolution +- 1080i/p Resolution + 720p HD Resolution - 1080i/p Resolution -@@ -15908,12 +15909,12 @@ name cannot be blank. + +@@ -15908,12 +15000,12 @@ name cannot be blank. not matched @@ -2239,7 +3594,7 @@ index e4d869578b..a960c92743 100644 -@@ -15928,27 +15929,27 @@ name cannot be blank. +@@ -15928,27 +15020,27 @@ name cannot be blank. HEVC/H.265 @@ -2272,7 +3627,7 @@ index e4d869578b..a960c92743 100644 -@@ -15966,22 +15967,22 @@ name cannot be blank. +@@ -15966,22 +15058,22 @@ name cannot be blank. Auto-expire off @@ -2299,7 +3654,7 @@ index e4d869578b..a960c92743 100644 -@@ -16032,7 +16033,7 @@ name cannot be blank. +@@ -16032,7 +15124,7 @@ name cannot be blank. Unknown @@ -2308,7 +3663,7 @@ index e4d869578b..a960c92743 100644 -@@ -16047,12 +16048,12 @@ name cannot be blank. +@@ -16047,12 +15139,12 @@ name cannot be blank. Recorded ID @@ -2323,7 +3678,7 @@ index e4d869578b..a960c92743 100644 -@@ -16715,22 +16716,22 @@ name cannot be blank. +@@ -16715,22 +15807,22 @@ name cannot be blank. Always Visible @@ -2350,7 +3705,7 @@ index e4d869578b..a960c92743 100644 -@@ -16897,17 +16898,17 @@ name cannot be blank. +@@ -16897,17 +15989,17 @@ name cannot be blank. Do not automatically extend recording @@ -2371,7 +3726,142 @@ index e4d869578b..a960c92743 100644 -@@ -17954,7 +17955,7 @@ name cannot be blank. +@@ -17631,82 +16723,6 @@ name cannot be blank. + (%n days) + + +- +- Track +- Track +- +- +- Audio track +- Audio Track +- +- +- Video track +- Video Track +- +- +- Subtitle track +- Subtitle Track +- +- +- CC +- EIA-608 closed captions +- CC +- +- +- ATSC CC +- EIA-708 closed captions +- ATSC CC +- +- +- TT CC +- Teletext closed captions +- TT CC +- +- +- TT Menu +- Teletext Menu +- TT Menu +- +- +- Text +- Text stream +- Text +- +- +- TXT File +- Text File +- TXT File +- +- +- Audio Description +- On-screen events described for the visually impaired +- Audio Description +- +- +- Clean Effects +- No dialog, background audio only +- Clean Effects +- +- +- Hearing Impaired +- Clear dialog for the hearing impaired +- Hearing Impaired +- +- +- Spoken Subtitles +- Subtitles are read out for the visually impaired +- Spoken Subtitles +- +- +- Commentary +- Director/Cast commentary track +- Commentary +- +- +- Normal +- Ordinary audio track +- Normal +- + + + +@@ -17732,10 +16748,6 @@ name cannot be blank. + Port + Port + +- +- Password +- Password +- + + + +@@ -17831,10 +16843,6 @@ name cannot be blank. + OK + OK + +- +- Cancel +- Cancel +- + + + +@@ -17853,22 +16861,6 @@ name cannot be blank. + Subtitle + Subtitle + +- +- Video Decode Error +- Video Decode Error +- +- +- (forced) +- (forced) +- +- +- Input %1:%2 +- Input %1:%2 +- +- +- Could not query inputs. +- Could not query inputs. +- + + + ERROR, Compile with V4L support to query inputs +@@ -17947,14 +16939,10 @@ name cannot be blank. + Failed to add channel %1 + Failed to Add Channel %1 + +- +- %1 -- Testing decryption of program %2 +- %1 -- Testing Decryption of Program %2 +- Program %1 Testing Decryption @@ -2380,7 +3870,7 @@ index e4d869578b..a960c92743 100644 -@@ -18015,8 +18016,8 @@ name cannot be blank. +@@ -18015,18 +17003,11 @@ name cannot be blank. Found %n @@ -2391,7 +3881,17 @@ index e4d869578b..a960c92743 100644 -@@ -18144,7 +18145,7 @@ name cannot be blank. +- +- : Found %n +- +- : Found %n +- : Found %n +- +- + + + Frequency %1 +@@ -18144,7 +17125,7 @@ name cannot be blank. Netherlands @@ -2400,7 +3900,19 @@ index e4d869578b..a960c92743 100644 -@@ -18247,12 +18248,12 @@ name cannot be blank. +@@ -18234,11 +17215,6 @@ name cannot be blank. + Analog + Analog + +- +- Page Not Available +- Requested Teletext page not available +- Page Not Available +- + + + Play +@@ -18247,12 +17223,12 @@ name cannot be blank. Rewind @@ -2415,7 +3927,7 @@ index e4d869578b..a960c92743 100644 -@@ -18427,7 +18428,7 @@ name cannot be blank. +@@ -18427,7 +17403,7 @@ name cannot be blank. If set, the MPEG4 encoder will use '4MV' motion-vector encoding. This requires much more processing, but can result in better video. It is highly recommended that the HQ option is enabled if 4MV is enabled. @@ -2424,7 +3936,7 @@ index e4d869578b..a960c92743 100644 -@@ -18487,17 +18488,17 @@ name cannot be blank. +@@ -18487,17 +17463,17 @@ name cannot be blank. If set, the MPEG4 encoder will use interlaced DCT encoding. You may want this when encoding interlaced video; however, this is experimental and may cause damaged video. @@ -2445,7 +3957,23 @@ index e4d869578b..a960c92743 100644 -@@ -18769,12 +18770,12 @@ name cannot be blank. +@@ -18753,28 +17729,20 @@ name cannot be blank. + Default (Template) + Default (Template) + +- +- Sorry, the Transport Editor can only be used to edit transports which are connected to a card input. +- Sorry, the Transport Editor can only be used to edit transports which are connected to a card input. +- + + + Failed to probe a capture card connected to this transport's video source. Please make sure the backend is not running. + Failed to probe a capture card connected to this transport's video source. Please make sure the backend is not running. + +- +- The Video Sources to which this Transport is connected are incompatible, please create separate video sources for these cards. +- The Video Sources to which this Transport is connected are incompatible, please create separate video sources for these cards. +- Sorry, the Transport Editor can only edit transports of a video source that is connected to a capture card. @@ -2460,7 +3988,7 @@ index e4d869578b..a960c92743 100644 -@@ -18810,59 +18811,60 @@ name cannot be blank. +@@ -18810,65 +17778,60 @@ name cannot be blank. Frequency (Option has no default). The frequency for this transport (multiplex) in @@ -2528,11 +4056,48 @@ index e4d869578b..a960c92743 100644 Modulation System (Default: DVB-C/A) - +- +- +- Frequency (Option has no default). +-The frequency for this channel in +- Frequency (Option has no default). +-The frequency for this channel in + Modulation System (Default: DVB-C/A) - Frequency (Option has no default). -@@ -19049,32 +19051,32 @@ Most cards can autodetect this now, so leave it at Auto unless it won't wor + +@@ -18887,30 +17850,6 @@ Most DVB-S transponders transmit at 27.5 million symbols per second.Modulation System + Modulation System + +- +- Modulation System (Default: DVB-T) +- Modulation System (Default: DVB-T) +- +- +- DVB-T +- DVB-T +- +- +- DVB-T2 +- DVB-T2 +- +- +- Modulation System (Default: DVB-S) +- Modulation System (Default: DVB-S) +- +- +- DVB-S +- DVB-S +- +- +- DVB-S2 +- DVB-S2 +- + + + +@@ -19049,42 +17988,38 @@ Most cards can autodetect this now, so leave it at Auto unless it won't wor Logical Channel Numbers required @@ -2571,7 +4136,42 @@ index e4d869578b..a960c92743 100644 -@@ -19163,51 +19165,55 @@ Most DVB-C transports transmit at 6.9 or 6.875 million symbols per second.Add full Transport Stream channels + Add Full Transport Stream Channels + +- +- If set, Create MPTS channels, which allow recording of the full, unaltered, transport stream. +- If set, Create MPTS channels, which allow recording of the full, unaltered, transport stream. +- + + + Test Decryptability +@@ -19095,24 +18030,6 @@ Most cards can autodetect this now, so leave it at Auto unless it won't wor + Test all channels to see if they can be decrypted with installed CAM/smartcard. Sometimes the encrypted flag is set spuriously. Attention: Enabling this option increases the scan time for each encrypted channel by a couple of seconds. + Test all channels to see if they can be decrypted with installed CAM/smartcard. Sometimes the encrypted flag is set spuriously. Attention: Enabling this option increases the scan time for each encrypted channel by a couple of seconds. + +- +- Frequency (Option has no default) +-The frequency for this channel in kHz. +- Frequency (Option has no default) +-The frequency for this channel in kHz. +- +- +- Frequency (Option has no default) +-The frequency for this channel in Hz. +- Frequency (Option has no default) +-The frequency for this channel in Hz. +- +- +- Symbol Rate (symbols/second). +-Most DVB-S transponders transmit at 27.5 million symbols per second. +- Symbol Rate (symbols/second). +-Most DVB-S transponders transmit at 27.5 million symbols per second. +- + + + Symbol Rate (symbols/second). +@@ -19163,51 +18080,55 @@ Most DVB-C transports transmit at 6.9 or 6.875 million symbols per second. Remove duplicates @@ -2636,7 +4236,7 @@ index e4d869578b..a960c92743 100644 -@@ -19282,12 +19288,12 @@ Most DVB-C transports transmit at 6900000 or 6875000 symbols per second. Modulation system (Default: DVB-S2) @@ -2647,11 +4247,445 @@ index e4d869578b..a960c92743 100644 Modulation system (Default: DVB-T2) - +- +- +- Mod Sys +- Mod Sys +- +- +- Modulation system (Default: DVB-S) +- Modulation System (Default: DVB-S) +- +- +- Modulation system (Default: DVB-T) +- Modulation System (Default: DVB-T) + Modulation System (Default: DVB-T2) - Mod Sys -@@ -19800,27 +19806,27 @@ Most DVB-C transports transmit at 6900000 or 6875000 symbols per second. +@@ -19359,410 +18268,11 @@ Most DVB-C transports transmit at 6900000 or 6875000 symbols per second.Error querying recorder state + Error Querying Recorder State + +- +- Standard +- Standard +- +- +- Mac hardware acceleration +- Mac Hardware Acceleration +- +- +- NVidia VDPAU acceleration +- NVidia VDPAU Acceleration +- +- +- Standard will use ffmpeg library. +- Standard will use ffmpeg library. +- +- +- Mac hardware will try to use the graphics processor - this may hang or crash your Mac! +- Mac hardware will try to use the graphics processor - this may hang or crash your Mac! +- +- +- VDPAU will attempt to use the graphics hardware to accelerate video decoding and playback. +- VDPAU will attempt to use the graphics hardware to accelerate video decoding and playback. +- +- +- VAAPI will attempt to use the graphics hardware to accelerate video decoding. REQUIRES OPENGL PAINTER. +- VAAPI will attempt to use the graphics hardware to accelerate video decoding. REQUIRES OPENGL PAINTER. +- +- +- Linear blend +- Linear Blend +- +- +- Kernel +- Kernel +- +- +- Kernel (2x) +- Kernel (2x) +- +- +- Greedy HighMotion +- Greedy HighMotion +- +- +- Greedy HighMotion (2x) +- Greedy HighMotion (2x) +- +- +- Yadif +- Yadif +- +- +- Yadif (2x) +- Yadif (2x) +- +- +- Bob (2x) +- Bob (2x) +- +- +- One field +- One Field +- +- +- Interlaced (2x) +- Interlaced (2x) +- +- +- Bob (2x, HW) +- Bob (2x, HW) +- +- +- This deinterlacer attempts to synchronize with interlaced displays whose size and refresh rate exactly match the video source. It has low CPU requirements. +- This deinterlacer attempts to synchronize with interlaced displays whose size and refresh rate exactly match the video source. It has low CPU requirements. +- +- +- High Quality +- Sample: high quality +- High Quality +- +- +- Normal +- Sample: average quality +- Normal +- +- +- Slim +- Sample: low CPU usage +- Slim +- +- +- VDPAU High Quality +- Sample: VDPAU high quality +- VDPAU High Quality +- +- +- VDPAU Normal +- Sample: VDPAU average quality +- VDPAU Normal +- +- +- VDPAU Slim +- Sample: VDPAU low power GPU +- VDPAU Slim +- +- +- MediaCodec Normal +- Sample: MediaCodec Normal +- MediaCodec Normal +- +- +- VAAPI2 Normal +- Sample: VAAPI2 Normal +- VAAPI2 Normal +- +- +- Video rendering method +- Video Rendering Method +- +- +- Render video offscreen. Used internally. +- Render video offscreen. Used internally. +- +- +- Use X11 pixel copy to render video. This is not recommended if any other option is available. The video will not be scaled to fit the screen. This will work with all X11 servers, local and remote. +- Use X11 pixel copy to render video. This is not recommended if any other option is available. The video will not be scaled to fit the screen. This will work with all X11 servers, local and remote. +- +- +- Use X11 shared memory pixel transfer to render video. This is only recommended over the X11 pixel copy renderer. The video will not be scaled to fit the screen. This works with most local X11 servers. +- Use X11 shared memory pixel transfer to render video. This is only recommended over the X11 pixel copy renderer. The video will not be scaled to fit the screen. This works with most local X11 servers. +- +- +- This is the standard video renderer for X11 systems. It uses XVideo hardware assist for scaling, color conversion. If the hardware offers picture controls the renderer supports them. +- This is the standard video renderer for X11 systems. It uses XVideo hardware assist for scaling, color conversion. If the hardware offers picture controls the renderer supports them. +- +- +- Windows video renderer based on Direct3D. Requires video card compatible with Direct3D 9. This is the preferred renderer for current Windows systems. +- Windows video renderer based on Direct3D. Requires video card compatible with Direct3D 9. This is the preferred renderer for current Windows systems. +- +- +- VAAPI acceleration +- VAAPI Acceleration +- +- +- Windows hardware acceleration +- Windows Hardware Acceleration +- +- +- OpenGL Normal +- Sample: OpenGL medium quality +- OpenGL Normal +- +- +- VDPAU Normal +- Sample: VDPAU medium quality +- VDPAU Normal +- +- +- Mac VDA hardware acceleration +- Mac VDA Hardware Acceleration +- +- +- Android MediaCodec decoder +- Android MediaCodec Decoder +- +- +- VAAPI2 acceleration +- VAAPI2 Acceleration +- +- +- Processing method used to decode video. +- Processing method used to decode video. +- +- +- DXVA2 will use the graphics hardware to accelerate video decoding and playback (requires Windows Vista or later). +- DXVA2 will use the graphics hardware to accelerate video decoding and playback (requires Windows Vista or later). +- +- +- VDA will attempt to use the graphics hardware to accelerate video decoding. (H264 only, requires Mac OS 10.6.3) +- VDA will attempt to use the graphics hardware to accelerate video decoding. (H264 only, requires Mac OS 10.6.3) +- +- +- Openmax will use the graphics hardware to accelerate video decoding on Raspberry Pi. +- Openmax will use the graphics hardware to accelerate video decoding on Raspberry Pi. +- +- +- Mediacodec will use the graphics hardware to accelerate video decoding on Android. +- Mediacodec will use the graphics hardware to accelerate video decoding on Android. +- +- +- VAAPI2 is a new implementation of VAAPI to will use the graphics hardware to accelerate video decoding on Intel CPUs. +- VAAPI2 is a new implementation of VAAPI to will use the graphics hardware to accelerate video decoding on Intel CPUs. +- +- +- Linear blend (HW-GL) +- Linear Blend (HW-GL) +- +- +- One field (HW-GL) +- One Field (HW-GL) +- +- +- Linear blend (2x, HW-GL) +- Linear Blend (2x, HW-GL) +- +- +- One Field (1x, HW) +- One Field (1x, HW) +- +- +- Temporal (1x, HW) +- Temporal (1x, HW) +- +- +- Temporal (2x, HW) +- Temporal (2x, HW) +- +- +- Advanced (1x, HW) +- Advanced (1x, HW) +- +- +- Advanced (2x, HW) +- Advanced (2x, HW) +- +- +- Advanced (HW) +- Advanced (HW) +- +- +- Fast (HW) +- Fast (HW) +- +- +- Line double (HW) +- Line Double (HW) +- +- +- VDA High Quality +- Sample: VDA high quality +- VDA High Quality +- +- +- VDA Normal +- Sample: VDA average quality +- VDA Normal +- +- +- VDA Slim +- Sample: VDA low power GPU +- VDA Slim +- +- +- OpenGL High Quality +- Sample: OpenGL high quality +- OpenGL High Quality +- +- +- OpenGL Normal +- Sample: OpenGL average quality +- OpenGL Normal +- +- +- OpenGL Slim +- Sample: OpenGL low power GPU +- OpenGL Slim +- +- +- VAAPI Normal +- Sample: VAAPI average quality +- VAAPI Normal +- +- +- OpenMAX High Quality +- Sample: OpenMAX High Quality +- OpenMAX High Quality +- +- +- OpenMAX Normal +- Sample: OpenMAX Normal +- OpenMAX Normal +- +- +- Video is converted to an intermediate format by the CPU (UYVY) before OpenGL is used for color conversion, scaling, picture controls and optionally deinterlacing. Processing is balanced between the CPUand GPU. +- Video is converted to an intermediate format by the CPU (UYVY) before OpenGL is used for color conversion, scaling, picture controls and optionally deinterlacing. Processing is balanced between the CPU and GPU. +- +- +- This is the only video renderer for NVidia VDPAU decoding. +- This is the only video renderer for NVidia VDPAU decoding. +- +- +- This video renderer uses VAAPI for video decoding and OpenGL for scaling and color conversion. +- This video renderer uses VAAPI for video decoding and OpenGL for scaling and color conversion. +- +- +- This deinterlacer requires the display to be capable of twice the frame rate as the source video. +- This deinterlacer requires the display to be capable of twice the frame rate as the source video. +- +- +- Perform no deinterlacing. +- Perform no deinterlacing. +- +- +- Use this with an interlaced display whose resolution exactly matches the video size. This is incompatible with MythTV zoom modes. +- Use this with an interlaced display whose resolution exactly matches the video size. This is incompatible with MythTV zoom modes. +- +- +- Shows only one of the two fields in the frame. This looks good when displaying a high motion 1080i video on a 720p display. +- Shows only one of the two fields in the frame. This looks good when displaying a high motion 1080i video on a 720p display. +- +- +- Shows one field of the frame followed by the other field displaced vertically. +- Shows one field of the frame followed by the other field displaced vertically. +- +- +- Blends the odd and even fields linearly into one frame. +- Blends the odd and even fields linearly into one frame. +- +- +- This filter disables deinterlacing when the two fields are similar, and performs linear deinterlacing otherwise. +- This filter disables deinterlacing when the two fields are similar, and performs linear deinterlacing otherwise. +- +- +- (Hardware Accelerated) +- (Hardware Accelerated) +- +- +- This deinterlacer uses several fields to reduce motion blur. It has increased CPU requirements. +- This deinterlacer uses several fields to reduce motion blur. It has increased CPU requirements. +- +- +- This deinterlacer uses several fields to reduce motion blur. +- This deinterlacer uses several fields to reduce motion blur. +- +- +- This deinterlacer uses multiple fields to reduce motion blur and smooth edges. +- This deinterlacer uses multiple fields to reduce motion blur and smooth edges. +- +- +- Use the most advanced hardware deinterlacing algorithm available. +- Use the most advanced hardware deinterlacing algorithm available. +- +- +- Use the weave deinterlacing algorithm. +- Use the weave deinterlacing algorithm. +- +- +- Use the motion adaptive deinterlacing algorithm. +- Use the motion adaptive deinterlacing algorithm. +- +- +- Use the motion compensated deinterlacing algorithm. +- Use the motion compensated deinterlacing algorithm. +- +- +- '%1' has not been documented yet. +- '%1' has not been documented yet. +- +- +- OSD rendering method +- OSD Rendering Method +- +- +- Render the OSD using the XVideo chromakey feature.This renderer does not alpha blend but is the fastest OSD renderer for XVideo. +- Render the OSD using the XVideo chromakey feature.This renderer does not alpha blend but is the fastest OSD renderer for XVideo. +- +- +- Note: nVidia hardware after the 5xxx series does not have XVideo chromakey support. +- Note: nVidia hardware after the 5xxx series does not have XVideo chromakey support. +- +- +- Software OSD rendering uses your CPU to alpha blend the OSD. +- Software OSD rendering uses your CPU to alpha blend the OSD. +- +- +- Uses OpenGL to alpha blend the OSD onto the video. +- Uses OpenGL to alpha blend the OSD onto the video. +- +- +- Uses OpenGL in a separate thread to overlay the OSD onto the video. +- Use OpenGL in a separate thread to overlay the OSD onto the video. +- +- +- Uses OpenMAX to alpha blend the OSD onto the video. +- Uses OpenMAX to alpha blend the OSD onto the video. +- +- +- No 3D +- No 3D +- +- +- 3D Side by Side +- 3D Side by Side +- + + + Discard 3D Side by Side + Discard 3D Side by Side + +- +- 3D Top and Bottom +- 3D Top and Bottom +- + + + Discard 3D Top and Bottom +@@ -19783,10 +18293,6 @@ Most DVB-C transports transmit at 6900000 or 6875000 symbols per second.Interlaced + Interlaced + +- +- Interlaced (Normal) +- Interlaced (Normal) +- + + + Interlaced (Reversed) +@@ -19800,43 +18306,27 @@ Most DVB-C transports transmit at 6900000 or 6875000 symbols per second. Disabled @@ -2680,11 +4714,27 @@ index e4d869578b..a960c92743 100644 Interlaced (Reversed, Forced) - +- +- +- Top Left +- Top Left +- +- +- Bottom Left +- Bottom Left +- +- +- Top Right +- Top Right +- +- +- Bottom Right +- Bottom Right + Interlaced (Reversed, Forced) - Top Left -@@ -19866,7 +19872,7 @@ Most DVB-C transports transmit at 6900000 or 6875000 symbols per second. +@@ -19866,7 +18356,7 @@ Most DVB-C transports transmit at 6900000 or 6875000 symbols per second. Range @@ -2693,7 +4743,7 @@ index e4d869578b..a960c92743 100644 -@@ -19876,12 +19882,12 @@ Most DVB-C transports transmit at 6900000 or 6875000 symbols per second. Auto 3D @@ -2708,7 +4758,7 @@ index e4d869578b..a960c92743 100644 -@@ -19896,22 +19902,22 @@ Most DVB-C transports transmit at 6900000 or 6875000 symbols per second. H.Stretch @@ -2735,16 +4785,62 @@ index e4d869578b..a960c92743 100644 -@@ -19926,7 +19932,7 @@ Most DVB-C transports transmit at 6900000 or 6875000 symbols per second. Zoom %1x%2 @ (%3,%4) - Zoom %1x%2 @ (%3,%4) +- +- +- Studio Levels +- Studio Levels + Zoom %1x%2 @ (%3,%4) - Studio Levels -@@ -20149,7 +20155,7 @@ Most DVB-C transports transmit at 6900000 or 6875000 symbols per second. +@@ -19964,10 +18450,6 @@ Most DVB-C transports transmit at 6900000 or 6875000 symbols per second.Use default unless this source uses a different frequency table than the system wide table defined in the General settings. + Use default unless this source uses a different frequency table than the system wide table defined in the General settings. + +- +- User ID +- User ID +- + + + Use only the transmitted guide data. +@@ -19978,10 +18460,6 @@ Most DVB-C transports transmit at 6900000 or 6875000 symbols per second.Do not configure a grabber + Do Not Configure a Grabber + +- +- North America (SchedulesDirect.org) (Internal) +- North America (SchedulesDirect.org) (Internal) +- + + + Maximum number of simultaneous recordings MythTV will attempt using this device. If set to a value other than 1, MythTV can sometimes record multiple programs on the same multiplex or overlapping copies of the same program on a single channel. +@@ -20058,19 +18536,11 @@ Most DVB-C transports transmit at 6900000 or 6875000 symbols per second.Warning: already in use + Warning: Already in Use + +- +- Subtype +- Subtype +- + + + Frontend ID + Frontend ID + +- +- Wait for SEQ start header. +- Wait for SEQ Start Header +- + + + Open DVB card on demand +@@ -20149,7 +18619,7 @@ Most DVB-C transports transmit at 6900000 or 6875000 symbols per second. This name is displayed on screen when Live TV begins and in various other places. Make sure the last two characters are unique for each input or use a slash ('/') to designate the unique portion. @@ -2753,7 +4849,7 @@ index e4d869578b..a960c92743 100644 -@@ -20164,22 +20170,22 @@ Most DVB-C transports transmit at 6900000 or 6875000 symbols per second. Select a video source that is connected to one or more capture cards. Default is the video source selected in the Channel Editor page. @@ -2780,7 +4876,7 @@ index e4d869578b..a960c92743 100644 -@@ -20190,32 +20196,32 @@ Most DVB-C transports transmit at 6900000 or 6875000 symbols per second. Bouquet ID @@ -2819,7 +4915,7 @@ index e4d869578b..a960c92743 100644 -@@ -20235,27 +20241,27 @@ Your grabber does not provide channel numbers, so you have to set them manually. +@@ -20235,27 +18705,27 @@ Your grabber does not provide channel numbers, so you have to set them manually. Delivery system @@ -2852,7 +4948,7 @@ index e4d869578b..a960c92743 100644 -@@ -20305,12 +20311,12 @@ Your grabber does not provide channel numbers, so you have to set them manually. +@@ -20305,12 +18775,12 @@ Your grabber does not provide channel numbers, so you have to set them manually. Use HDHomeRun for active EIT scan @@ -2867,7 +4963,7 @@ index e4d869578b..a960c92743 100644 -@@ -20355,7 +20361,7 @@ Your grabber does not provide channel numbers, so you have to set them manually. +@@ -20355,7 +18825,7 @@ Your grabber does not provide channel numbers, so you have to set them manually. Sat>IP networked tuner @@ -2876,7 +4972,7 @@ index e4d869578b..a960c92743 100644 -@@ -20370,22 +20376,22 @@ Your grabber does not provide channel numbers, so you have to set them manually. +@@ -20370,22 +18840,22 @@ Your grabber does not provide channel numbers, so you have to set them manually. This shows the delivery system (modulation), for instance DVB-T2, that you have selected when you configured the capture card. This must be the same as the modulation used by the video source. @@ -2903,16 +4999,100 @@ index e4d869578b..a960c92743 100644 -@@ -20723,7 +20729,7 @@ Your grabber does not provide channel numbers, so you have to set them manually. +@@ -20582,10 +19052,6 @@ Your grabber does not provide channel numbers, so you have to set them manually. + Use DVB card for active EIT scan + Use DVB Card for Active EIT Scan + +- +- If enabled, activate active scanning for program data (EIT). When this option is enabled the DVB card is constantly in-use. +- If enabled, activate active scanning for program data (EIT). When this option is enabled the DVB card is constantly in-use. +- + + + DVB tuning delay (ms) +@@ -20616,19 +19082,11 @@ Your grabber does not provide channel numbers, so you have to set them manually. + Device IP or ID, tuner number and tuner type of available VBox devices. + Device IP or ID, tuner number and tuner type of available VBox devices. + +- +- Use HD HomeRun for active EIT scan +- Use HD HomeRun for Active EIT Scan +- + + + Schedule all virtual inputs on this device as a group. This is more efficient than scheduling each input individually. Additional, virtual inputs will be automatically added as needed to fulfill the recording load. + Schedule all virtual inputs on this device as a group. This is more efficient than scheduling each input individually. Additional, virtual inputs will be automatically added as needed to fulfill the recording load. + +- +- If enabled, activate active scanning for program data (EIT). When this option is enabled the HD HomeRun is constantly in-use. +- If enabled, activate active scanning for program data (EIT). When this option is enabled the HD HomeRun is constantly in-use. +- + + + V4L2 encoder devices (multirec capable) +@@ -20664,14 +19122,6 @@ Your grabber does not provide channel numbers, so you have to set them manually. + Input name + Input Name + +- +- Display name (optional) +- Display Name (optional) +- +- +- This name is displayed on screen when Live TV begins and when changing the selected input or card. If you use this, make sure the information is unique for each input. +- This name is displayed on screen when Live TV begins and when changing the selected input or card. If you use this, make sure the information is unique for each input. +- + + + Input group +@@ -20702,14 +19152,6 @@ Your grabber does not provide channel numbers, so you have to set them manually. + If there is more than one audio input, select which one to use. + If there is more than one audio input, select which one to use. + +- +- Data Direct lineup +- Data Direct Lineup +- +- +- Retrieve Lineups +- Retrieve Lineups +- + + + Video source name +@@ -20723,19 +19165,7 @@ Your grabber does not provide channel numbers, so you have to set them manually. This channel is shown when 'Watch TV' is selected on the main menu. It is updated on every Live TV channel change. When the value is not valid a suitable default will be chosen. - +- +- +- Starting Live TV channel. +- Starting Live TV Channel +- +- +- This is updated on every successful channel change. +- This is updated on every successful channel change. +- +- +- The following programs will be recorded instead: +- The following programs will be recorded instead: + This channel is shown when 'Watch TV' is selected on the main menu. It is updated on every Live TV channel change. When the value is not valid a suitable default will be chosen. - Starting Live TV channel. -@@ -21529,7 +21535,7 @@ Your grabber does not provide channel numbers, so you have to set them manually. + +@@ -21213,10 +19643,6 @@ Your grabber does not provide channel numbers, so you have to set them manually. + Run guide data program at time suggested by the grabber. + Run guide data program at time suggested by the grabber. + +- +- If enabled, allow a DataDirect guide data provider to specify the next download time in order to distribute load on their servers. Guide data program execution start/end times are also ignored. +- If enabled, allow a DataDirect guide data provider to specify the next download time in order to distribute load on their servers. Guide data program execution start/end times are also ignored. +- + + + Guide data program +@@ -21529,7 +19955,7 @@ Your grabber does not provide channel numbers, so you have to set them manually. If enabled, allow a guide data provider to specify the next download time in order to distribute load on their servers. Guide data program execution start/end times are also ignored. @@ -2921,7 +5101,7 @@ index e4d869578b..a960c92743 100644 -@@ -21610,12 +21616,12 @@ Your grabber does not provide channel numbers, so you have to set them manually. +@@ -21610,21 +20036,17 @@ Your grabber does not provide channel numbers, so you have to set them manually. Card %1 (%2) No video source connected @@ -2932,12 +5112,13 @@ index e4d869578b..a960c92743 100644 Card %1 (%2) No visible channels found - +- +- +- Card %1 (type %2) is set to start on channel %3, which does not exist. +- Card %1 (type %2) is set to start on channel %3, which does not exist. + Card %1 (%2) No Visible Channels Found - Card %1 (type %2) is set to start on channel %3, which does not exist. -@@ -21624,7 +21630,7 @@ Your grabber does not provide channel numbers, so you have to set them manually. - The display names for one or more inputs are not sufficiently unique. They must be set and the last two characters must be unique because some themes use them to identify the input. - @@ -2945,7 +5126,53 @@ index e4d869578b..a960c92743 100644 -@@ -22389,7 +22395,7 @@ Your grabber does not provide channel numbers, so you have to set them manually. +@@ -21773,34 +20195,6 @@ Your grabber does not provide channel numbers, so you have to set them manually. + videos + videos + +- +- >1Gbps +- >1Gbps +- +- +- %1Mbps +- %1Mbps +- +- +- %1MHz +- %1MHz +- +- +- %1kHz +- %1kHz +- +- +- %1kbps +- %1kbps +- +- +- %1bps +- %1bps +- +- +- %1Hz +- %1Hz +- + + + %1 TB +@@ -22066,10 +20460,6 @@ Your grabber does not provide channel numbers, so you have to set them manually. + Error opening audio device (%1) + Error Opening Audio Device (%1) + +- +- Failed to open stream (%1) +- Failed to Open Stream (%1) +- + + + Choose a channel name (any string, long version) +@@ -22389,7 +20779,7 @@ Your grabber does not provide channel numbers, so you have to set them manually. Music @@ -2954,7 +5181,7 @@ index e4d869578b..a960c92743 100644 -@@ -22421,123 +22427,124 @@ Your grabber does not provide channel numbers, so you have to set them manually. +@@ -22421,123 +20811,124 @@ Your grabber does not provide channel numbers, so you have to set them manually. Select a capture card from the capture cards that are connected to the currently selected video source. @@ -3103,7 +5330,7 @@ index e4d869578b..a960c92743 100644 -@@ -22647,12 +22654,12 @@ Connect video source '%1' to a capture card in the 'Input Connect +@@ -22647,12 +21038,12 @@ Connect video source '%1' to a capture card in the 'Input Connect Restore Data @@ -3118,7 +5345,7 @@ index e4d869578b..a960c92743 100644 -@@ -22660,32 +22667,32 @@ Connect video source '%1' to a capture card in the 'Input Connect +@@ -22660,32 +21051,32 @@ Connect video source '%1' to a capture card in the 'Input Connect Friendly name @@ -3157,7 +5384,7 @@ index e4d869578b..a960c92743 100644 -@@ -22693,12 +22700,12 @@ Connect video source '%1' to a capture card in the 'Input Connect +@@ -22693,12 +21084,12 @@ Connect video source '%1' to a capture card in the 'Input Connect Device ID @@ -3172,7 +5399,7 @@ index e4d869578b..a960c92743 100644 -@@ -22706,17 +22713,17 @@ Connect video source '%1' to a capture card in the 'Input Connect +@@ -22706,17 +21097,17 @@ Connect video source '%1' to a capture card in the 'Input Connect Available devices @@ -3193,7 +5420,7 @@ index e4d869578b..a960c92743 100644 -@@ -22724,7 +22731,7 @@ Connect video source '%1' to a capture card in the 'Input Connect +@@ -22724,7 +21115,7 @@ Connect video source '%1' to a capture card in the 'Input Connect Error: stream handler died @@ -3202,7 +5429,7 @@ index e4d869578b..a960c92743 100644 -@@ -22856,7 +22863,7 @@ Connect video source '%1' to a capture card in the 'Input Connect +@@ -22856,7 +21247,7 @@ Connect video source '%1' to a capture card in the 'Input Connect Channel Scan @@ -3211,7 +5438,7 @@ index e4d869578b..a960c92743 100644 -@@ -23362,9 +23369,9 @@ is located in %2 +@@ -23362,9 +21753,9 @@ is located in %2 %n (is) Deleted and consume(s) %1 @@ -3223,7 +5450,18 @@ index e4d869578b..a960c92743 100644 -@@ -23405,12 +23412,12 @@ is located in %2 +@@ -23387,10 +21778,6 @@ is located in %2 + Schedule Status + Schedule Status + +- +- Log Entries +- Log Entries +- + + + +@@ -23405,12 +21792,12 @@ is located in %2 Video decoders @@ -3238,16 +5476,28 @@ index e4d869578b..a960c92743 100644 -@@ -23421,7 +23428,7 @@ is located in %2 +@@ -23421,19 +21808,7 @@ is located in %2 AutoExpire List - AutoExpire List +- +- +- Acknowledge all log entries at this priority level or lower? +- Acknowledge all log entries at this priority level or lower? +- +- +- Setting priority level to %1 +- Setting priority level to %1 +- +- +- Acknowledge this log entry? +- Acknowledge this log entry? + Auto-Expire List - Acknowledge all log entries at this priority level or lower? -@@ -23474,7 +23481,7 @@ is located in %2 + +@@ -23474,7 +21849,7 @@ is located in %2 AutoExpire Actions: @@ -3256,7 +5506,7 @@ index e4d869578b..a960c92743 100644 -@@ -23494,7 +23501,7 @@ is located in %2 +@@ -23494,7 +21869,7 @@ is located in %2 Disable AutoExpire @@ -3265,7 +5515,7 @@ index e4d869578b..a960c92743 100644 -@@ -23514,27 +23521,27 @@ is located in %2 +@@ -23514,27 +21889,27 @@ is located in %2 Started: %1 @@ -3298,7 +5548,7 @@ index e4d869578b..a960c92743 100644 -@@ -23549,12 +23556,12 @@ is located in %2 +@@ -23549,16 +21924,12 @@ is located in %2 WARNING: is mythfilldatabase running? @@ -3309,11 +5559,15 @@ index e4d869578b..a960c92743 100644 Machine Status shows some operating system statistics of this machine and the MythTV server. - +- +- +- DataDirect Status: +- DataDirect Status: + Machine Status shows some operating system statistics of this machine and the MythTV server. - DataDirect Status: -@@ -23744,37 +23751,37 @@ is located in %2 + +@@ -23744,37 +22115,37 @@ is located in %2 Display information. @@ -3358,7 +5612,7 @@ index e4d869578b..a960c92743 100644 -@@ -23784,7 +23791,7 @@ is located in %2 +@@ -23784,7 +22155,7 @@ is located in %2 Rendering @@ -3367,7 +5621,22 @@ index e4d869578b..a960c92743 100644 -@@ -23837,43 +23844,43 @@ is located in %2 +@@ -23816,14 +22187,6 @@ is located in %2 + Job Queue is currently empty. + Job Queue is currently empty. + +- +- Machine Status shows some operating system statistics of this machine +- Machine Status shows some operating system statistics of this machine. +- +- +- and the MythTV server +- and the MythTV server +- + + + System: +@@ -23837,43 +22200,43 @@ is located in %2 System time @@ -3419,7 +5688,22 @@ index e4d869578b..a960c92743 100644 -@@ -23909,7 +23916,7 @@ is located in %2 +@@ -23881,14 +22244,6 @@ is located in %2 + Load + Load + +- +- unknown +- unknown +- +- +- failed +- failed +- + + + +@@ -23909,7 +22264,7 @@ is located in %2 IP @@ -3428,7 +5712,7 @@ index e4d869578b..a960c92743 100644 -@@ -23934,26 +23941,26 @@ is located in %2 +@@ -23934,26 +22289,26 @@ is located in %2 Available hardware decoders for video playback. @@ -3460,7 +5744,7 @@ index e4d869578b..a960c92743 100644 -@@ -24049,7 +24056,7 @@ Directory from Storage Group? +@@ -24049,7 +22404,7 @@ Directory from Storage Group? Enter the name of the new storage group @@ -3469,7 +5753,197 @@ index e4d869578b..a960c92743 100644 -@@ -24757,12 +24764,12 @@ Do you wish to continue watching? +@@ -24145,20 +22500,6 @@ Directory from Storage Group? + Seek: + Seek: + +- +- Sorry, PBP only supports %n video stream(s) +- +- Sorry, PBP only supports %n video stream +- Sorry, PBP only supports %n video streams +- +- +- +- Sorry, PIP only supports %n video stream(s) +- +- Sorry, PIP only supports %n video stream +- Sorry, PIP only supports %n video streams +- +- + + + Forward +@@ -24202,10 +22543,6 @@ Directory from Storage Group? + Jump To + Jump To + +- +- Creating PBP +- Creating PBP +- + + + +@@ -24218,76 +22555,12 @@ Directory from Storage Group? + Are you sure you want to delete: + Are you sure you want to delete: + +- +- Creating PIP +- Creating PIP +- +- +- Cannot create PBP +- Cannot create PBP +- +- +- Cannot create PIP +- Cannot create PIP +- +- +- Stopping PIP +- Stopping PIP +- +- +- Stopping PBP +- Stopping PBP +- +- +- Stopping all PIPs +- Stopping All PIPs +- +- +- Stopping all PBPs +- Stopping All PBPs +- +- +- Too many views to switch +- Too Many Views to Switch +- + + + + Paused + Paused + +- +- Aux Paused +- Aux Paused +- +- +- Speed 16X +- Speed 16X +- +- +- Speed 8X +- Speed 8X +- +- +- Speed 3X +- Speed 3X +- +- +- Speed 2X +- Speed 2X +- +- +- Speed 1/3X +- Speed 1/3X +- +- +- Speed 1/8X +- Speed 1/8X +- +- +- Speed 1/16X +- Speed 1/16X +- + + + Forward %1X +@@ -24519,48 +22792,16 @@ Directory from Storage Group? + Adjust Time Stretch + Adjust Time Stretch + +- +- Upmixer On +- Upmixer On +- +- +- Upmixer Off +- Upmixer Off +- + + + Adjust Subtitle Delay + Adjust Subtitle Delay + +- +- Subtitle Delay +- Subtitle Delay +- +- +- Audio Sync +- Audio Sync +- + + + Adjust Audio Sync + Adjust Audio Sync + +- +- Mute Off +- Mute Off +- +- +- Mute On +- Mute On +- +- +- Left Channel Muted +- Left Channel Muted +- +- +- Right Channel Muted +- Right Channel Muted +- + + + Sleep +@@ -24590,20 +22831,6 @@ Do you wish to continue watching? + MythTV has been idle for %1 minutes and will exit in %d seconds. Are you still watching? + MythTV has been idle for %1 minutes and will exit in %d seconds. Are you still watching? + +- +- PiP +- Picture-in-Picture +- PIP +- +- +- PbP +- Picture-by-Picture +- PBP +- +- +- Disabling %1 for recording +- Disabling %1 for Recording +- + + + +@@ -24615,10 +22842,6 @@ Do you wish to continue watching? + Cancel Record + Cancel Record + +- +- Active Changed +- Active Changed +- + + + +@@ -24757,12 +22980,12 @@ Do you wish to continue watching? Auto @@ -3484,7 +5958,69 @@ index e4d869578b..a960c92743 100644 -@@ -24999,12 +25006,12 @@ Do you wish to continue watching? +@@ -24804,10 +23027,6 @@ Do you wish to continue watching? + 1.5x + 1.5x + +- +- Enable Audio Upmixer +- Enable Audio Upmixer +- + + + Disable Subtitles +@@ -24828,20 +23047,6 @@ Do you wish to continue watching? + Enable Forced Subtitles + Enable Forced Subtitles + +- +- Close PIP(s) +- +- Close PIP +- Close PIPs +- +- +- +- Close PBP(s) +- +- Close PBP +- Close PBPs +- +- + + + Playback Data +@@ -24868,18 +23073,6 @@ Do you wish to continue watching? + Playback Compact Menu + Playback Compact Menu + +- +- Move BottomLine off screen +- Move Bottom Line Off Screen +- +- +- Save manual zoom for BottomLine +- Save Manual Zoom for Bottom Line +- +- +- Jump to bookmark +- Jump to Bookmark +- + + + Schedule +@@ -24951,10 +23144,6 @@ Do you wish to continue watching? + Searching + Searching... + +- +- Volume +- Volume +- + + + Time Stretch +@@ -24999,12 +23188,12 @@ Do you wish to continue watching? Turn Auto-Expire OFF @@ -3499,7 +6035,152 @@ index e4d869578b..a960c92743 100644 -@@ -25381,12 +25388,12 @@ Do you wish to continue watching? +@@ -25026,10 +23215,6 @@ Do you wish to continue watching? + Chapter + Chapter + +- +- Sorry, cannot mix PBP and PIP views +- Cannot Mix PBP and PIP Views +- + + + +@@ -25047,10 +23232,6 @@ Do you wish to continue watching? + Video + Video + +- +- Visualisation Off +- Visualization Off +- + + + TV +@@ -25061,10 +23242,6 @@ Do you wish to continue watching? + Adjust Subtitle Zoom + Adjust Subtitle Zoom + +- +- Subtitle Zoom +- Subtitle Zoom +- + + + Advanced +@@ -25155,38 +23332,6 @@ Do you wish to continue watching? + Cancel Playlist + Cancel Playlist + +- +- Open Live TV PIP +- Open Live TV PIP +- +- +- Open Live TV PBP +- Open Live TV PBP +- +- +- Open Recording PIP +- Open Recording PIP +- +- +- Open Recording PBP +- Open Recording PBP +- +- +- Change Active Window +- Change Active Window +- +- +- Swap Windows +- Swap Windows +- +- +- Switch to PIP +- Switch to PIP +- +- +- Switch to PBP +- Switch to PBP +- + + + No, keep it +@@ -25249,27 +23394,11 @@ Do you wish to continue watching? + 3D + 3D + +- +- Disable Night Mode +- Disable Night Mode +- +- +- Enable Night Mode +- Enable Night Mode +- +- +- Side by Side +- Side by Side +- + + + Discard Side by Side + Discard Side by Side + +- +- Top and Bottom +- Top and Bottom +- + + + Discard Top and Bottom +@@ -25295,21 +23424,6 @@ Do you wish to continue watching? + Adjust + Adjust + +- +- (I) +- Interlaced (Normal) +- (I) +- +- +- (i) +- Interlaced (Reversed) +- (i) +- +- +- (P) +- Progressive +- (P) +- + + + MythTV is already using all available inputs for the channel you selected. If you want to watch an in-progress recording, select one from the playback menu. If you want to watch Live TV, cancel one of the in-progress recordings from the delete menu. +@@ -25320,22 +23434,6 @@ Do you wish to continue watching? + Video Scan + Video Scan + +- +- Detect +- Detect +- +- +- Progressive +- Progressive +- +- +- Interlaced (Normal) +- Interlaced (Normal) +- +- +- Interlaced (Reversed) +- Interlaced (Reversed) +- + + + +@@ -25381,12 +23479,12 @@ Do you wish to continue watching? Auto-Expire OFF @@ -3514,7 +6195,22 @@ index e4d869578b..a960c92743 100644 -@@ -25518,7 +25525,7 @@ Do you wish to continue watching? +@@ -25443,14 +23541,6 @@ Do you wish to continue watching? + You are exiting %1 + You Are Exiting %1 + +- +- Save this position and go to the menu +- Save and Exit +- +- +- Do not save, just exit to the menu +- Exit Without Saving +- + + + Exit %1 +@@ -25518,7 +23608,7 @@ Do you wish to continue watching? See 'Tuning timeout' in mythtv-setup for this input. @@ -3523,7 +6219,7 @@ index e4d869578b..a960c92743 100644 -@@ -26260,7 +26267,7 @@ When you have completed your configuration, press "OK" to search. Allow Recordings to Auto-Expire @@ -3532,7 +6228,22 @@ index e4d869578b..a960c92743 100644 -@@ -26590,7 +26597,7 @@ When you have completed your configuration, press "OK" to search.Rating: + Rating: + +- +- Running Time: +- Running Time: +- +- +- Show Times: +- Show Times: +- + + + Channel Priorities +@@ -26590,7 +24672,7 @@ When you have completed your configuration, press "OK" to search. (1) Time (2) Title @@ -3541,16 +6252,26 @@ index e4d869578b..a960c92743 100644 -@@ -27083,7 +27090,7 @@ When you have completed your configuration, press "OK" to search. This is a Christmas version of the popular MythCenter-wide theme with animated snow backgrounds and festive colour scheme. - This is a Christmas version of the popular MythCenter-wide theme with animated snow backgrounds and festive colour scheme. +- +- +- No videos in library, or no files found. +- If you have configured a video directory, press "M" (or the MENU key) and select "Scan for Changes." +- No videos in library, or no files found. +- If you have configured a video directory, press "M" (or the MENU key) and select "Scan for Changes." +- +- +- Filters Video List +- Filters Video List + This is a Christmas version of the popular MythCenter-wide theme with animated snow backgrounds and festive color scheme. - No videos in library, or no files found. -@@ -27144,34 +27151,34 @@ When you have completed your configuration, press "OK" to search. +@@ -27144,34 +25216,34 @@ When you have completed your configuration, press "OK" to search. Wizard @@ -3591,7 +6312,7 @@ index e4d869578b..a960c92743 100644 -@@ -27179,58 +27186,59 @@ To schedule a recording, exit this screen and select 'Program Guide' o +@@ -27179,58 +25251,59 @@ To schedule a recording, exit this screen and select 'Program Guide' o To schedule a recording, exit this screen and Select 'Program Guide' or 'Program Finder' @@ -3662,7 +6383,7 @@ index e4d869578b..a960c92743 100644 -@@ -27239,58 +27247,63 @@ Select 'Program Guide' or 'Program Finder' +@@ -27239,58 +25312,63 @@ Select 'Program Guide' or 'Program Finder' [font]myverysmallsub[/font]Part |PARTNUMBER| of %%PARTTOTAL%% [font]myverysmallsub[/font]|CAST| %%[font]myverysmallsub[/font] [font]myverysmalllabel[/font]Director: |DIRECTOR| % @@ -3737,7 +6458,7 @@ index e4d869578b..a960c92743 100644 -@@ -27310,53 +27323,53 @@ Select 'Program Guide' or 'Program Finder' +@@ -27310,53 +25388,53 @@ Select 'Program Guide' or 'Program Finder' no info available @@ -3801,7 +6522,7 @@ index e4d869578b..a960c92743 100644 -@@ -27398,7 +27411,7 @@ Select 'Program Guide' or 'Program Finder' +@@ -27398,7 +25476,7 @@ Select 'Program Guide' or 'Program Finder' (1) All (2) Important @@ -3810,7 +6531,7 @@ index e4d869578b..a960c92743 100644 -@@ -27512,540 +27525,548 @@ Once you have completed your modifications, click the "Save" button. % - |year%% - |length% @@ -4465,7 +7186,7 @@ index e4d869578b..a960c92743 100644 -@@ -28055,76 +28076,76 @@ Once you have completed your modifications, click the "Save" button. %channum% - %callsign% | %STARTTIME%-%ENDTIME% (%LENMINS%) @@ -4558,7 +7279,7 @@ index e4d869578b..a960c92743 100644 -@@ -28132,203 +28153,204 @@ Once you have completed your modifications, click the "Save" button. %playlistplayedtime% of %playlisttotaltime% @@ -4803,7 +7524,7 @@ index e4d869578b..a960c92743 100644 -@@ -28336,1182 +28358,1182 @@ Once you have completed your modifications, click the "Save" button. (%statusbefore%) -> (%statusafter%) @@ -6222,7 +8943,7 @@ index e4d869578b..a960c92743 100644 -@@ -29521,487 +29543,487 @@ Once you have completed your modifications, click the "Save" button. Detailed information about your video @@ -6807,7 +9528,7 @@ index e4d869578b..a960c92743 100644 -@@ -30011,12 +30033,12 @@ Once you have completed your modifications, click the "Save" button. Import and Export @@ -6822,7 +9543,7 @@ index e4d869578b..a960c92743 100644 -@@ -30026,918 +30048,918 @@ Once you have completed your modifications, click the "Save" button. Import your music from CD @@ -7632,13 +10353,13 @@ index e4d869578b..a960c92743 100644 Play Back Group: - -+ ++ Playback Group: Play Back Group: %1 - -+ ++ Playback Group: %1 @@ -7692,7 +10413,7 @@ index e4d869578b..a960c92743 100644 Playback starting ... - -+ ++ Playback starting... @@ -7924,7 +10645,7 @@ index e4d869578b..a960c92743 100644 -@@ -30945,22 +30967,22 @@ Once you have completed your modifications, click the "Save" button. Rated: %1 @@ -7951,7 +10672,7 @@ index e4d869578b..a960c92743 100644 -@@ -30970,167 +30992,167 @@ Once you have completed your modifications, click the "Save" button. Read the @@ -8152,7 +10873,7 @@ index e4d869578b..a960c92743 100644 -@@ -31138,1488 +31160,1488 @@ Once you have completed your modifications, click the "Save" button. Remote @@ -9938,7 +12659,7 @@ index e4d869578b..a960c92743 100644 -@@ -32629,22 +32651,22 @@ Once you have completed your modifications, click the "Save" button. upcoming recordings @@ -9965,7 +12686,7 @@ index e4d869578b..a960c92743 100644 -@@ -32901,7 +32923,7 @@ Once you have completed your modifications, click the "Save" button. Browse the internet or your video library Temporary fix @@ -9974,7 +12695,7 @@ index e4d869578b..a960c92743 100644 -@@ -33058,7 +33080,7 @@ Errata: %ERRATA% +@@ -33058,7 +31145,7 @@ Errata: %ERRATA% Perform metadata update after video scan: @@ -9983,7 +12704,7 @@ index e4d869578b..a960c92743 100644 -@@ -33068,12 +33090,12 @@ Errata: %ERRATA% +@@ -33068,12 +31155,12 @@ Errata: %ERRATA% Enable metadata in file browse mode: @@ -9998,7 +12719,18 @@ index e4d869578b..a960c92743 100644 -@@ -33132,7 +33154,7 @@ Errata: %ERRATA% +@@ -33085,10 +31172,6 @@ Errata: %ERRATA% + Select Time & Date + Select Time & Date + +- +- %startdate%%| startyear%, %starttime% +- %startdate%%| startyear%, %starttime% +- + + + You haven't defined any channels +@@ -33132,7 +31215,7 @@ Errata: %ERRATA% Perform daily updates of recording artwork @@ -10007,7 +12739,7 @@ index e4d869578b..a960c92743 100644 -@@ -33142,17 +33164,17 @@ Errata: %ERRATA% +@@ -33142,17 +31225,17 @@ Errata: %ERRATA% Submit your hardware profile @@ -10028,7 +12760,7 @@ index e4d869578b..a960c92743 100644 -@@ -33575,7 +33597,7 @@ Errata: %ERRATA% +@@ -33575,7 +31658,7 @@ Errata: %ERRATA% 1 @@ -10037,7 +12769,7 @@ index e4d869578b..a960c92743 100644 -@@ -33585,12 +33607,12 @@ Errata: %ERRATA% +@@ -33585,12 +31668,12 @@ Errata: %ERRATA% 3 @@ -10052,7 +12784,7 @@ index e4d869578b..a960c92743 100644 -@@ -33705,7 +33727,7 @@ Errata: %ERRATA% +@@ -33705,7 +31788,7 @@ Errata: %ERRATA% MPEG2 @@ -10061,7 +12793,7 @@ index e4d869578b..a960c92743 100644 -@@ -33790,7 +33812,7 @@ Errata: %ERRATA% +@@ -33790,7 +31873,7 @@ Errata: %ERRATA% 720P @@ -10070,7 +12802,28 @@ index e4d869578b..a960c92743 100644 -@@ -34503,24 +34525,24 @@ Errata: %ERRATA% +@@ -34149,7 +32232,8 @@ Errata: %ERRATA% + + + Let's set up your DVR! On the next few screens, we will configure your system to play back audio and video, optimize your color and contrast, and make sure we are taking advantage of all of your hardware. Press next to begin! +- Let's set up your DVR! On the next few screens, we will configure your system to play back audio and video, optimize your color and contrast, and make sure we are taking advantage of all of your hardware. Press next to begin! ++ ++Let's set up your DVR! On the next few screens, we will configure your system to play back audio and video, optimize your color and contrast, and make sure we are taking advantage of all of your hardware. Press next to begin! + + + +@@ -34336,10 +32420,6 @@ Errata: %ERRATA% + Airdate: + Airdate: + +- +- Theater name +- Theater name +- + + + Age: +@@ -34503,24 +32583,24 @@ Errata: %ERRATA% h.264 @@ -10099,7 +12852,18 @@ index e4d869578b..a960c92743 100644 -@@ -35037,7 +35059,7 @@ Finally, you can test, immediately activate, store, or cancel your rule. + +- +- Movie Times +- Movie Times +- + + + Edit Keys +@@ -35037,7 +33113,7 @@ Finally, you can test, immediately activate, store, or cancel your rule. (1) All (2) Important @@ -10108,7 +12872,7 @@ index e4d869578b..a960c92743 100644 -@@ -35077,7 +35099,7 @@ Finally, you can test, immediately activate, store, or cancel your rule. (1)Time (2)Title @@ -10117,7 +12881,7 @@ index e4d869578b..a960c92743 100644 -@@ -35429,7 +35451,7 @@ Finally, you can test, immediately activate, store, or cancel your rule. (1) Channel (2) Priority @@ -10126,7 +12890,7 @@ index e4d869578b..a960c92743 100644 -@@ -35454,7 +35476,7 @@ Finally, you can test, immediately activate, store, or cancel your rule. (1) Title (2) Priority (4) Type @@ -10135,7 +12899,7 @@ index e4d869578b..a960c92743 100644 -@@ -36425,7 +36447,7 @@ If you select "Use Default Player," the player command set for the ext +@@ -36425,7 +34501,7 @@ If you select "Use Default Player," the player command set for the ext Browse Videos @@ -10144,7 +12908,7 @@ index e4d869578b..a960c92743 100644 -@@ -36771,7 +36793,7 @@ If you select "Use Default Player," the player command set for the ext +@@ -36771,7 +34847,7 @@ If you select "Use Default Player," the player command set for the ext Hardware profile @@ -10153,7 +12917,7 @@ index e4d869578b..a960c92743 100644 -@@ -36966,7 +36988,7 @@ If you select "Use Default Player," the player command set for the ext +@@ -36966,7 +35042,7 @@ If you select "Use Default Player," the player command set for the ext A blue theme. Originally designed before the MythUI rewrite, MythCenter has been updated to take advantage of the new UI library while still maintaining the look and feel that long-time MythTV users are used to. @@ -10162,7 +12926,7 @@ index e4d869578b..a960c92743 100644 -@@ -37021,7 +37043,7 @@ If you select "Use Default Player," the player command set for the ext +@@ -37021,7 +35097,7 @@ If you select "Use Default Player," the player command set for the ext Perform metadata update after video scan @@ -10171,7 +12935,7 @@ index e4d869578b..a960c92743 100644 -@@ -37031,12 +37053,12 @@ If you select "Use Default Player," the player command set for the ext +@@ -37031,12 +35107,12 @@ If you select "Use Default Player," the player command set for the ext Display unknown file types @@ -10186,7 +12950,7 @@ index e4d869578b..a960c92743 100644 -@@ -37145,7 +37167,7 @@ dd MMM yyyy +@@ -37145,7 +35221,7 @@ dd MMM yyyy Browse Internet Video @@ -10195,7 +12959,7 @@ index e4d869578b..a960c92743 100644 -@@ -37215,7 +37237,7 @@ dd MMM yyyy +@@ -37215,7 +35291,7 @@ dd MMM yyyy A "Media Center" menu theme. This menu theme is basically meant to bring the common "media player/DVR" functionality to the forefront, organize the plugins, and to make some of myth's more daunting options a little more subtle. Places the common media items on the top level (Recordings, Videos, TV, DVD, Music), places all informational plugins in "Plugins." Puts all setup and scheduling in "Advanced." The top two menu levels will seem new, the ones beneath Advanced->Setup are as in the default menu. @@ -10204,7 +12968,14 @@ index e4d869578b..a960c92743 100644 -@@ -37268,7 +37290,7 @@ dd MMM yyyy +@@ -37261,14 +35337,10 @@ dd MMM yyyy + + + TransportListEditor +- +- Multiplex Editor +- Multiplex Editor +- Transport Editor @@ -10213,7 +12984,85 @@ index e4d869578b..a960c92743 100644 -@@ -38035,7 +38057,7 @@ dd MMM yyyy +@@ -37300,77 +35372,6 @@ dd MMM yyyy + Media Servers + + +- +- UnZip +- +- ZIP operation completed successfully. +- ZIP operation completed successfully. +- +- +- Failed to initialize or load zlib library. +- Failed to initialize or load zlib library. +- +- +- zlib library error. +- zlib library error. +- +- +- Unable to create or open file. +- Unable to create or open file. +- +- +- Partially corrupted archive. Some files might be extracted. +- Partially corrupted archive. Some files might be extracted. +- +- +- Corrupted archive. +- Corrupted archive. +- +- +- Wrong password. +- Wrong password. +- +- +- No archive has been created yet. +- No archive has been created yet. +- +- +- File or directory does not exist. +- File or directory does not exist. +- +- +- File read error. +- File read error. +- +- +- File write error. +- File write error. +- +- +- File seek error. +- File seek error. +- +- +- Unable to create a directory. +- Unable to create a directory. +- +- +- Invalid device. +- Invalid device. +- +- +- Invalid or incompatible zip archive. +- Invalid or incompatible zip archive. +- +- +- Inconsistent headers. Archive might be corrupted. +- Inconsistent headers. Archive might be corrupted. +- +- +- Unknown error. +- Unknown error. +- +- + + V4L2encGroup + +@@ -38035,7 +36036,7 @@ dd MMM yyyy If set, you will not be able to return to this screen and reset the Parental PIN without first entering the current PIN. You have been warned. @@ -10222,7 +13071,14 @@ index e4d869578b..a960c92743 100644 -@@ -38202,7 +38224,7 @@ dd MMM yyyy +@@ -38195,14 +36196,10 @@ dd MMM yyyy + Separate video modes for GUI and TV playback + Separate Video Modes for GUI and TV Playback + +- +- Switch X Window video modes for TV. Requires "xrandr" support. +- Switch X Window video modes for TV. Requires "xrandr" support. +- Switch video modes for playback depending on the source resolution and frame rate. @@ -10231,7 +13087,7 @@ index e4d869578b..a960c92743 100644 -@@ -38259,7 +38281,7 @@ dd MMM yyyy +@@ -38259,7 +36256,7 @@ dd MMM yyyy Default refresh rate when watching a video. Leave at "Auto" to automatically use the best available @@ -10240,7 +13096,7 @@ index e4d869578b..a960c92743 100644 -@@ -38274,12 +38296,12 @@ dd MMM yyyy +@@ -38274,12 +36271,12 @@ dd MMM yyyy Aspect ratio when watching a video. Leave at "%1" to use ratio reported by the monitor. Set to 16:9 or 4:3 to force a specific aspect ratio. @@ -10255,7 +13111,7 @@ index e4d869578b..a960c92743 100644 -@@ -38295,12 +38317,12 @@ dd MMM yyyy +@@ -38295,12 +36292,12 @@ dd MMM yyyy Pause while switching video modes (ms) @@ -10270,7 +13126,21 @@ index e4d869578b..a960c92743 100644 -@@ -38445,7 +38467,7 @@ If they no longer exist please remove them +@@ -38308,13 +36305,6 @@ dd MMM yyyy + Overrides for Specific Video Sizes + + +- +- VideoOutWindow +- +- Zoom %1x%2 @ (%3,%4) +- Zoom %1x%2 @ (%3,%4) +- +- + + VideoScanner + +@@ -38445,7 +36435,7 @@ If they no longer exist please remove them Video Source @@ -10279,7 +13149,7 @@ index e4d869578b..a960c92743 100644 -@@ -38453,7 +38475,7 @@ If they no longer exist please remove them +@@ -38453,7 +36443,7 @@ If they no longer exist please remove them The following programs will be recorded instead: @@ -10288,7 +13158,7 @@ index e4d869578b..a960c92743 100644 -@@ -38591,12 +38613,12 @@ If they no longer exist please remove them +@@ -38591,12 +36581,12 @@ If they no longer exist please remove them Exclude recordings not set for Auto-Expire -- cgit v0.12