Author: swordfish6975

Openelec Build for OPI PC and 2 now with HW decoding

  [Copy link]

4

threads

1118

posts

9504

credits

Moderator

Rank: 7Rank: 7Rank: 7

credits
9504
Published in 2016-3-9 06:14:57 | Show all floors
hav replied at 2016-3-8 16:32
It does not work with a slow sd card. Although it was declared as class 10, the truth is that is n ...

I received feedback that it works now. I can confirm that class 4 doesn't even need the fix. Does it work with another SD card?

4

threads

1118

posts

9504

credits

Moderator

Rank: 7Rank: 7Rank: 7

credits
9504
Published in 2016-3-9 06:17:41 | Show all floors
hav replied at 2016-3-8 16:40
Thanks for answering. There would be some other alternative to remotely control opipc ?

What kind of control? Something to see video remotely? Currently there is no support for that (it's the same reason why screenshots doesn't work).

4

threads

1118

posts

9504

credits

Moderator

Rank: 7Rank: 7Rank: 7

credits
9504
Published in 2016-3-9 06:22:33 | Show all floors
nightflasher replied at 2016-3-8 23:04
sorry, but i need to get this question answered: in Fex Guide there is this paramter called screen0_ ...

That fex guide may not be completely applicable to H3. It is based on A20 AFAIK.

Sorry, I don't understand your question. You want to achieve higher resolution? What are your current settings? screen0_output_mode selects resolution.

4

threads

1118

posts

9504

credits

Moderator

Rank: 7Rank: 7Rank: 7

credits
9504
Published in 2016-3-9 06:23:39 | Show all floors
Can anybody please test eMMC installer on PLUS as described in FAQ?

0

threads

37

posts

256

credits

Intermediate member

Rank: 3Rank: 3

credits
256
Published in 2016-3-9 16:43:22 | Show all floors
Edited by nightflasher at 2016-3-9 16:45
jernej replied at 2016-3-9 06:22
That fex guide may not be completely applicable to H3. It is based on A20 AFAIK.

Sorry, I don't u ...
  1. [boot_disp]
  2. advert_disp = 0
  3. auto_hpd = 1
  4. output_type = 4
  5. hdmi_channel = 0
  6. hdmi_mode = 2
  7. cvbs_channel = 1
  8. cvbs_mode = 11
  9. output_full = 1
  10. hdmi_mode_check = 1

  11. [disp_init]
  12. disp_init_enable = 1
  13. disp_mode = 0
  14. screen0_output_type = 3
  15. screen0_output_mode = 2
  16. screen1_output_type = 3
  17. screen1_output_mode = 2
  18. fb0_format = 0
  19. fb0_width = 0
  20. fb0_height = 0
  21. fb1_format = 0
  22. fb1_width = 0
  23. fb1_height = 0

  24. [hdmi_para]
  25. hdmi_used = 1
  26. hdmi_power = "vcc-hdmi-18"

  27. [tv_para]
  28. tv_used = 1
  29. tv_dac_used = 1
  30. tv_dac_src0 = 0
Copy code
this is my current situation, and it took much time to get these parameters that work with my monitor but it's only 640x480. all other resolution-optionss gave me a "frequency not supported"

EDIT: the raspi2 give's me tha 1680x1050 with hdmi_mode=58; it's not that simple with OPiPC

0

threads

21

posts

112

credits

Registered member

Rank: 2

credits
112
Published in 2016-3-9 23:27:08 | Show all floors
jernej replied at 2016-3-9 06:14
I received feedback that it works now. I can confirm that class 4 doesn't even need the fix. Does  ...

Yes, I confirm my previous feedback: fake class 10 sdcards with real class6 and lower performance didn't work before the patch and now work in images with the patch.
That's my experience after testing with several sdcards.

4

threads

1118

posts

9504

credits

Moderator

Rank: 7Rank: 7Rank: 7

credits
9504
Published in 2016-3-10 00:31:26 | Show all floors
Edited by jernej at 2016-3-10 17:42
nightflasher replied at 2016-3-9 09:43
this is my current situation, and it took much time to get these parameters that work with my monit ...

