Build Script for Openpli Enigma2 on Ubuntu 10.4 32 Bit
Re: Build Script for Openpli Enigma2 on Ubuntu 10.4 32 Bit #241
Posted 24 December 2011 - 17:04
Results:
Works fine when the picture is small (not full screen) with sound and picture(SD & HD)
Picture jerky and lags with many frames dropped on fullscreen.(SD & HD)
It does not seem to be a CPU problem as CPU utilisation never goes above 50%.
The quality can be varied a little bit by changing the deinterlace settings in xine, but it remains unwatchable full screen.
I suspect it is an inferior USB on the Zotac as it works fine with vtuner off a dreambox.
Re: Build Script for Openpli Enigma2 on Ubuntu 10.4 32 Bit #242
Posted 24 December 2011 - 17:11
Hello! i have TT-3200 too, but i have not idea how to load the kernel object listed in quoted message, and how exactly edit the NIM Socket with my Technotrend.
Is it correct?
NIM Socket 0:
Type: DVB-S2
Name: Budget-CI
Has_Outputs: no
Frontend_Device: 0
Please, i need very noobles help! (Compile libs and OpenPLI with my Ubuntu 11.10 went fine!)
Hi,
send us your dmesg output and do you have files in /dev/dvb/ ?
Thanks for your help! I don't know why, but my tts2-3200 wasn't initially detected so i have fisically uninstalled and reinstalled it on pci slot and now my ubuntu 11.10 kernel detected it correctly without insmod anything! all go fine!
It's amazing to see OpenPLIenigma2 on my pc! Actually the channel change is a bit slow and the video quality it's not the best but i think i can edit the xine configuration and play a bit with the setting. For the slow channel change i think it's actually impossible to optimizie it...isn't it?
Re: Build Script for Openpli Enigma2 on Ubuntu 10.4 32 Bit #243
Re: Build Script for Openpli Enigma2 on Ubuntu 10.4 32 Bit #244
Re: Build Script for Openpli Enigma2 on Ubuntu 10.4 32 Bit #245
Re: Build Script for Openpli Enigma2 on Ubuntu 10.4 32 Bit #246
Re: Build Script for Openpli Enigma2 on Ubuntu 10.4 32 Bit #247
Posted 25 December 2011 - 07:39
https://github.com/n...9/openpliPC.git
nobody9 HI. Where can i download your full version?
Re: Build Script for Openpli Enigma2 on Ubuntu 10.4 32 Bit #248
Re: Build Script for Openpli Enigma2 on Ubuntu 10.4 32 Bit #249
Posted 25 December 2011 - 16:11
you can only get the source code and compile self
https://github.com/n...9/openpliPC.git
nobody9 HI. Where can i download your full version?
Sorry my mean is where can i download your full patch version?
It`s has very much version. I don`t know what`s the news one?
Please help send one to here. I need openpliPC_201112XX.tar news one.Thanks.
Re: Build Script for Openpli Enigma2 on Ubuntu 10.4 32 Bit #250
Posted 25 December 2011 - 17:33
i don´t create a patch only version anymore.
You can only get the full Version of einigma2 and xine-lib from git.
you can only get the source code and compile self
https://github.com/n...9/openpliPC.git
nobody9 HI. Where can i download your full version?
Sorry my mean is where can i download your full patch version?
It`s has very much version. I don`t know what`s the news one?
Please help send one to here. I need openpliPC_201112XX.tar news one.Thanks.
Re: Build Script for Openpli Enigma2 on Ubuntu 10.4 32 Bit #251
Posted 25 December 2011 - 17:41
@nobody9,
AC-3 is working
Last enigma2 faster switching channel, but then 2-3 seconds to comes the adjustment audio
For me not switching audio track with xine-lib to show LiveTV, with xine-lib.old switching audio track
@ambrosa
In script build_libs.sh need add packages git-core and debhelper
E2PC, Ubuntu 12.04 x86, DVB-S2 card Omicom SkyStar 4, Nvidia card 9500GT 512Mb DDR2 driver 195.36.24, Satellites 9.0E, 36.0E
Re: Build Script for Openpli Enigma2 on Ubuntu 10.4 32 Bit #252
Posted 25 December 2011 - 18:05
May be add this in xine-lib
Established policy under the aspect of 4x3 zoom, 16x9 justscale
When you switch to one of the HD channels from the channel with the SD
aspect of the policy remains unchanged 4x3. Now only with policy aspect 4x3 zoom watch
It is strange why it is so, do not even know what to do here...
Problem in xinelib. File alterh264_decode.c
Change line
data.aspect = seq->ratio;
to
data.aspect = seq->ratio>1.77?3:2;
E2PC, Ubuntu 12.04 x86, DVB-S2 card Omicom SkyStar 4, Nvidia card 9500GT 512Mb DDR2 driver 195.36.24, Satellites 9.0E, 36.0E
Re: Build Script for Openpli Enigma2 on Ubuntu 10.4 32 Bit #253
Re: Build Script for Openpli Enigma2 on Ubuntu 10.4 32 Bit #254
Posted 25 December 2011 - 19:58
in which branch
master or old_xine_lib
in booth braches was this line:
data.aspect = seq->ratio;
changed in
if (fabs(seq->ratio-1.0)<0.1)
data.aspect = XINE_VO_ASPECT_SQUARE;
else if (fabs(seq->ratio-1.33)<0.1)
data.aspect = XINE_VO_ASPECT_4_3;
else if (fabs(seq->ratio-1.77)<0.1)
data.aspect = XINE_VO_ASPECT_ANAMORPHIC;
else if (fabs(seq->ratio-2.11)<0.1)
data.aspect = XINE_VO_ASPECT_DVB;
else
data.aspect = XINE_VO_ASPECT_AUTO;
from xine.h
#define XINE_VO_ASPECT_AUTO 0
#define XINE_VO_ASPECT_SQUARE 1 /* 1:1 */
#define XINE_VO_ASPECT_4_3 2 /* 4:3 */
#define XINE_VO_ASPECT_ANAMORPHIC 3 /* 16:9 */
#define XINE_VO_ASPECT_DVB 4 /* 2.11:1 */
@nobody9
May be add this in xine-lib
Established policy under the aspect of 4x3 zoom, 16x9 justscale
When you switch to one of the HD channels from the channel with the SD
aspect of the policy remains unchanged 4x3. Now only with policy aspect 4x3 zoom watch
It is strange why it is so, do not even know what to do here...
Problem in xinelib. File alterh264_decode.c
Change line
data.aspect = seq->ratio;
to
data.aspect = seq->ratio>1.77?3:2;
Edited by nobody9, 25 December 2011 - 20:01.
Re: Build Script for Openpli Enigma2 on Ubuntu 10.4 32 Bit #255
Re: Build Script for Openpli Enigma2 on Ubuntu 10.4 32 Bit #256
Posted 26 December 2011 - 07:09
@nobody9@Raider,
in which branch
master or old_xine_lib
in booth braches was this line:
data.aspect = seq->ratio;
changed in
if (fabs(seq->ratio-1.0)<0.1)
data.aspect = XINE_VO_ASPECT_SQUARE;
else if (fabs(seq->ratio-1.33)<0.1)
data.aspect = XINE_VO_ASPECT_4_3;
else if (fabs(seq->ratio-1.77)<0.1)
data.aspect = XINE_VO_ASPECT_ANAMORPHIC;
else if (fabs(seq->ratio-2.11)<0.1)
data.aspect = XINE_VO_ASPECT_DVB;
else
data.aspect = XINE_VO_ASPECT_AUTO;
from xine.h
#define XINE_VO_ASPECT_AUTO 0
#define XINE_VO_ASPECT_SQUARE 1 /* 1:1 */
#define XINE_VO_ASPECT_4_3 2 /* 4:3 */
#define XINE_VO_ASPECT_ANAMORPHIC 3 /* 16:9 */
#define XINE_VO_ASPECT_DVB 4 /* 2.11:1 */
@nobody9
May be add this in xine-lib
Established policy under the aspect of 4x3 zoom, 16x9 justscale
When you switch to one of the HD channels from the channel with the SD
aspect of the policy remains unchanged 4x3. Now only with policy aspect 4x3 zoom watch
It is strange why it is so, do not even know what to do here...
Problem in xinelib. File alterh264_decode.c
Change line
data.aspect = seq->ratio;
to
data.aspect = seq->ratio>1.77?3:2;
Branch - master, file - https://github.com/n...erh264_decode.c
line - 1457 , now viewing not is a change
Branch - old_xine_lib okay there is a change.
E2PC, Ubuntu 12.04 x86, DVB-S2 card Omicom SkyStar 4, Nvidia card 9500GT 512Mb DDR2 driver 195.36.24, Satellites 9.0E, 36.0E
Re: Build Script for Openpli Enigma2 on Ubuntu 10.4 32 Bit #257
Posted 26 December 2011 - 08:23
@nobody9
Branch - master, file - https://github.com/n...erh264_decode.c
line - 1457 , now viewing not is a change
Branch - old_xine_lib okay there is a change.
Re: Build Script for Openpli Enigma2 on Ubuntu 10.4 32 Bit #258
Posted 26 December 2011 - 11:25
Intel® Core i5-2300 CPU @ 2.80GHz
NVIDIA GPU GeForce GT 520 (GF119) at PCI:2:0:0 (GPU-0)
VDPAU API version : 1
VDPAU implementation : NVIDIA VDPAU Driver Shared Library 270.41.19 Mon May 16 23:52:21 PDT 2011
SURFACE GET BITS: 711.345 M/s
SURFACE PUT BITS: 722.197 M/s
MPEG DECODING (1920x1080): 184 frames/s
MPEG DECODING (1280x720): 406 frames/s
H264 DECODING (1920x1080): 4 frames/s
H264 DECODING (1280x720): 271 frames/s
VC1 DECODING (1440x1080): 80 frames/s
MPEG4 DECODING (1920x1080): 129 frames/s
MIXER WEAVE (1920x1080): 291 frames/s
MIXER BOB (1920x1080): 413 fields/s
MIXER TEMPORAL (1920x1080): 170 fields/s
MIXER TEMPORAL + IVTC (1920x1080): 127 fields/s
MIXER TEMPORAL + SKIP_CHROMA (1920x1080): 215 fields/s
MIXER TEMPORAL_SPATIAL (1920x1080): 79 fields/s
MIXER TEMPORAL_SPATIAL + IVTC (1920x1080): 67 fields/s
MIXER TEMPORAL_SPATIAL + SKIP_CHROMA (1920x1080): 88 fields/s
MIXER TEMPORAL_SPATIAL (720x576 video to 1920x1080 display): 241 fields/s
MIXER TEMPORAL_SPATIAL + HQSCALING (720x576 video to 1920x1080 display): 159 fields/s
MULTITHREADED MPEG DECODING (1920x1080): 185 frames/s
MULTITHREADED MIXER TEMPORAL (1920x1080): 144 fields/s
This is my message..
nobody9 it`s right?
Re: Build Script for Openpli Enigma2 on Ubuntu 10.4 32 Bit #259
Posted 26 December 2011 - 13:20
Enigma2PC dvbsoftwareca bug
apstar 134E caid is Irdeto 2 0604 , only watch bbc and cnn and MTV, mainly Enigma2PC of dvbsoftwareca not index programs, view the log oscam actual decryption, it is recommended to contact the author southerly with Enigma2PC look, and then modify dvbsoftwareca.
can you slove this problem?
can`t decode irdeto 0604. May be PID or SID index problem. can you help to fix this bug.
OSCAM LOG:
19:22:24 8E7A548 c dvbapi: [ADD PID 0] CAID: 0604 ECM_PID: 0549 PROVID: 000000
19:22:24 8E7A548 c dvbapi: new program number: 0134 (0604:0134 unknown)
19:22:25 8E7A548 c dvbapi: Found 1 IRDETO ECM CHIDs
19:22:25 8E7A548 c dvbapi: Start descrambling PID #0 (CAID: 0604) 1
19:22:25 8E7A548 c localuser (0604&000000/0134/34:A130): found (124 ms) by hdgx (2 of 2)
19:22:38 8E7A548 c dvbapi: [ADD PID 0] CAID: 0604 ECM_PID: 0550 PROVID: 000000
19:22:38 8E7A548 c dvbapi: new program number: 01F5 (0604:01F5 unknown)
19:22:38 8E7A548 c dvbapi: Found 1 IRDETO ECM CHIDs
19:22:39 8E7A548 c dvbapi: Start descrambling PID #0 (CAID: 0604) 1
19:22:39 8E7A548 c localuser (0604&000000/01F5/34:DD50): found (185 ms) by hdgx (2 of 2)
19:22:53 8E7A548 c localuser (0604&000000/01F5/34:552C): timeout (5000 ms) by hdgx (2 of 2)
19:23:04 8E7A548 c dvbapi: [ADD PID 0] CAID: 0604 ECM_PID: 054B PROVID: 000000
19:23:04 8E7A548 c dvbapi: new program number: 0132 (0604:0132 unknown)
19:23:04 8E7A548 c dvbapi: Found 1 IRDETO ECM CHIDs
19:23:05 8E7A548 c dvbapi: Start descrambling PID #0 (CAID: 0604) 1
19:23:05 8E7A548 c localuser (0604&000000/0132/34:815D): found (484 ms) by hdgx (2 of 2)
19:23:17 8E7A548 c dvbapi: [ADD PID 0] CAID: 0604 ECM_PID: 054F PROVID: 000000
19:23:17 8E7A548 c dvbapi: new program number: 012E (0604:012E unknown)
19:23:17 8E7A548 c dvbapi: Found 1 IRDETO ECM CHIDs
19:23:18 8E7A548 c dvbapi: Start descrambling PID #0 (CAID: 0604) 1
19:23:18 8E7A548 c localuser (0604&000000/012E/34:AD88): found (303 ms) by hdgx (2 of 2)
19:23:26 8E7A548 c localuser (0604&000000/012E/34:9914): found (333 ms) by hdgx (2 of 2)
19:23:42 8E7A548 c dvbapi: [ADD PID 0] CAID: 0604 ECM_PID: 0550 PROVID: 000000
19:23:42 8E7A548 c dvbapi: new program number: 01F5 (0604:01F5 unknown)
19:23:42 8E7A548 c dvbapi: Found 1 IRDETO ECM CHIDs
19:23:43 8E7A548 c dvbapi: Start descrambling PID #0 (CAID: 0604) 1
19:23:43 8E7A548 c localuser (0604&000000/01F5/34:CB0F): found (129 ms) by hdgx (2 of 2)
19:23:51 8E7A548 c localuser (0604&000000/01F5/34:EB6A): found (279 ms) by hdgx (2 of 2)
19:24:06 8E7A548 c dvbapi: [ADD PID 0] CAID: 0604 ECM_PID: 054B PROVID: 000000
It`s seem decode right. but can`t see video and no sound. Please help.
Re: Build Script for Openpli Enigma2 on Ubuntu 10.4 32 Bit #260
Posted 26 December 2011 - 13:34
16 user(s) are reading this topic
0 members, 16 guests, 0 anonymous users