Welcome to Our Dreambox World - Japhar Sim - SuperSim
Forum Stats
12401 Members
237 Forums
7723 Topics
23804 Posts

Max Online: 4756 @ 02/20/20 11:12 PM
Newest Members
djmed, kiki21, nobles, Josef Novak, Mohmmed.59
12401 Registered Users
Who's Online
6 registered (Toysoft, Admin, Warder, bitgames, kroksy, AJP007), 760 Guests and 174 Spiders online.
Key: Admin, Global Mod, Mod
Shout Box

Top Posters
Admin 9876
Toysoft 2634
satsedhu 1713
fairbird 765
ludo19 442
Top Posters (30 Days)
Admin 19
dmr 8
Rtm79 4
Toysoft 3
Sasillo 3
March
M Tu W Th F Sa Su
1 2 3
4 5 6 7 8 9 10
11 12 13 14 15 16 17
18 19 20 21 22 23 24
25 26 27 28 29 30 31
Topic Options
#10504 - 12/16/16 12:37 PM I have compile DM800se HD image but it doesnt work
acmSr4 Offline
stranger

Registered: 12/16/16
Posts: 4
I have a chinses dm800se HD clone machine which called dm800se HD SR4 i download offical opendreambox sourece code on Ubuntu 10.04 and then compile it after about two weeks i resolved all errors and get a new image. this image we can called it official image. i have flash it into my machine,but my SR4 machine doesn't work,it show "no ca" in the front small LCD screen. at this time somebody tell me that you must flash 84d.nif file after flash official image, i do this. after this my SR4 machine can work. i can see the first logo picture on TV, but after a while, it becomes black, can you help me?(somebody tells me you must have to replace driver file, he send me drive file,how can i replace drive file)

Top
#10506 - 12/16/16 01:02 PM Re: I have compile DM800se HD image but it doesnt work [Re: acmSr4]
Admin Online   content
Japhar Member
Carpal Tunnel

Registered: 10/19/10
Posts: 9876
Well done acmSr4 !

The issue here is that your image is for the Original box, and not a clone box as you have, SR4 model DM800HDse clone.

If you replace the sim with an original (called A8P), then you could use it, otherwise if you keep the sim as you have today you could face "incompatibilities" as you see.

The security against clones on an original image are at different levels, and its not possible to predict it, as it all depends of the software used to compile it.

Drivers are into /lib/modules in the box,

Admin
_________________________

Top
#10509 - 12/16/16 01:46 PM Re: I have compile DM800se HD image but it doesnt work [Re: Admin]
acmSr4 Offline
stranger

Registered: 12/16/16
Posts: 4
wow wow, thank you so much!
i am so glad you can tell me so much.

i have try to replace my drive file into /lib/modules ,but I only have a short time after i open the machine ,the time is so short ,it is not enough for me to open ftp software,input password send drive file ,the machine quickly doesn't work and be black. can you help me?

i am a fun of your BlackHole image, i flash it on my machine, it works well,but it have one small problem. the EPG is wrong when i use China Cable TV, it have Chinese character gash problem ,a lot of wrong text when it's not english or number,because our country EPG text code is GB2312 or GBK code, but your image use UTF8,i have to chagne our text from GBK to UTF8.

the first i try to compile offical orginal image, and make it work on my machine ,

the second i try to compile your BlackHole image then try to reslove our country cable TV wrong Text,would you like to help me to do this? thank you so much!

Top
#10512 - 12/16/16 03:06 PM Re: I have compile DM800se HD image but it doesnt work [Re: acmSr4]
Admin Online   content
Japhar Member
Carpal Tunnel

Registered: 10/19/10
Posts: 9876
Hello,

The change of driver usually is done on a box that has the right sim for the built-in drivers, so using an A8P Sim. You need to use it to boot and replace to your drivers, and then backup the image, to use with your sim.

Concerning the UTF8, I will tell to our guys who compile our images.

For the sharing of our guys source code, this is "closed" as they wish and so it's not public.

Admin
_________________________

Top
#10522 - 12/17/16 04:54 AM Re: I have compile DM800se HD image but it doesnt work [Re: Admin]
acmSr4 Offline
stranger

Registered: 12/16/16
Posts: 4
Thank you very much,Admin!

It seems difficult for me to replace drive file at now,i don't have a J8P sim card at this moment.

what i want to do is resolve Chinese character gash problem BlackHole image when I use CHINA cable TV(DVB_C). I want to make BlackHole image more easy,helpful,useful for China peopel.
Most Chinese people use openPli other than BlackHole,because openPli can reslove Chinese character gash problem automatic. As a fun of BlackHole, i want to make a little contribution to BlackHole image and let more people use BlackHole image.