If you want to change resolution, you must change value of screen0_output_mode. All possible modes:
  1. typedef enum
  2. {
  3.     DISP_TV_MOD_480I                = 0,
  4.     DISP_TV_MOD_576I                = 1,
  5.     DISP_TV_MOD_480P                = 2,
  6.     DISP_TV_MOD_576P                = 3,
  7.     DISP_TV_MOD_720P_50HZ           = 4,
  8.     DISP_TV_MOD_720P_60HZ           = 5,
  9.     DISP_TV_MOD_1080I_50HZ          = 6,
  10.     DISP_TV_MOD_1080I_60HZ          = 7,
  11.     DISP_TV_MOD_1080P_24HZ          = 8,
  12.     DISP_TV_MOD_1080P_50HZ          = 9,
  13.     DISP_TV_MOD_1080P_60HZ          = 0xa,
  14.     DISP_TV_MOD_1080P_24HZ_3D_FP    = 0x17,
  15.     DISP_TV_MOD_720P_50HZ_3D_FP     = 0x18,
  16.     DISP_TV_MOD_720P_60HZ_3D_FP     = 0x19,
  17.     DISP_TV_MOD_1080P_25HZ          = 0x1a,
  18.     DISP_TV_MOD_1080P_30HZ          = 0x1b,
  19.     DISP_TV_MOD_PAL                 = 0xb,
  20.     DISP_TV_MOD_PAL_SVIDEO          = 0xc,
  21.     DISP_TV_MOD_NTSC                = 0xe,
  22.     DISP_TV_MOD_NTSC_SVIDEO         = 0xf,
  23.     DISP_TV_MOD_PAL_M               = 0x11,
  24.     DISP_TV_MOD_PAL_M_SVIDEO        = 0x12,
  25.     DISP_TV_MOD_PAL_NC              = 0x14,
  26.     DISP_TV_MOD_PAL_NC_SVIDEO       = 0x15,
  27.     DISP_TV_MOD_3840_2160P_30HZ     = 0x1c,
  28.     DISP_TV_MOD_3840_2160P_25HZ     = 0x1d,
  29.     DISP_TV_MOD_3840_2160P_24HZ     = 0x1e,
  30.     DISP_TV_MODE_NUM                = 0x1f,
  31. }disp_tv_mode;
Copy code


Usually, you would set it to 10 (0xa) which is 1920x1080p@60Hz. If none of those modes work for you besides 2, then you are out of luck.

It's not harder than on RPi

4

threads

1118

posts

9504

credits

Moderator

Rank: 7Rank: 7Rank: 7

credits
9504
Published in 2016-3-10 05:28:33 | Show all floors
I uploaded new images. This time only full SD card images, because there were changes in bootloader which are important (slow SD card fix, among others) and in script.bin.

Please test suspend/resume functionality (power button) and report. I have very inconsistent results.

eMMC installation is also possible now (please check FAQ). I would also like report on this.

1

threads

37

posts

258

credits

Intermediate member

Rank: 3Rank: 3

credits
258
Published in 2016-3-10 07:30:07 | Show all floors
When you turning on, the LED is green. When you switching off is  the red, reconnection is  not possible by pressing the power button.This was meant to switch on IR remote control.Power switch on the circuit is not active.  

Orange pi pc

0

threads

15

posts

131

credits

Registered member

Rank: 2

credits
131
Published in 2016-3-10 17:18:09 | Show all floors
jernej replied at 2016-3-10 05:28
I uploaded new images. This time only full SD card images, because there were changes in bootloader  ...

Hi, thanksfor new images, (I have no linux machine yet, so I cannot compile). I did sometests…
My cfg: OPiPC, SD card: Kingston 8 GB, Class 10, image: 20160309

  • Powerswitch: works 1 time, but when I repeat switching, the system does not suspend or wake up. LEDs are working fine
  • Videoplayback: playback is still jittery, frame rate doesn't stay stable (SD, HD –h264, UHD – h265)
       V-synch does not work – vertical lines
  • PVR:Switching the channels still does not work, system freeze

You need to log in before you can reply login | Register

Points Rule

Quick reply Top Return list