1. No user installed addons are supported, python or otherwise.
2. No, they really are not supported.
3. They are not coming back
4. Read from 1. again

Any mention of illegal streaming sites, addons or any pirated material will not be tolerated. This is not democracy and any offenders will be banned and posts deleted immediately without warning.

Other than that, we hope you enjoy MrMC so far and we welcome any input and feedback you might have.

Team MrMC.

Testing MrMC 3.4.1

Old TestFlight threads
Locked
User avatar
davilla
Team MrMC
Posts: 4377
Joined: 26 Oct 2015, 17:01

Re: Testing MrMC 3.4.1

Post by davilla »

jabohn wrote: 10 Feb 2018, 19:19 Re: list wrapping... was the always the case? When I browse sources, it doesn't wrap like it does when I browse my library. When I scroll up at the top of the list, it doesn't wrap down to the bottom.
Auto-wrap is there, it just will not wrap unless you start on top/bottom item. This prevents short list from wrapping around and around.
jabohn
Posts: 449
Joined: 20 Nov 2015, 18:53

Re: Testing MrMC 3.4.1

Post by jabohn »

Just tested again. I should have clarified. It will auto-wrap if you scroll but not if you tap.
CallClear
Posts: 58
Joined: 29 Mar 2016, 21:29

Re: Testing MrMC 3.4.1

Post by CallClear »

@davilla, I went back and installed previous builds to see where exactly chapter skip first broke for me. It works fine on build 3.4.1 (180130.1846). It broke on the next build, 3.4.1 (180131.137). So it is something that changed between those two builds. Does that help?
User avatar
davilla
Team MrMC
Posts: 4377
Joined: 26 Oct 2015, 17:01

Re: Testing MrMC 3.4.1

Post by davilla »

v3.5.0 (180210.1903) @20180210-66d33d0
fixed, single/double/triple taps when scrubbing
fixed, crash if a control vanishes during render cycle
fixed, strm detection for scrubbing exclusion
User avatar
davilla
Team MrMC
Posts: 4377
Joined: 26 Oct 2015, 17:01

Re: Testing MrMC 3.4.1

Post by davilla »

@CallClear debuglog running v3.5.0 (180210.1903) please
CallClear
Posts: 58
Joined: 29 Mar 2016, 21:29

Re: Testing MrMC 3.4.1

Post by CallClear »

User avatar
davilla
Team MrMC
Posts: 4377
Joined: 26 Oct 2015, 17:01

Re: Testing MrMC 3.4.1

Post by davilla »

use file manager and fetch profile/keymaps/customcontroller.SiriRemote.xml and post it somewhere
User avatar
davilla
Team MrMC
Posts: 4377
Joined: 26 Oct 2015, 17:01

Re: Testing MrMC 3.4.1

Post by davilla »

DEBUG: ReadEditDecisionLists - Assuming 24p -> NTSC conversion interlaced content. Adjusted frames per second from 47.952 (~47.952 fps) to 23.976

Do you have EDL's present ? They can override seeking.
CallClear
Posts: 58
Joined: 29 Mar 2016, 21:29

Re: Testing MrMC 3.4.1

Post by CallClear »

davilla wrote: 10 Feb 2018, 23:00 DEBUG: ReadEditDecisionLists - Assuming 24p -> NTSC conversion interlaced content. Adjusted frames per second from 47.952 (~47.952 fps) to 23.976

Do you have EDL's present ? They can override seeking.
No, I haven't used EDL's in years..
davilla wrote: 10 Feb 2018, 22:56 use file manager and fetch profile/keymaps/customcontroller.SiriRemote.xml and post it somewhere
https://pastebin.com/v4tmDSbT
User avatar
davilla
Team MrMC
Posts: 4377
Joined: 26 Oct 2015, 17:01

Re: Testing MrMC 3.4.1

Post by davilla »

Code: Select all

  <FullscreenVideo>
    <customcontroller name="SiriRemote">
      <button id="1">BigStepForward</button>
      <button id="2">BigStepBack</button>
      <button id="3">StepBack</button>
      <button id="4">StepForward</button>
      <button id="5">OSD</button>
      <button id="6">Stop</button>
      <button id="7">Pause</button>
      <button id="8">noop</button>
      <button id="9">noop</button>
      <button id="10">StepBack</button>
      <button id="11">StepForward</button>
    </customcontroller>
  </FullscreenVideo>
  
And there's your problem.

It should be

Code: Select all

  <FullscreenVideo>
    <customcontroller name="SiriRemote">
      <button id="1">ChapterOrBigStepForward</button>
      <button id="2">ChapterOrBigStepBack</button>
      <button id="3">StepBack</button>
      <button id="4">StepForward</button>
      <button id="5">OSD</button>
      <button id="6">Stop</button>
      <button id="7">Pause</button>
      <button id="8">noop</button>
      <button id="9">noop</button>
      <button id="10">StepBack</button>
      <button id="11">StepForward</button>
    </customcontroller>
  </FullscreenVideo>
https://github.com/MrMC/mrmc-private/bl ... Remote.xml

https://github.com/MrMC/mrmc-private/co ... 3ecc440aff

The reason why this shows up now is 3.4.1 (180131.137) fixed reading userdata xmls. To fix this, delete the user keymap and restart MrMC. It will then use customcontroller.SiriRemote.xml from readonly system.
Locked