As what you say,your code is "close",Can i replace some file or edit some file to make our machine show right Chinese text when i use cable TV(DVB_C).
I am a programme and have some programming experience . As we know when use GBK or GB2312 to show a Chinese word, it just need two bytes, if we use UTF8 to show a Chinese word ,it need three or four bytes.So our country just choose GBK ro GB2323 code to show EPG text other than UTF8.
Although UTF8 is more generic for every country language show, but it will take more memory to transmit or show our Chinese Text.
so what can i do ,would you like to help me?
Thanks a lot!

Top
#10523 - 12/17/16 10:33 AM Re: I have compile DM800se HD image but it doesnt work [Re: acmSr4]
Admin Online   content
Japhar Member
Carpal Tunnel

Registered: 10/19/10
Posts: 9876
You can on the development section (here) post a "tutorial" on how to modify the code and what/where to modify so it can be applied by our team developpers. Our BlackHole IPTV is based on the OpenPLi code, so it should be as easy as to modify the OpenPLi, for our BH IPTV.

Admin
_________________________

Top
#10525 - 12/17/16 11:43 AM Re: I have compile DM800se HD image but it doesnt work [Re: Admin]
acmSr4 Offline
stranger

Registered: 12/16/16
Posts: 4
I am so sorry.

I don't know where to modify the code that make DM800se can show right Chinese text EPG, but I know how to make GBK to UTF8 or UTF8 to GBK on Windows PC system. here is the example!

#include <iostream>
#include <string>
#include <fstream>
#include <windows.h>

using namespace std;

string GBKToUTF8(const std::string& strGBK)
{
string strOutUTF8 = "";
WCHAR * str1;
int n = MultiByteToWideChar(CP_ACP, 0, strGBK.c_str(), -1, NULL, 0);
str1 = new WCHAR[n];
MultiByteToWideChar(CP_ACP, 0, strGBK.c_str(), -1, str1, n);
n = WideCharToMultiByte(CP_UTF8, 0, str1, -1, NULL, 0, NULL, NULL);
char * str2 = new char[n];
WideCharToMultiByte(CP_UTF8, 0, str1, -1, str2, n, NULL, NULL);
strOutUTF8 = str2;
delete[]str1;
str1 = NULL;
delete[]str2;
str2 = NULL;
return strOutUTF8;
}

string UTF8ToGBK(const std::string& strUTF8)
{
int len = MultiByteToWideChar(CP_UTF8, 0, strUTF8.c_str(), -1, NULL, 0);
unsigned short * wszGBK = new unsigned short[len + 1];
memset(wszGBK, 0, len * 2 + 2);
MultiByteToWideChar(CP_UTF8, 0, (LPCTSTR)strUTF8.c_str(), -1, wszGBK, len);

len = WideCharToMultiByte(CP_ACP, 0, wszGBK, -1, NULL, 0, NULL, NULL);
char *szGBK = new char[len + 1];
memset(szGBK, 0, len + 1);
WideCharToMultiByte(CP_ACP,0, wszGBK, -1, szGBK, len, NULL, NULL);
std::string strTemp(szGBK);
delete[]szGBK;
delete[]wszGBK;
return strTemp;
}


Thank you very much!

Top
#10526 - 12/17/16 11:50 AM Re: I have compile DM800se HD image but it doesnt work [Re: acmSr4]
Admin Online   content
Japhar Member
Carpal Tunnel

Registered: 10/19/10
Posts: 9876
I will advise our guys and let's hope they find a solution for the v22 ;o)

Admin
_________________________

Top



Moderator:  Admin, Champtheone, john.does.great 
New Topics
ERROR after flashing OpenPLi 8.X star 20230624
by Sasillo
03/25/24 06:27 PM
Fatal: Target device '/dev/dreambox-rootf
s' is not

by Admin
03/22/24 02:45 PM
EchoStar wins DoD extensions for private 5G
by Admin
03/19/24 02:56 PM
DM900 red light
by slavekpl
03/17/24 03:42 PM
openpli-enigma2-8xst
ar-dm820 epgimport not install

by dmr
03/13/24 09:09 AM
openpli-20240306-GCC
-13.2-dm820

by dmr
03/12/24 01:01 PM
Build your own OSCam... Ubuntu 18 and 22 svn11737
by Admin
03/04/24 10:37 PM
EchoStar bleeds Boost Mobile subscribers
by Admin
03/04/24 04:35 PM
Old DM800HDpvr
by Rtm79
03/03/24 06:32 PM
Saluti
by Rtm79
03/03/24 06:19 PM
DM7020HD : OpenPLi 8.xStar 20240303 GSt 1.20.5
by Admin
03/03/24 12:57 PM
DM7020HD : OpenPLi 8.xStar 20240303 GSt 1.20.5
by Admin
03/03/24 12:57 PM