PDA

View Full Version : Enigma 2 by The_ripper - TEST -



Pages : 1 2 3 4 5 6 7 8 9 10 11 12 13 [14] 15

richy18
02-12-2010, 02:47 PM
@richy18

You seem to jump to conclusions I did read the threads and did see the posting pointing to a missing file. As it did not mention a model AND people asking to confirm if others see the same problem, I see nothing wrong with the reply.
Further more it ALSO provided some other test results on Dutch HD channels on Astra 23,5 (NED1, NED2 etc) with picture and sound problems.

You're partly right but in my opinion this thread is so big because of asking already answered questions. On the other hand its hard to find the answers because of the bigness of this thread.

So my suggestion was splitting the thread each new minor version AND - as long as this does not happen - reading the last 5 pages of this thread carefully.

So nothing was wrong with these questions but IMHO it was just tautological. If a new user read this questions he will assume that it's unsolved. But it wasn't :)

satdish101
02-12-2010, 03:51 PM
I agree that a new thread should be started for each new beta revision released so at least there would be some order to the discussions

swiffer
02-12-2010, 04:03 PM
2 new threads created, for 1.0.1 and 1.0.2. Let's see if anyone uses them.

I think this one should be locked, now.

kooleracer
02-12-2010, 04:06 PM
the new deinterlace is really bad for my PQ, i have a HD ready screen.

zehnhoff74
02-12-2010, 05:27 PM
Please could you close this thread now.
Thanks

britzolas
02-12-2010, 07:21 PM
My opinion is that since there's only one Enigma2 by the Ripper, there should be only one thread that gothers all the knowlege and the test experiences about it.
I don't see the point in opening new threads each time a new core is released. After all almost everyone is experimenting with the newest core and posts his experiences-opinions.
Plus there is Massimo's thread over here (https://www.satpimps.co.uk/showthread.php?t=139902) that gothers the important files about Enigma.
By the way dear Massimo why did you stop updating it???

lucky13
04-12-2010, 07:39 PM
hi guys, I have my Prem + connected with SCART to my SD CRT and I want to change the TV output to RGB as it makes the picture so much better but using the GUI it doesn't seem to change anyting, so I have found the thread mentioning I need to edit the initd\bootup file so I have this open with the line

nsmod /lib/modules/2.6.22.19-19-the_ripper/extra/em8634dvb.ko options="-analog -f PAL_BG -digital -f HDMI_720p50 -hdmi_chip $hdmichip 0 14 15 100 0"

how would I edit this to make the TV output RGB ?

lucky13
04-12-2010, 08:38 PM
Hi Guys

Can anyone advise how I map a windows share so I can stream my movies over the network ?

In Priority Managers on the 5020 firmware I used to use the line:

CIF[1]="mount.cifs //$REMOTE_IP/downloads /DATA/movie -o username=user,password=password"

lucky13
04-12-2010, 09:43 PM
Hi Guys

Can anyone advise how I map a windows share so I can stream my movies over the network ?

In Priority Managers on the 5020 firmware I used to use the line:

CIF[1]="mount.cifs //$REMOTE_IP/downloads /DATA/movie -o username=user,password=password"

ok I found the correct syntax

mount -t cifs \\\\IPofWINDOWS\\sharename /media/net -o username=user,pass=password


and this works great but how would I make it autostart each time the azbox boots up ?

satdish101
05-12-2010, 01:07 AM
With factory firmware, my AZbox could see shared folders and play video (.ts and .mpg) files from my Win7 server however under E2 I don't seem to have access to shared network folders. Is there a guide or easy way to set this up?

Cirio
05-12-2010, 06:08 AM
ok I found the correct syntax

mount -t cifs \\\\IPofWINDOWS\\sharename /media/net -o username=user,pass=password


and this works great but how would I make it autostart each time the azbox boots up ?

Simply add the command line at the end of /etc/init.d/rcS file
using a linux complatible editor like Notepad++

Hope this helps!

lucky13
05-12-2010, 02:35 PM
Simply add the command line at the end of /etc/init.d/rcS file
using a linux complatible editor like Notepad++

Hope this helps!

ok i tried this by adding the following line to the rcS file:

#!/bin/sh
#
# rcS Call all S??* scripts in /etc/rcS.d in
# numerical/alphabetical order.
#
# Version: @(#)/etc/init.d/rcS 2.76 19-Apr-1999 miquels@cistron.nl
#

PATH=/sbin:/bin:/usr/sbin:/usr/bin
runlevel=S
prevlevel=N
umask 022
export PATH runlevel prevlevel

# Make sure proc is mounted
#
[ -d "/proc/1" ] || mount /proc

#
# See if system needs to be setup. This is ONLY meant to
# be used for the initial setup after a fresh installation!
#
if [ -x /sbin/unconfigured.sh ]
then
/sbin/unconfigured.sh
fi

#
# Source defaults.
#
. /etc/default/rcS

#
# Trap CTRL-C &c only in this shell so we can interrupt subprocesses.
#
trap ":" INT QUIT TSTP

#
# Do we have /proc/progress and set VERBOSE to "no" ?
# If so, calculate the number of scripts and the incremental step
#

# HACK: progress needs LCD to create /proc device entry
if [ -f /lib/modules/$(uname -r)/modules.dep ] && [ $(cat /lib/modules/$(uname -r)/modules.dep | grep dreambox_rc2 | wc -l) -gt 0 ]; then
/bin/true;
else
echo "regenerate module dependencies";
depmod -ae;
fi

[ $(cat /lib/modules/$(uname -r)/modules.dep | grep lcd | wc -l) -gt 0 ] && modprobe lcd

if [ "$VERBOSE" = no ]; then
if [ -e /proc/progress ]; then
set `ls -1 /etc/rc$runlevel.d/S* | wc`
numscripts=$1
# bootup, the first script, increments until 25.
# the userspace then picks up at 50
PROGRESS_incstep=`expr 25 / $1`
PROGRESS_value=25
PROGRESS=yes
export PROGRESS_value PROGRESS_incstep
fi
fi
export VERBOSE PROGRESS

#
# Call all parts in order.
#
for i in /etc/rcS.d/S??*
do
# Ignore dangling symlinks for now.
[ ! -f "$i" ] && continue

# Handle verbosity
[ "$VERBOSE" = very ] && echo "INIT: Running $i..."
if [ "$PROGRESS" = yes ]; then
export PROGRESS_value=`expr $PROGRESS_value + $PROGRESS_incstep`
echo "$PROGRESS_value Starting $i..." >/proc/progress
fi

case "$i" in
*.sh)
# Source shell script for speed.
(
trap - INT QUIT TSTP
set start
. $i
)
;;
*)
# No sh extension, so fork subprocess.
$i start
;;
esac

#
# Report status based on result code
#
result=$?
if [ "$PROGRESS" = yes ]; then
if [ "$result" = 0 ]; then
echo "=s" >/proc/progress
else
echo "=f" >/proc/progress
fi
fi
done

#
# For compatibility, run the files in /etc/rc.boot too.
#
[ -d /etc/rc.boot ] && run-parts /etc/rc.boot

#
# Finish setup if needed. The comment above about
# /sbin/unconfigured.sh applies here as well!
#
if [ -x /sbin/setup.sh ]
then
/sbin/setup.sh
fi

mount -t cifs \\\\IPofWINDOWS\\sharename /media/net -o username=user,pass=password


but on reboot the azbox failed to reboot and I've just spent the last hr rebuilding it....am i putting the sytax in the right place at the end of the file ?

Cirio
06-12-2010, 01:43 PM
This is the final part of my Rcs file:


#
# Finish setup if needed. The comment above about
# /sbin/unconfigured.sh applies here as well!
#
if [ -x /sbin/setup.sh ]
then
/sbin/setup.sh
fi

mount -t cifs \\\\172.16.0.3\\USA\_SERIES /media/movies -o username=,password=

CCcam



If i reboot my box and i type mount i get:


root@AZBox:~# mount
rootfs on / type rootfs (rw)
/dev/hda1 on / type ext3 (rw,data=ordered)
proc on /proc type proc (rw)
sysfs on /sys type sysfs (rw)
udev on /dev type tmpfs (rw)
usbfs on /proc/bus/usb type usbfs (rw)
tmpfs on /var type tmpfs (rw)
tmpfs on /tmp type tmpfs (rw)
/dev/hda2 on /boot type ext2 (rw)
devpts on /dev/pts type devpts (rw)
\\172.16.0.3\USA_SERIES on /media/movies type cifs (rw,mand,unc=\172.16.0.3\USA_SERI ES,username=,uid=0,gid=0,rsize=16 384,wsize=57344)
automount(pid1809) on /autofs type autofs (rw)

so, as you see the drive is mounted correctly.
Be sure to use a compatible editor like Notepad++. DO NOT use windows Notepad

lucky13
06-12-2010, 04:58 PM
that wierd I don't understand why mine locks on reboot and yours works fine...im using editpad lite which is a linux compat editor also..

massimo1167
07-12-2010, 03:13 PM
@The ripper

I am glad to inform you an all the others that the module tun.ko is working fine.

It loads and unloads with no issues.

I have placed it in /lib/modules/2.6.22.19-19-the_ripper/extra

The openvpn package is working as well.

Some notes attached. May be not the best ones, but they worked for me.

Hope is clear.

I'm not able to update the packages as described in the guide, and I can't find openvpn package.
where I can find it?
Thanks

Egyptian11
07-12-2010, 03:50 PM
to Mr massimo1167 and the other friends

I have normal posiontner with 24 inch motor and 2.4 dish with single lnb and I'm using direct connection not a switch

about your question my stup
I do not have switch and I did this steps :
Menu-->Setup--->Service Searching-->Tuner configuration-->OK
in sub menu "Configuration Mode" choose "Simple"
Then in "Mode" sud menu choose positioner and set up my details there

Yes,On Enigma1 OFW is working fine on my Azbox
thanks for your help

rem:
pls tell me what your tuner type you have in your Azbox ?
mine Conexant CX24116

best regards

pls go to this like to try fix my problem

https://www.satpimps.co.uk/showthread.php?p=773342&posted=1#post773342

MickeySa
07-12-2010, 04:30 PM
@Egyptian

you could not have Premium+ with DVB-S2 tuner based on cx24116 .

P+ DVB-S2 tuner use STV6110 + STV0903 Demodulator !!!

MickeySa
07-12-2010, 04:35 PM
Current status :

Fixed grab ( making screenshot of osd + video from Web Interface ).

Added /proc/windowsize ( Possibility to set Aspect ratio )

More improvements on Audio sync ( Now should work without any problem )

Added option for Deinterlace On/Off .

Fixed BUG 30% CPU usage !!!

Recording / DVB Subtitles ( Under work - almost finished )

Enigma 2 customizations ( Welcome w i z a r d , other audio/video settings, resolution, aspect ratio, output etc )

nervis
07-12-2010, 04:39 PM
Is it possible for software update?

CoolST
07-12-2010, 04:39 PM
Thank you MickeySa For the News .:king-041:

B.R

hfmls
07-12-2010, 04:42 PM
Current status :

Fixed grab ( making screenshot of osd + video from Web Interface ).

Added /proc/windowsize ( Possibility to set Aspect ratio )

More improvements on Audio sync ( Now should work without any problem )

Added option for Deinterlace On/Off .

Fixed BUG 30% CPU usage !!!

Recording / DVB Subtitles ( Under work - almost finished )

Enigma 2 customizations ( Welcome w i z a r d , other audio/video settings, resolution, aspect ratio, output etc )

Thank you very much!!! :) I reamin with 1.0.2 because of picture quality was awsome, but sometimes i have to manual reboot, hope this improves that area. Do u guys already have estimated time to release?
Thank you very much.

massimo1167
07-12-2010, 05:00 PM
Current status :

Enigma 2 customizations ( Welcome w i z a r d , other audio/video settings, resolution, aspect ratio, output etc )
what about "ipkg update" that doesn't work?

When do You think will be published next release as there are many important bugs to fix?
Thank You very much for all yours efforts!!!

digihoe
07-12-2010, 05:04 PM
what about "ipkg update" that doesn't work?

When do You think will be published next release as there are many important bugs to fix?
Thank You very much for all yours efforts!!!

"ipkg update" works for me. Did you try a sw update in menu first?

Egyptian11
07-12-2010, 05:29 PM
thanks for your replay Mr MickeySa
I'm sure that my tuner type is Conexant CX24116

pls look at to this links and look at this part ( DVB-S/S2 Tuner Specifications )
http://www.gofastmotorsports.com/azpremiumhd.htm
http://cidaderiodejaneiro.olx.com.br/azbox-premium-hd-plus-twin-tuner-iid-114146150

You'll see:

DVB-S/S2 Tuner Specifications
Input Frequency: 950 ~ 2150Mhz
Modulation: QPSK, 8PSK
FEC: 1/2, 2/3, 3/4, 3/5, 4/5, 5/6, 6/7, 7/8, 8/9,
9/10
Demodulation IC: CX24116
Input Impedence: 75O
IF Frequency: 36.128Mhz

also look at this link
http://www.sharpsme.com/Page.aspx/europe/en/dec6052c-676f-45e8-ad9a-9eed20b4a70a

and when download E2 to my Ezbox
I saw that my tuner Azbox is Conexant CX24116

what is your tuner Azbox type ?
and why Premium+ cant have cx24116 chip ??
and what is the problem to chip Conexant CX24116 ? do not working with E2 ?

MV_BEST
07-12-2010, 05:37 PM
thanks for your replay Mr MickeySa
I'm sure that my tuner type is Conexant CX24116

pls look at to this links and look at this part ( DVB-S/S2 Tuner Specifications )
http://www.gofastmotorsports.com/azpremiumhd.htm
http://cidaderiodejaneiro.olx.com.br/azbox-premium-hd-plus-twin-tuner-iid-114146150

You'll see:

DVB-S/S2 Tuner Specifications
Input Frequency: 950 ~ 2150Mhz
Modulation: QPSK, 8PSK
FEC: 1/2, 2/3, 3/4, 3/5, 4/5, 5/6, 6/7, 7/8, 8/9,
9/10
Demodulation IC: CX24116
Input Impedence: 75O
IF Frequency: 36.128Mhz

also look at this link
http://www.sharpsme.com/Page.aspx/europe/en/dec6052c-676f-45e8-ad9a-9eed20b4a70a

and when download E2 to my Ezbox
I saw that my tuner Azbox is Conexant CX24116

what is your tuner Azbox type ?
and why Premium+ cant have cx24116 chip ??
and what is the problem to chip Conexant CX24116 ? do not working with E2 ?
friend you have azbox premium,there is also a model called premium+,like this way that MickeySa said the tuner specs.If you see closely in the links you have given you will see azbox premium,not premium+.In the last link is premium with two tuners(plus twin tuners)not premium+.

Egyptian11
07-12-2010, 06:05 PM
MR MV_BEST
I understand you
but the 2 links
one for azbox premium and the other one for azbox premium+
bouth of the 2 use

I'm right ?
pls take a look again
bouth of them use the same tuner Conexant CX24116

you are sure that Azbox premium use only the tuner Conexant CX24116 ?

rambest
07-12-2010, 07:31 PM
links which you provide was 100% fake internet stores.Don't trust the info on that sites.
Because they put a premim picture instead p+
Regarding tuners p and p+ -they are different.

cacul
07-12-2010, 08:19 PM
It is possible to enter commands using telnet and checking information on the head of the DVB-S2 ?

nitrogen14
08-12-2010, 09:55 AM
@digihoe
I dont have access to 865x do***entations/SDK


see pm

massimo1167
08-12-2010, 10:13 AM
"ipkg update" works for me. Did you try a sw update in menu first?

I don't remember I'll try...
Thanks

nitrogen14
08-12-2010, 10:52 AM
http://rapidshare.com/files/435583541/Plugins-SDK-0.1.1.gz
http://rapidshare.com/files/435583542/ML-AZBoxTVSDK-0.2.gz
http://rapidshare.com/files/435587164/Toolchain_Medialink.rar

Carp95
08-12-2010, 12:04 PM
Fixed BUG 30% CPU usage !!!


Byebye spinners:king-042:

massimo1167
08-12-2010, 12:37 PM
"ipkg update" works for me. Did you try a sw update in menu first?

Yes I did, but after 2 hours nothing happens....
The "Software update" window continues to show progres bar and in telnet session I can see "/usr/bin/ipkg update", but nothing happens...
The only way to stop it is to kill the process


Just to prevent your question, I can resolve and ping internet addresses, I've tried the command "ping www.google.com" and I'm able to see IP address and ping response.

massimo1167
08-12-2010, 12:39 PM
http://rapidshare.com/files/435583541/Plugins-SDK-0.1.1.gz
http://rapidshare.com/files/435583542/ML-AZBoxTVSDK-0.2.gz
http://rapidshare.com/files/435587164/Toolchain_Medialink.rar

What is that?
Original firmware toolkit?

nitrogen14
08-12-2010, 01:44 PM
it is 4 ripper to make enigma for sigma 8655 (medialink)
sEnigma :)

satlubitel
08-12-2010, 01:47 PM
Hi All,
I would like to test crossEPG on my Premium.
Please tell me which file exactly I have to download form http://code.google.com/p/crossepg/downloads/list?
I see number of files:
crossepg-0.6.0-svn-155-qboxhd_update.tar.gz
crossepg-0.6.0-svn-155-qboxhd_addon.tar.gz
enigma2-plugin-systemplugins-crossepg-ipbox99xx_0.6.0-svn-142_sh4.ipk
enigma2-plugin-systemplugins-crossepg_0.6.0-svn-142_sh4.ipk
enigma2-plugin-systemplugins-crossepg-oe1.6_0.6.0-svn-142_mipsel.ipk
enigma2-plugin-systemplugins-crossepg-oe1.5_0.6.0-svn-142_mipsel.ipk
crossepg-oe15.bb
crossepg-oe16.bb
CrossEPG Explorer 1.0.1 Setup.exe
enigma2_crossepg_patch_v2_1.patch
mp2csv-crossepg-enigma2_0.1.0_sh4.ipk
mp2csv-crossepg-enigma2_0.1.0_mipsel.ipk
enigma2-crossepg_v2.patch
crossepg-0.4.2-svn-48-dgs-sh4.tar.gz

It is not clear which one to use…Please point me out

Thanks a lot in advance
Cheers!

Carp95
08-12-2010, 03:26 PM
it is 4 ripper to make enigma for sigma 8655 (medialink)
sEnigma :)


No, this Enigma 2 is just for AzBox HD Receivers, and we will not support Head receivers, nor now nor in future....


Seems clear to me

zehnhoff74
08-12-2010, 04:08 PM
Current status :

Fixed grab ( making screenshot of osd + video from Web Interface ).

Added /proc/windowsize ( Possibility to set Aspect ratio )

More improvements on Audio sync ( Now should work without any problem )

Added option for Deinterlace On/Off .

Fixed BUG 30% CPU usage !!!

Recording / DVB Subtitles ( Under work - almost finished )

Enigma 2 customizations ( Welcome w i z a r d , other audio/video settings, resolution, aspect ratio, output etc )

@MickeySa
could you please advise us the release date.
Thanks for your efforts:respect-067:

puhcho
08-12-2010, 06:32 PM
@MickeySa
could you please advise us the release date.
Thanks for your efforts:respect-067:

:respect-062:

satatrec
08-12-2010, 06:51 PM
@massimo1167

OpenVPN installation

You can install Openvpn via the tv menu too.

setup - software management - advanced - packet management

then in the list of packages scroll till "OpenVpn" and install it.

Then you need to follow the install notes as before and modify the config files inside /etc/openvpn.

pateken
08-12-2010, 07:00 PM
Are you working on for the driver Dvb-T?

thank's

fanoSat
08-12-2010, 07:38 PM
Yes, what is the state of DVB-T tuner?

I want to test this image soon but without DVB-T tuner support is impossible for me (all Italian channels broadcast in 4:3 letterboxed via sat, but they're in REAL 16:9 on DTT!)...

Thanks for your outstanding work :respect-051:

hfmls
08-12-2010, 07:41 PM
again and again and again. dvb-t and dvb-c tunners like The_Ripper said and MickeySA are "started" and they will only make/finish drivers for them after tvmode is 100% completely stable with dvb-s2..

T33
08-12-2010, 07:47 PM
Yes, what is the state of DVB-T tuner?

I want to test this image soon but without DVB-T tuner support is impossible for me (all Italian channels broadcast in 4:3 letterboxed via sat, but they're in REAL 16:9 on DTT!)...

Thanks for your outstanding work :respect-051:

There's no reason yet to test the E2 since it's not stable enough to use daily. It really doesn't sound like it's IMPOSSIBLE for you to use it as it is but having a letterboxed picture would be your least problem...

massimo1167
08-12-2010, 08:17 PM
@massimo1167

OpenVPN installation

You can install Openvpn via the tv menu too.

setup - software management - advanced - packet management

then in the list of packages scroll till "OpenVpn" and install it.

Then you need to follow the install notes as before and modify the config files inside /etc/openvpn.

Thank You, but I don't know why, but I'm not able to update software catalog so I can't see the list of package.

But where is the path "setup - software management - advanced - packet management" where is "advanced"?

bakoko
08-12-2010, 08:59 PM
Thank You, but I don't know why, but I'm not able to update software catalog so I can't see the list of package.

But where is the path "setup - software management - advanced - packet management" where is "advanced"?

Setup/Software management/advanced Optional...............

massimo1167
08-12-2010, 09:53 PM
Setup/Software management/advanced Optional...............

In "Software management" I can see the following options:
Manage extensions
Software update
Software restore
Backup system settings
restore system settings
Install local extension

no other option, I can't see advanced Optional.
I've installed E2 RTi 1.0.2 on USB.

puhcho
08-12-2010, 10:00 PM
@MickeySa
could you please advise us the release date.
Thanks for your efforts:respect-067:

:respect-055:

wullieb25
08-12-2010, 10:52 PM
In "Software management" I can see the following options:
Manage extensions
Software update
Software restore
Backup system settings
restore system settings
Install local extension

no other option, I can't see advanced Optional.
I've installed E2 RTi 1.0.2 on USB.

Hi m8 first of all goto menu-setup-configuration and change intermediate to advanced then save

now try menu-setup-software management then advanced should be there:king-041:

massimo1167
09-12-2010, 05:07 AM
Hi m8 first of all goto menu-setup-configuration and change intermediate to advanced then save

now try menu-setup-software management then advanced should be there:king-041:

Thank You very much, I found "advanced" option.

I don't know why, but I've changed my gateway and I have solved my problem, maybe there problem is the DNS...

MickeySa
11-12-2010, 02:15 AM
We want to announce that RTi team is being attacked on Satpimps forum by certain members, like friendly-face and tx0 :

https://www.satpimps.co.uk/showthread.php?t=141186

in thread which doesn't belong to AzBox Sub-Forum !!!

Also I am asking the mods to close and delete thread about Medi@Link which doesn't have anything related with AzBox !!!

Also, I am asking all supporters of this project to read the all thread, from this link and to state their opinnion :

https://www.satpimps.co.uk/showthread.php?t=141186

Thanks.

Abdul1508
11-12-2010, 05:30 AM
it looks like there is no moderator on this theard, I also regret that not on the original forum of the RTI team use easiness to post, then what seems to me much easier. :cool:

massimo1167
11-12-2010, 08:19 AM
We want to announce that RTi team is being attacked on Satpimps forum by certain members, like friendly-face and tx0 :

https://www.satpimps.co.uk/showthread.php?t=141186

in thread which doesn't belong to AzBox Sub-Forum !!!

Also I am asking the mods to close and delete thread about Medi@Link which doesn't have anything related with AzBox !!!

Also, I am asking all supporters of this project to read the all thread, from this link and to state their opinnion :

https://www.satpimps.co.uk/showthread.php?t=141186

Thanks.
I believe that the issue raised in the thread in question is not so important, it does not matter, do not take it.
I think the best thing is not getting carried away on the ground of the controversy.


@ Admin and mods
I do not understand why, in a subforum dedicated to azbox's hardware there are offtopic thread, who are entitled to exist in the forum, but probably in different sections or subforum, maybe we should handle ....

@ All
I think the context is clear to everyone, only fools or those who pretend to be, do not understand the context...
Have you ever seen Gemini team to do images for AzBox or worse yet clones of the DM decoder?
I think no one should hide behind a finger, let's all be honest with themselves and consistent with what we say.

Dstream
11-12-2010, 11:44 AM
this has just been brough to my attention in a pm. Im now watching this and moderating each post. Flame wars are not for satpimps period.

get back to topic now. Users are to be warned in pms

@mickeysa
@txo

im as much for free speech, please debate away as you want about your boxes and software. no one will ever be happy with what they got as better ones come out.

You **** people off they dont develop for that box or post on pimps do they.

Think about it .....

we dont normally have live links but you might find this handy

http://lmgtfy.com/?q=respect

puhcho
12-12-2010, 12:44 PM
Hello!
I would like to know if the new version will have recording function because if it doesn't have, I will have to change my plans.


Looking forward to your prompt reply.

Thank you in advance.

Christmas is knocking at the door :respect-050:

kooleracer
12-12-2010, 01:08 PM
when will internet streaming will be a feature?

question to ripper&co.

MrKappa
12-12-2010, 01:10 PM
Hello!
I would like to know if the new version will have recording function because if it doesn't have, I will have to change my plans.


Looking forward to your prompt reply.

Thank you in advance.

Christmas is knocking at the door :respect-050:

We know that recording is in the roadmap but not sure if it will come with next release of the next one.
I have read a post saying that recording is already under testing so it should arrive soon but we for sure we cannot say if it will arrive before Xmas.
Ask Santa Claus :)

Juka
12-12-2010, 03:33 PM
Ripper says he is not finished with the drivers, filters etc.

It's all still being worked on, so patience!!!!!!!!!!!!!!

The P+ twin tuner function much LATER ON!

Enjoy!
According to gorski, hereīs a video with new driver:
http://www.youtube.com/watch?v=Cqka_M3oJBQ&feature=player_embedded

Regards
Juka

hfmls
12-12-2010, 03:47 PM
According to gorski, hereīs a video with new driver:
http://www.youtube.com/watch?v=Cqka_M3oJBQ&feature=player_embedded

Regards
Juka

where did u get that? :)

Juka
12-12-2010, 03:57 PM
where did u get that? :)
I think you know where: Nuestros Hermanos, get it? :respect-048:
Regards
:respect-020:

hfmls
12-12-2010, 04:01 PM
From what i can tell from the video:
HD stutter with fast movements (football, ice hokey, etc) : fixed
Random Cog problems: fixed
Crazy quality in HD channels in some receivers: fixed



aaaahhhhhhh, i wanna test it :)

dvlajkovic
12-12-2010, 04:03 PM
It originates from satforum.biz where one of the mods "NodiSa" had it recorded yesterday by his cellphone X10 in HD res and posted there...

Juka
12-12-2010, 04:12 PM
Without Internal Card Reader, I think this box is way to much better just to see FTA channels! :sifone:
When fixed, Iīll probably never go back to original firmware...
Awaiting patiently to do that! :respect-054:
Keep up the good work guys! :number-one-043:
Regards
Juka

hfmls
12-12-2010, 04:13 PM
i'm wainting for that too, but i'm gonna use it anyway since i use azbox as cccam cliente only :)
i just want to get internal cardreader working so i can sell my dm500 and buy new azbox. (never thought i would say this) hehe

2jj
12-12-2010, 06:26 PM
am I missing something here? I have my card in the internal cardreader with CCcam and itīs working like a charm. Just followed this guide:
hxxp://www.satpimps.co.uk/showpost.php?p=761648&postcount=8

bobster
12-12-2010, 06:40 PM
what is your card?

Abdul1508
12-12-2010, 06:47 PM
am I missing something here? I have my card in the internal cardreader with CCcam and itīs working like a charm. Just followed this guide:
hxxp://www.satpimps.co.uk/showpost.php?p=761648&postcount=8




Can you tell a little more, so like which card you use or which satellite channels etc..

Juka
12-12-2010, 06:48 PM
am I missing something here? I have my card in the internal cardreader with CCcam and itīs working like a charm. Just followed this guide:
hxxp://www.satpimps.co.uk/showpost.php?p=761648&postcount=8
I thought it was for CS...
Does that mean if I install it like this: hxxp://www.satpimps.co.uk/showpost.php?p=761648&postcount=8 cccam will read my seca card with internal card reader?
Regards
Juka

moding
12-12-2010, 07:00 PM
of course it is CS... no chance to get any card working in azbox with internal cardreader at this point of time, no mather which card and emulator you use...

GOG
12-12-2010, 08:05 PM
From what i can tell from the video:
HD stutter with fast movements (football, ice hokey, etc) : fixed
Random Cog problems: fixed
Crazy quality in HD channels in some receivers: fixed



aaaahhhhhhh, i wanna test it :)
That video proves nothing. Changing between two channels with the same resolution on a single satellite.

hfmls
12-12-2010, 08:07 PM
ok....that said, proves one thing, no more HD stutter with fast movements.

Juka
12-12-2010, 08:39 PM
am I missing something here? I have my card in the internal cardreader with CCcam and itīs working like a charm. Just followed this guide:
hxxp://www.satpimps.co.uk/showpost.php?p=761648&postcount=8
So, whatīs the card and the provider?:respect-050:

GOG
12-12-2010, 08:57 PM
ok....that said, proves one thing, no more HD stutter with fast movements.
Yes mate, 720p looks nice. My provider also uses 1080i50, I can't even use that as an output resolution in 1.0.2, only 1080i60 or 1080p50.

Let's hope the next release will be THE one :woot-035:

2jj
12-12-2010, 08:59 PM
So, whatīs the card and the provider?
Canal Digital Nordic (sweden)
Ooops. I think I have an solution on this "problem" No internal cardreader working. CCcam hops involved that fooled me

ReddishD
19-12-2010, 03:45 AM
[QUOTE=pascha99;736739]Tuner driver?
Have a look one the E2 drivers for the DNBU24511IST-NIM ,used in
Opti*** 9500.
It uses demodulator STV0903B, STV6110A

_hxxp://gitorious.net/open-duckbox-project-sh4/tdt/trees/master/tdt/cvs/driver/frontends

The tuner of the premium+ should be compatible in electrical design.
The last number of part numbering describes only what mechanical
type it is.See uploaded manual,side 13.
24511 is : vertical
24512 is : horizontal
24513 is : not described,but also horizontal with changed if-input
position.

The Opti*** is also produced with other frontends.
An ICC-Version you can buy,but no drivers yet.



Here an overview(not complete),of azbox tuners(dvb-frontends)

DVB-S2
DNBU24512ICC Elite/Premium / Connexant?
DNBU24513IST Premium+ /demodulator STV0903B, STV6110A

DVB-T
DNOD44QZH
################################# ################
20453 is most likely H, Low band IE no 22kh tone 22khz.
(Just a thort may be wrong)!
let me know.

MickeySa
23-12-2010, 12:29 PM
Just some information for all of You :)

- New Overclock driver/module ( You can safely set freq. of CPU if You need more speed, and this will not affect stability of Your receiver ).

- Recording / Subtitles - In Final phase, You can expect in next release

- A/V Settings fixed ( Changing resolutions and outputs for HDMI, Component, Scart etc. )

- Several other fix-es on Enigma 2.

Stay tuned, Christmas is comming and new release with it :)

[0_o]
23-12-2010, 02:20 PM
Thanks team ;)

I dont pretend to annoy nobody, but can I ask when team should know where comes a fix for internal reader support? Since you are implementing new modules, like overclock, and internal reader should be working since some versions ago (came on changelog), will be fixed soon?

Thanks and Congratulations!

peterpau
23-12-2010, 02:50 PM
DVBs2 hd is fixe?
:respect-063:

DragontearS
23-12-2010, 02:52 PM
Just some information for all of You :)

- New Overclock driver/module ( You can safely set freq. of CPU if You need more speed, and this will not affect stability of Your receiver ).

- Recording / Subtitles - In Final phase, You can expect in next release

- A/V Settings fixed ( Changing resolutions and outputs for HDMI, Component, Scart etc. )

- Several other fix-es on Enigma 2.

Stay tuned, Christmas is comming and new release with it :)
Can we also expect a first rudimental dvb-t driver for premium and elite? Just to know...

DragontearS
23-12-2010, 02:55 PM
DVBs2 hd is fixe?
:respect-063:

hd channels already work ..

hfmls
23-12-2010, 03:00 PM
Can we also expect a first rudimental dvb-t driver for premium and elite? Just to know...

i am assuming, from what i just read that they are trying (like expected) to make dvb-s2 stable enough. Only after they will start to work in other tunners.
Like they always said.




obs: i only expect release to be today since day 24 is terrible for internet! many family and friends :)

gadgeteer
23-12-2010, 03:14 PM
hd channels already work ..

It doesn't work for me since RTi Core version. My hd channels are always stutter, jitter or jerk(whatever you call :mad:). I really hope that the coming X'mas gift will fix this. :respect-060:

DragontearS
23-12-2010, 03:53 PM
yes I really know that, but now dvb-s2 seems to be very stable, so I thought they would have started for dvb-t..
@gadgeteer: I have a premium (not plus), and I see HD channels without problems..

GOG
23-12-2010, 04:06 PM
It doesn't work for me since RTi Core version. My hd channels are always stutter, jitter or jerk(whatever you call :mad:). I really hope that the coming X'mas gift will fix this. :respect-060:
Same here mate, especially on 0.8W. There's a bug report posted about it, we can only hope it gets fixed.

DragontearS
23-12-2010, 04:16 PM
Same here mate, especially on 0.8W. There's a bug report posted about it, we can only hope it gets fixed.

I receive them on 13 est, but in past I had same problems...

hfmls
23-12-2010, 04:28 PM
yes I really know that, but now dvb-s2 seems to be very stable, so I thought they would have started for dvb-t..
@gadgeteer: I have a premium (not plus), and I see HD channels without problems..

It still has problems, HD are not good, with fast movements it stutters.
No recording, subtitles,teletext. Many things missing, only after that they will move on to other tunners.

hfmls
23-12-2010, 04:50 PM
Just some information for all of You :)

- New Overclock driver/module ( You can safely set freq. of CPU if You need more speed, and this will not affect stability of Your receiver ).

- Recording / Subtitles - In Final phase, You can expect in next release

- A/V Settings fixed ( Changing resolutions and outputs for HDMI, Component, Scart etc. )

- Several other fix-es on Enigma 2.

Stay tuned, Christmas is comming and new release with it :)
MickeySA thank you for keeping us posted, but could you be a bit more specific ? :) I would like to know if tomorrow or today, and if today, will it be at night, afternoon?
I am asking this because holiday coming, many family and friends are gonna be at our homes, i gotta take 1 hour to update enigma2 :P
Not trying to be a pain in the ass, just asking.

xanadu
23-12-2010, 06:40 PM
Is the media player going to be fixed in next version?

It would be great to watch something without cogs appearing and a soundtrack that is in sync with the video. :)

hfmls
23-12-2010, 08:43 PM
well, i've watched over 30 .avi movies now and all worked out great.
mkv i only tested 2.

xanadu
23-12-2010, 09:15 PM
well, i've watched over 30 .avi movies now and all worked out great.
mkv i only tested 2.

Mine are mostly MKV 1080p DTS and all struggle to play.

Lots of similar reports in the RTi bug thread.

vlaya
23-12-2010, 10:48 PM
well, i've watched over 30 .avi movies now and all worked out great.
mkv i only tested 2.

Most movies are not in 16:9 format, so the picture iz deformed. Did you watch it like that, with long faces? :)

hfmls
23-12-2010, 10:49 PM
well, they appear ok here,but i noticed that black bars dont appear :( image is stretched.

vlaya
23-12-2010, 11:12 PM
I only watch tv shows because they are in 16:9 format, they play ok and I tested both .avi and .mkv.

linda59
24-12-2010, 10:30 PM
can we waiting anything tonight?? something new???? congratulations to the team for the good work.I WISH TO ALL MERRY CHRISTMAS AND ALL THE BEST! :respect-051:

lucky13
28-12-2010, 03:24 PM
ok i tried this by adding the following line to the rcS file:

#!/bin/sh
#
# rcS Call all S??* scripts in /etc/rcS.d in
# numerical/alphabetical order.
#
# Version: @(#)/etc/init.d/rcS 2.76 19-Apr-1999 miquels@cistron.nl
#

PATH=/sbin:/bin:/usr/sbin:/usr/bin
runlevel=S
prevlevel=N
umask 022
export PATH runlevel prevlevel

# Make sure proc is mounted
#
[ -d "/proc/1" ] || mount /proc

#
# See if system needs to be setup. This is ONLY meant to
# be used for the initial setup after a fresh installation!
#
if [ -x /sbin/unconfigured.sh ]
then
/sbin/unconfigured.sh
fi

#
# Source defaults.
#
. /etc/default/rcS

#
# Trap CTRL-C &c only in this shell so we can interrupt subprocesses.
#
trap ":" INT QUIT TSTP

#
# Do we have /proc/progress and set VERBOSE to "no" ?
# If so, calculate the number of scripts and the incremental step
#

# HACK: progress needs LCD to create /proc device entry
if [ -f /lib/modules/$(uname -r)/modules.dep ] && [ $(cat /lib/modules/$(uname -r)/modules.dep | grep dreambox_rc2 | wc -l) -gt 0 ]; then
/bin/true;
else
echo "regenerate module dependencies";
depmod -ae;
fi

[ $(cat /lib/modules/$(uname -r)/modules.dep | grep lcd | wc -l) -gt 0 ] && modprobe lcd

if [ "$VERBOSE" = no ]; then
if [ -e /proc/progress ]; then
set `ls -1 /etc/rc$runlevel.d/S* | wc`
numscripts=$1
# bootup, the first script, increments until 25.
# the userspace then picks up at 50
PROGRESS_incstep=`expr 25 / $1`
PROGRESS_value=25
PROGRESS=yes
export PROGRESS_value PROGRESS_incstep
fi
fi
export VERBOSE PROGRESS

#
# Call all parts in order.
#
for i in /etc/rcS.d/S??*
do
# Ignore dangling symlinks for now.
[ ! -f "$i" ] && continue

# Handle verbosity
[ "$VERBOSE" = very ] && echo "INIT: Running $i..."
if [ "$PROGRESS" = yes ]; then
export PROGRESS_value=`expr $PROGRESS_value + $PROGRESS_incstep`
echo "$PROGRESS_value Starting $i..." >/proc/progress
fi

case "$i" in
*.sh)
# Source shell script for speed.
(
trap - INT QUIT TSTP
set start
. $i
)
;;
*)
# No sh extension, so fork subprocess.
$i start
;;
esac

#
# Report status based on result code
#
result=$?
if [ "$PROGRESS" = yes ]; then
if [ "$result" = 0 ]; then
echo "=s" >/proc/progress
else
echo "=f" >/proc/progress
fi
fi
done

#
# For compatibility, run the files in /etc/rc.boot too.
#
[ -d /etc/rc.boot ] && run-parts /etc/rc.boot

#
# Finish setup if needed. The comment above about
# /sbin/unconfigured.sh applies here as well!
#
if [ -x /sbin/setup.sh ]
then
/sbin/setup.sh
fi

mount -t cifs \\\\IPofWINDOWS\\sharename /media/net -o username=user,pass=password


but on reboot the azbox failed to reboot and I've just spent the last hr rebuilding it....am i putting the sytax in the right place at the end of the file ?

ok this is working fine now with the above line for mapping a network drive, how would I edit this file to add two mapped drives instead of one...i've tried adding another line

mount -t cifs \\\\IPofWINDOWS\\sharename /media/net -o username=user,pass=password

and

mount -t cifs \\\\IPofWINDOWS\\sharename /media/net2 -o username=user,pass=password

or even the same line again mount -t cifs \\\\IPofWINDOWS\\sharename /media/net -o username=user,pass=password


but these dont seem to do anything, the first line works fine but the second seems to be ignored

BIGIFA
28-12-2010, 03:39 PM
i got this to work by useing this config

mount -t cifs \\\\IPofWINDOWS\\sharename /media/net -o username=user,pass=password
mount -t cifs \\\\IPofWINDOWS\\sharename /media/cf -o username=user,pass=password

this then shows the second share as compactflash in the media player

lucky13
28-12-2010, 03:51 PM
awesome thanks BIGIFA :D shame we can't rename these mounts to something more meaningfull but that is great thanks

Cirio
28-12-2010, 04:58 PM
awesome thanks BIGIFA :D shame we can't rename these mounts to something more meaningfull but that is great thanks

Hi,
you can name your mounts as you want.
I.E. you can name your 1st mount as harddisk1
and your 2nd as harddisk2.

First you have to create the mount point:

mkdir /media/harddisk1
mkdir /media/harddisk2
(you should do that by hand only the 1st time)

and then you mount your disks as usual:
mount -t cifs \\\\IPofWINDOWS\\sharename /media/harddisk1 -o username=user,pass=password
mount -t cifs \\\\IPofWINDOWS\\sharename /media/harddisk2 -o username=user,pass=password


Of course you can choose a meaningfull name!

Bye,

kooleracer
28-12-2010, 05:37 PM
Hi,
you can name your mounts as you want.
I.E. you can name your 1st mount as harddisk1
and your 2nd as harddisk2.

First you have to create the mount point:

mkdir /media/harddisk1
mkdir /media/harddisk2
(you should do that by hand only the 1st time)

and then you mount your disks as usual:
mount -t cifs \\\\IPofWINDOWS\\sharename /media/harddisk1 -o username=user,pass=password
mount -t cifs \\\\IPofWINDOWS\\sharename /media/harddisk2 -o username=user,pass=password


Of course you can choose a meaningfull name!

Bye,


I have a USB external storage on my PC how can i let the azbox read that one?

Cirio
28-12-2010, 06:13 PM
I have a USB external storage on my PC how can i let the azbox read that one?

Well, you should share the folder on your external hd and the use the command above to mount it.
Give permissions to "everyone".

kooleracer
28-12-2010, 06:56 PM
As soon i alter rcS de Azbox wont bootup?

Cirio
28-12-2010, 08:27 PM
As soon i alter rcS de Azbox wont bootup?

Be sure to use a unix compatible editor like Notepad++

DO NOT use windows notepad it will screw up your rcS file.

Bye,

lucky13
28-12-2010, 09:58 PM
As soon i alter rcS de Azbox wont bootup?

i had the same issue even when I used a compatible editor, I then added the extra line below and that seemed to sort it...dont ask me why


CCcam

lucky13
28-12-2010, 10:07 PM
Hi,
you can name your mounts as you want.
I.E. you can name your 1st mount as harddisk1
and your 2nd as harddisk2.

First you have to create the mount point:

mkdir /media/harddisk1
mkdir /media/harddisk2
(you should do that by hand only the 1st time)

and then you mount your disks as usual:
mount -t cifs \\\\IPofWINDOWS\\sharename /media/harddisk1 -o username=user,pass=password
mount -t cifs \\\\IPofWINDOWS\\sharename /media/harddisk2 -o username=user,pass=password


Of course you can choose a meaningfull name!

Bye,

thanks Cirio do I need to be in a specific dir when I use the mkdir command after I ssh in ? also would these directorys appear in the root of the media player file list window like the network mount and compact flash directorys I already have ?

Cirio
29-12-2010, 12:09 AM
thanks Cirio do I need to be in a specific dir when I use the mkdir command after I ssh in ?

I usually type the mkdir command from root directory. I'm not so expert in linux so i'm not sure if you type the command from other directories the result will be the same.


also would these directorys appear in the root of the media player file list window like the network mount and compact flash directorys I already have ?

Same as above: i'm not so expert to help you in this case..:001_07:

Bye,

moicas3004
30-12-2010, 01:48 PM
@Team

RC2 it's coming today or tomorow as it was posted?

Some very critical bugs to solve, like no wakeup from sleep, still some HD and SD drag image, newer w_izzard.py, video clear or video_off on exiting tv.

About recording and timishifting, it's working good in your test's?

Great work to all the Team and happy new year.

moicas3004
30-12-2010, 01:49 PM
@Team

RC2 it's coming today or tomorow as it was posted?

Some very critical bugs to solve, like no wakeup from sleep, VFD option isn't showing in menu, still some HD and SD drag image, newer w_izzard.py, video clear or video_off on exiting tv, can't initialize any disc in Hardisk menu ( always gives error ).

About recording and timishifting, it's working good in your test's?

Great work to all the Team and happy new year.

massimo1167
30-12-2010, 02:53 PM
I'm sorry, but I'm lost ...
I do not remember if the function for selecting a second audio in TV mode is active and fully working.
I remember, maybe one of the earlier versions, I have changed the sound, but now, the tests done on some movie channels on Sly Italy, it seems to me that the second language is not operated.

Same goes for the subtitles in TV mode, are already active or is one of the functions that will be implemented in RC2?

sectorNOlimits
30-12-2010, 03:14 PM
I think it is an issue at this moment and the only info I found is from chat-box on main site.


mr3p on Thursday 30 December 2010 - 12:50:27
still missing audio on several channels. issues appears to be AC3 audio PID not being correctly recognized during transponder scan. if correct AC3 audio PID is manually entered using Dreambox edit, AC3 audio is fine.

but I don't exacly how to correct the settings.

SNL

T33
30-12-2010, 04:03 PM
I think it is an issue at this moment and the only info I found is from chat-box on main site.



but I don't exacly how to correct the settings.

SNL

It says with Dreamboxedit, what do you not understand?

sectorNOlimits
30-12-2010, 05:26 PM
It says with Dreamboxedit, what do you not understand?

I never used a settings editor except for uploading the settings. So I don't know what kind of information I have to look for and change. But in this moment for me is not so important.

If you or someone else know what to look for and where to change I think that a little guide will be appreciate.

Thank you, SNL

T33
30-12-2010, 07:44 PM
I never used a settings editor except for uploading the settings. So I don't know what kind of information I have to look for and change. But in this moment for me is not so important.

If you or someone else know what to look for and where to change I think that a little guide will be appreciate.

Thank you, SNL

Install Dreamboxedit and use a Google, search for the channels you want and PID. Maybe you have to put in lyngsat in the search to.

bevste
30-12-2010, 10:01 PM
I think it is an issue at this moment and the only info I found is from chat-box on main site.



but I don't exacly how to correct the settings.

SNL

Not sure if this is right I have used dreamedit and according to info from King of sat audio pids are correct and it still outputs pcm to my onkyo amp both over hdmi and via optical I have scanned sats myself and used lists posted by various well known sat enthusiasts with the same results and yes they are ac3 not mpeg audio pids! I suspect this is still work in progress but it would be nice if someone from RTi would confirm this?

Cirio
30-12-2010, 11:24 PM
....and it still outputs pcm to my onkyo amp both over hdmi and via optical ...

Same happens to me: only PCM to my Yamaha amp, pids are verified and correct. So probably there's some "work in progress", let's hope in the next release:D

microscan
31-12-2010, 11:36 AM
@Team

RC2 it's coming today or tomorow as it was posted?

Some very critical bugs to solve, like no wakeup from sleep, VFD option isn't showing in menu, still some HD and SD drag image, newer w_izzard.py, video clear or video_off on exiting tv, can't initialize any disc in Hardisk menu ( always gives error ).

About recording and timishifting, it's working good in your test's?

Great work to all the Team and happy new year.

:bowing-036::bowing-036::bowing-036::bowing-036::bowing-036:

Minoco
31-12-2010, 01:06 PM
Is there an option to set lnb power off? I can't find it. I've search on advanced lnb settings but no luck...

xanadu
01-01-2011, 01:12 AM
When is a working RC2 coming?

zehnhoff74
02-01-2011, 12:31 AM
i hope soon :respect-040:

kooleracer
02-01-2011, 02:55 PM
can we update via the box in rc1?

damo
02-01-2011, 03:05 PM
I hope that the problem with wakeup from sleep will be solved in next release candidate because is a very high problem.... can anyone from e2 developers confirm that this problem will be solved in next rc ?

valerie
02-01-2011, 07:25 PM
Hello,
any news about RC2,with curent enigma2 RCI we have big probleme with wakeup pls
any news.
Big thanks and Happy new year to all.

leao6
02-01-2011, 09:37 PM
Hello,
any news about RC2,with curent enigma2 RCI we have big probleme with wakeup pls
any news.
Big thanks and Happy new year to all.


wakeup isnīt a big problem.:woot-035:

atoth73
02-01-2011, 10:10 PM
Indeed, wakeup is not a big problem, maybe the biggest problem is picture stuttering on some HD channels, but I hope that it will be sorted out soon in next releases.

hfmls
02-01-2011, 10:12 PM
Indeed, wakeup is not a big problem, maybe the biggest problem is picture stuttering on some HD channels, but I hope that it will be sorted out soon in next releases.

i have same opinion. HD stutter if the biggest problem for me too :)

T33
03-01-2011, 01:34 AM
My gawd...the day when wakeup is the biggest problem in the firmware I'm happy. Actually the only time I turn my receiver of is when I get "cogwheels of death" and I seriously think that is a far bigger problem.

massimo1167
03-01-2011, 10:26 AM
My gawd...the day when wakeup is the biggest problem in the firmware I'm happy. Actually the only time I turn my receiver of is when I get "cogwheels of death" and I seriously think that is a far bigger problem.

I haven't this kind of problem, maybe is better if You investigate your configuration: emu (I use mgcamd) or other plugins.

I think RTi E2 has many stuff to do, but now it's reliable: I can see COG only when I download EPG or update list package or with DD plugin I search subtitle in internet.
COGs are a message to say "wait a moment please, I'm very busy...", IMHO, this happens for internet access, sometime HDD access (when wakeup from standby).
Althogh I use only local network, I remember COGs with 3C client usage, I remember more blocks too, for this reason I use mgcamd (for me is the most reliable) even if with original firmware.
So I recommend You to change cam, You can try oscam with dvbapi enabled (not the one for azbox original firmware, but the one for dm800).

I use openvpn too (with tun.ko and package compiled by myself [thank 1k to 4@@@@ and of course The_Ripper for support]) and my E2 is very good!

My request to RTi team are:
- recording to hdd
- best support to 2nd language
- best support to subtitle (without DD plugin usage)
- 2nd tuner
- best compatibility with dm800 huge plugin comunity (e.i. "TG24 Interactive Plugin by Musicbob ", "DirettaGol Interactive Plugin by Musicbob " )

cjjdool
03-01-2011, 11:11 AM
@massimo1167

I disagree with your comment that the wakeup problem is due to configuration settings.

Even after a clean new install of RC1 standby/wakeup does not work (at least on a Premium plus but I've seen many posts with the same problem on other models)

zehnhoff74
03-01-2011, 12:42 PM
wakeup problem or not this is not important now.
more important is when RC2 is coming.
few informations about the current development will be also desirable.
we support the whole team and are confident to hear from you soon:bravo-009:

massimo1167
03-01-2011, 02:33 PM
@massimo1167

I disagree with your comment that the wakeup problem is due to configuration settings.

Even after a clean new install of RC1 standby/wakeup does not work (at least on a Premium plus but I've seen many posts with the same problem on other models)
I'm sorry, I was not well expressed.
I am not referring to the wakeup problem, for me this is the last problem and is completely irrelevant: I leave it on or turn it off.
But I was referring to the COGs problem.

4myazbox
03-01-2011, 07:24 PM
Hi everybody,
I agree that the wake-up problem is currently irrelevant - but as soon as recording is possible, wake-up must work - otherwise recording will only be possible while having the box all the time running - what is a bit expensive in terms of energy (and probably stability). And as I would really love to have a stable recording feature, I agree a little bit with the ones who care about the standby/wakeup issue. But: If recording works, without standby/wakeup, it would already help a lot!

happy new year to all, and especially the developers and testers!
:bravo-009:

peterpau
04-01-2011, 10:09 AM
HI
I am totally disgusted with the enigma2 azboxhd elite. have developed many features and good. But azbox is a satellite receiver and was designed to have HD and enigma2 not work and no date for it. TDT was no signal.
Anyway I will contradict my way back and be the official sw and not moving.

mx700
04-01-2011, 10:46 AM
HI
I am totally disgusted with the enigma2 azboxhd elite. have developed many features and good. But azbox is a satellite receiver and was designed to have HD and enigma2 not work and no date for it. TDT was no signal.
Anyway I will contradict my way back and be the official sw and not moving.

_hello

Look of course it's your opinion, but as the name shows it "rc1"well this is only a developed process and it gives a lot of work for many guys and keeps a lot of their time.
All comments are wellcome but is part of a process.

Our commitment is only can tested and give them the simple help they deserve,it's our feedback that helps a lot this guys.

they work hard and i wouldnīt like someone give my work for community a bad comment!!

note this is just my opinion and in spite of it i'm very happy and proud to that RC1 sometimes you have to be patient and found the best configurations.

MX700

T33
04-01-2011, 11:17 AM
HI
I am totally disgusted with the enigma2 azboxhd elite. have developed many features and good. But azbox is a satellite receiver and was designed to have HD and enigma2 not work and no date for it. TDT was no signal.
Anyway I will contradict my way back and be the official sw and not moving.

Opps, I gave a thank you to this post by mistake. I hope this is a bad google translate issue. Anyway, it's good that people who donīt understand that this is not a final release stays away from current E2, less meaningless comments.

bevste
04-01-2011, 11:37 AM
HI
I am totally disgusted with the enigma2 azboxhd elite. have developed many features and good. But azbox is a satellite receiver and was designed to have HD and enigma2 not work and no date for it. TDT was no signal.
Anyway I will contradict my way back and be the official sw and not moving.

OK Think people got the message first time! You dont like it, your free to choose but one post is all it needs!

the illuminati
04-01-2011, 01:15 PM
hi everyone
we were promised RC2 on the night of 31/12/2010 but it seems that it didn't come thru and we sure can understand the reason .and i know a wise guy will come out and say what a good job the coders are doing and not to be pushy but the thing is that all i am asking for
is a little info as i don't think a little info will do any harm to the project
thanks

mihaela
04-01-2011, 01:32 PM
hi everyone
we were promised RC2 on the night of 31/12/2010 but it seems that it didn't come thru and we sure can understand the reason .and i know a wise guy will come out and say what a good job the coders are doing and not to be pushy but the thing is that all i am asking for
is a little info as i don't think a little info will do any harm to the project
thanks

are all deceased

T33
04-01-2011, 01:48 PM
hi everyone
we were promised RC2 on the night of 31/12/2010 but it seems that it didn't come thru and we sure can understand the reason .and i know a wise guy will come out and say what a good job the coders are doing and not to be pushy but the thing is that all i am asking for
is a little info as i don't think a little info will do any harm to the project
thanks

Fooock that thank you button...did the same mistake one more! :-)

No one promised you anything. They said expect a new release before the new year thats all.

atoth73
04-01-2011, 03:14 PM
Yes, it will be very nice if we got a little info regarding the actual progress, however I m sure that the team is working very hard in these days to release a very good RC2 release.

hfmls
04-01-2011, 04:47 PM
HI
I am totally disgusted with the enigma2 azboxhd elite. have developed many features and good. But azbox is a satellite receiver and was designed to have HD and enigma2 not work and no date for it. TDT was no signal.
Anyway I will contradict my way back and be the official sw and not moving.

team RTI doesn''t need guys like you.
go back to original firmware then.

the illuminati
04-01-2011, 05:04 PM
Fooock that thank you button...did the same mistake one more! :-)

No one promised you anything. They said expect a new release before the new year thats all.

my mistake ... not on 31/12

They said expect a new release before the new year mr lawyer is it new year yet???
i was just wishing .not making a fuss but as usual someone just has to ...:D

T33
04-01-2011, 06:09 PM
my mistake ... not on 31/12

They said expect a new release before the new year mr lawyer is it new year yet???
i was just wishing .not making a fuss but as usual someone just has to ...:D

You don't need to tell me that...I don't fooking care about the date. What I tried to tell you is that "you can expect" doesn't mean that they promised anything. That translates as they had intentions to release a new improved version before the end of the year...capice?

However in the light of the fact that a date was mentioned I'm as curious as all you guys on why that didn't happen and the status of the development (really the latter would be the only nice thing to know!).

gimsy
04-01-2011, 06:24 PM
serve only the info ... so we understand what implementing the new firmware .. so as to keep the audience quiet so as to support the work the team is playing ... rci I thank the development team as to whether to inform us about it
thanks ......:respect-051:

moicas3004
04-01-2011, 07:56 PM
Guys, have you think that maybe they had some problems that is needed to be solved?

I think that is better to wait some more days and the RC2 comes almost final version that have it know full of bugs.

Take it easy, they are people too, that have theyr works and they family.

They are doing this E2 in theyr free time so just relax and wait. If not go to original FW and dont bugs us E2 users and testers and also the Team.

satdish101
04-01-2011, 09:03 PM
it doesn't really matter to those of us who enjoy the process and testing out new versions but it might have been better to just leave it as beta rather than RC as there are unrealistic expectations as evidenced by a few of the posts now appearing. Fortunately, that isn't the majority :cheers2: Thanks to those who have taken the time to provide feedback on bug tracker, hopefully the_ripper and team are using that that info going forward.

theruck
05-01-2011, 03:17 PM
Thanks to those who have taken the time to provide feedback on bug tracker, hopefully the_ripper and team are using that that info going forward.
you mean the bugtracker which has all the bugs set as unconfirmed and no progress? actually it is not a bugtracker its more like not working basic features tracker. no wonder ppl are asking for dates. there is no info about any future of this "independent and free time only" development team. the only time word we could see is "soon". well then i need you to remind that this soon is taking more than 3 months already which most of ppl do not find to be "soon".

T33
05-01-2011, 05:26 PM
you mean the bugtracker which has all the bugs set as unconfirmed and no progress? actually it is not a bugtracker its more like not working basic features tracker. no wonder ppl are asking for dates. there is no info about any future of this "independent and free time only" development team. the only time word we could see is "soon". well then i need you to remind that this soon is taking more than 3 months already which most of ppl do not find to be "soon".

Yes, you are right the bug-tracking handling seems crappy however the rest youīre implying is pure shiiite. 3 months for developing a firmware for such a complex product is quite fast regarding the status it's in now and taking in account that they might not have had all the HW info about the boxes all the time it's even more impressing.

And yes, they had a shell to begin with...it's still impressive. :bowing-036:

Minoco
05-01-2011, 05:45 PM
Why no news from the developers since 'the last year'? They used to write something in the forum at least every 2 or 3 days

I didnt like the betas enough to keep them installed, but the rc1 has been impressive and we all are waiting for rc2. Hope to have news from them soon

I guess it's holiday for them too :)

BIGIFA
05-01-2011, 05:53 PM
FFS PPL you will get it when it comes do you realy think by cloging up a thread with "I want we need and when is it comeing" will make it come any quicker insted of posting this sort of crap google for **** or something equaly pointless and leave the team to get on with it.

P.S. thank you to the developers for there continued hard work and i trust you all had a good holiday

theruck
05-01-2011, 08:24 PM
how do you know that they did a lot of hard work? yout ake the RC1 and you say it is a lot of work done. i say that there is a lot of work undone. you say thank you i say do it better and do not call RC1 something which is barely a beta...
you all got multiple orga*** by seeing E2 on azbox but what features of azbox can you use? so why are you thankful? for geting tricked and releasing the pressure to the manufacturer and focusing on this neverending story of E2?

MoRpHiUS_x
05-01-2011, 08:36 PM
how do you know that they did a lot of hard work? yout ake the RC1 and you say it is a lot of work done. i say that there is a lot of work undone. you say thank you i say do it better and do not call RC1 something which is barely a beta...
you all got multiple orga*** by seeing E2 on azbox but what features of azbox can you use? so why are you thankful? for geting tricked and releasing the pressure to the manufacturer and focusing on this neverending story of E2?

While both critics and you know because you do not develop the firmware your own?.

All those who criticize, you do because you want to get everything done. You have no idea of programming and what's more no patience.

If you do not like what's there, and you sell your AZBOX buy a DM.

BIGIFA
05-01-2011, 08:37 PM
@theruck
i am sorry but do you honistly beleave what you are saying? othere than advertiseing what has open sat done for the people that baught ther product for the past year or so. RTI have worked hard to provid us with hope for our long forgotten boxes myn dose everything i want it to do at the moment i have SD/HD tv USALS and i can stream files from my pc and my NAS drive there is only 1 thing i await and that is RF Output control. also these people who develop the new E2 for AzBox do so free of charge and i sugest if you dont like it theruck you FCUK OFF out of the AzBox HD Enigma 2 section and go back to **** hub you banker

hfmls
05-01-2011, 08:38 PM
theruck that post is disrespectful and selfish regarding all RTI team!!!

it's people like you saying stuff like that that makes coders hate what they do.
It's free,it's a favour!! We have it because of them.
If u don't like it, go back to original firmware and shut up. They always have hardwork!
They call it RC1 RC2 whatever they like!

why are we thankful??? for 5 day epg, dvbapi, native cccam, fast zapping, awsome image quality, youtube plugin much better than original.
awsome quality in .avi.


theruck, people like you shouldn't be able to test anything at all!!

MACH5
05-01-2011, 08:50 PM
If you read the remark carefully the criticism is not the programmers, but us that is we, why because opensat does not get any criticm anymore and no pressure. In fact it seems that rti is made with help from opensat, but they do not help enough. They should help with the recording function and help the programmers. But they are opensat they only do lipservice.

But we can wait for another year, this box still has huge potential, just have patience.

hfmls
05-01-2011, 08:52 PM
who cares about opensat anyway. i don't ant to go back to original firmware.
he was talking trash about RC1 situation..

happyhammer
05-01-2011, 10:40 PM
" it's free,it's a favour!! "

is it? don't get me wrong, they are doing a great job,no doubt and i think you are probably quite right, the ripper has been fantastic for us.

but you can see where the sceptism comes from, Opensh1te treat customers abysmally, starting from the twin tuner lies, the daily/weekly loads that stopped, the one step forward two steps back for 1.5 years development that never reached a released firmware, the " we've got a great new devopment manager hired with loads of experience, instead of the young kids with feck all coding". And now when, we get rippers team doing something, all opensh1te releases stop and rippers team thank opensh1te for there support.

its not unreasonable for users to assume opensh1te are bankrolling the rti team, is it?

i'm thankful for the rti team, whoever or whatever they are, i will will not intrude on their privicy by satisfying idle curiosity, its none of my business. i respect what they have done.

hfmls
05-01-2011, 10:44 PM
Their work is free for "US". i don't care about opensat anymore, we (users) should be glad RTI team is working for us since we don't pay them a single €. Period.

If u guys have anything bad to say about azbox hd, go and knock opensat's door.

cosworth4x4
05-01-2011, 10:52 PM
ok guys calm it down a little or there will be nothing on here support good or bad.

if i was helping out with support after seeing some of the replies here , id start to think why am i even bothering,whats the saying dont bite the hand that feeds you.

happyhammer
05-01-2011, 11:01 PM
Their work is free for "US". i don't care about opensat anymore, we (users) should be glad RTI team is working for us since we don't pay them a single €. Period.

If u guys have anything bad to say about azbox hd, go and knock opensat's door.

i only speak for myself, not for other guys, i'm just saying i understand where they are comimg from.
After buying box, i dont pay open any more € for the crap releases they gave us, just as you say, we have not paid anymore € for RTI teams great work. I am full supporter of RTI team, they do breathe life nto the product and i have found them to be most honest and professional in dealing with them.

cosworth4x4
05-01-2011, 11:08 PM
@ happy hammer please refrain from name calling im nothing to do with them but if they have a forum or some place you can abuse them then go there .

youre welcome to post you points , upto a mark dont step over it cheers.

when you abuse it does not come back to you it comes back to the forum.

happyhammer
05-01-2011, 11:14 PM
Apologies, just to clarify, i was not name callimg any individuals but my lighthearted play on company names was probably misplaced. sorry.

cosworth4x4
05-01-2011, 11:17 PM
ok thing is they will not see it that way, so you can see our position.


hopefully you will get the firmware you req.


:respect-055:

PieFacE
06-01-2011, 01:14 AM
how do you know that they did a lot of hard work? yout ake the RC1 and you say it is a lot of work done. i say that there is a lot of work undone. you say thank you i say do it better and do not call RC1 something which is barely a beta...
you all got multiple orga*** by seeing E2 on azbox but what features of azbox can you use? so why are you thankful? for geting tricked and releasing the pressure to the manufacturer and focusing on this neverending story of E2?

How about you create your own firmware exactly how you want it then?

Oh right, you have no clue how.

MoRpHiUS_x
06-01-2011, 01:35 AM
@happyhammer

What the RTi Team thanked to OpenSAT?.

Of course, who think they have provided do***entation of the tuners and stuff?.

But apart from the technical support do***entation and add nothing more.

Encourages them to help the RTi Team?, of course.

theruck
06-01-2011, 12:27 PM
do you really think that RTI is doing it for free? i do not think so.
i think that opensat has moved the development "to the community" as they were not able to improve their firmware. what could they loose? so they provided RTI with sources and let them do what RTI promised to opensat that they are capable of doing. why else would not RTI release the sources yet so we all can contribute? why is there no real bugtracker. come on ppl is it really for free?
if i were doing something for free and community was waiting for me i would report every day work in progress and i would not let people like me doubt. and i would use different words than SOON. SOON is so much opensat word.
i do not want to flamewar here but for me RTI has not yet released anything better than opensat so i hold my horses with the thankfull posts. yes i beleive there will be one day a working E2 but talking now about some quick zapping is quite blind. that quick zapping might be much slower when all the features will be working and i mean working stable.
why is RTI team relasing these versions? apparently they do not need any testing yet as they can test themselves.

by the way does anybody know how to enable the second dvb-s tuner? i have 2 tuners which are same type so if the driver works for 1 it should be working for both.

rambest
06-01-2011, 12:45 PM
...by the way does anybody know how to enable the second dvb-s tuner? i have 2 tuners which are same type so if the driver works for 1 it should be working for both.

The source code of tuner drivers won't be published.Svn as the_ripper stated should be run as soon as they get a stable drivers.The code for second tuner will be added then too

theruck
06-01-2011, 02:23 PM
as SOON as :)

tx0
06-01-2011, 02:39 PM
mate dont expect much from this box. the only way to develop firmware for it is to do it yourself just for fun if you have a lot of time. Its a good example of how development goes in all that wannabe-cool companies. There are other examples - ASUS notebooks and their crappy APCI battery management, BP and their oil spills... So if you want to make this world better its your right to help or either choose well tested products. Its easier to study on someone's mistakes rather than make your own.

Blagi
06-01-2011, 03:45 PM
It's not easy to get your paws on do***entation that would enable one to write the drivers necessary!

And to reverse engineer everything like that is a lot of work, too!

It seems the team had inside help with those.

zehnhoff74
06-01-2011, 04:08 PM
dear RTI developpers
please give us some news/feedback.
all these critics and negativ posts!!!
itīs getting more unesthetic here:smash:

theruck
06-01-2011, 04:58 PM
dear RTI team, please clarify your opensat relationship and explain what will happen with that relationship on the day when you release a fully functional enigma2 firmware

rambest
06-01-2011, 05:03 PM
as SOON as :)

What stops you?If you can coding faster prove it for us and do not whining for trifles and jeer rti team.

2jj
06-01-2011, 05:35 PM
I got my first STB back in 1990. I have been in brute force groups for cracking d2mac encrytion. I got one of the first Dreambox 7000 delivered to Sweden and I remember the ****ty firmware that U got back then. Now I have the Azbox still with the original FW but Iīm waiting for any RC e2 with support for internal cardreader, then I will try it for real. I have tried some of the earlier e2 versions but got back to original.

Just to clarify for everybody: The perfect FW will never be published! If You have a look around dreambox forums You will see that there is still questions about how to get this and that to work and that is one of the points about all STBīs with replacaeble FW. It will never get finished! In this case RTI is trying to get a FW not made for this box to work on this box and they do an extremely good work.

Do opensat help the RTI team? I donīt care, I hope so.
Do I want working, stable E2 on my Azbox? Of course, but I can wait.
Why is people so impatient in this forum? Because all of you, just like me doesnīt accept the ****ty STB that the sat providers want us to use and want the freedom to tweak your own STB.

Just my opinion

theruck
06-01-2011, 06:31 PM
if this is extremely good work for you then your expectations are below average. i just pointed out obvious issues and correct questions to RTI team. i understand the problematic of software development. i know that the firmware will not be ready for use tomorrow. i also know there are many ppl who want to help but RTI team is denying help from ppl who want to help so keep your "do your own fw" answers. there are many ppl capable of doing such a firware as we know today

The_Ripper
06-01-2011, 08:29 PM
@theruck
You want to help me/us with small part of the driver ?, read my post
https://www.satpimps.co.uk/showpost.php?p=779930&postcount=11

neo.70
06-01-2011, 08:36 PM
@the_ripper
i think you will probably find he goes quite now haha,

jolatacqce
06-01-2011, 08:46 PM
Wont it be great when the xmas holidays are over,and children like 'THERUCK' are gone back to school.

Sjaak66
06-01-2011, 09:17 PM
Djeehh what kind of firmware discussion treath is left of this.
Criticism is ok but we are talking here about a development !

It still is no daily use firmware and as far as I've read the RTI
has not claimed the firmware to be ready at all.

Get realistic with DMM scene there's also still development.

Daily use firmware should be able to use the boxes fully possibilities.
So twin support when applicable, cardreader, recording etc.

It's a long way to go there, but the progress is good, now
it's the bits and pieces to get the stuff stable that'll take longer
then just get the picture on screen :).

Keep up the job guys with or without the help of opensat !!

Sjaak66
06-01-2011, 09:19 PM
Keep respect for each other please !!

Carp95
06-01-2011, 10:03 PM
Well in case off stable watching sat tv RC1 is a huge improvement against 1.03, tested all day today and no spinners @all:respect-055:

Shure there's more to do but it will be done.

I'am less active in this topic because off guys like theruck, so let's see where his mouth is

hfmls
07-01-2011, 01:16 AM
dear RTI team, please clarify your opensat relationship and explain what will happen with that relationship on the day when you release a fully functional enigma2 firmware

they don't have to explain u "poop".
go get a new hobby instead of flaming azbox hd SAVIOURS. who cares what relation do they have? it's none of our business.
we were asked to test and report bugs (IF WE WANTED TOO).
the rest? well the rest if you're unhappy with all the stuff, like i said, phone opensat office.

BIGIFA
07-01-2011, 09:53 AM
Be caiefull hfmls theruck has 6 posts in total and every one is a negative one intended to stir up trouble but if you bite back youl get a warning lmao

Bertole
07-01-2011, 12:34 PM
good question THERUCK ...see that we agree with the issue :cheers2:

edu1971
07-01-2011, 12:37 PM
Happy new year.

Just wanted to comment that it seems unfair to all critical to the RTi team, they are striving so that we can have a good Azbox, and read some really terrible things that appear in the forum it seems out of place.

I would therefore like to thank all the team all the work done so far, and besides they are free to launch new update whenever they want, without giving any explanations daily.

Nothing greetings and encouragement to the RTI team.

Greetings from Spain.

postscript. and as they say around here and for those who can not appreciate the effort. "well-born is to be grateful. "

and sorry because my English is rather short, my friend's translation of google translator

kunter
07-01-2011, 03:46 PM
I

kunter
07-01-2011, 03:47 PM
I partially agree with theruck, we should push for a good and working firmware, that what we paid for,but... we should push Opensat. The_ripper and his team are doing grate job for all Azbox users, let them do it. theruck and others if you can't to help, don't disturb, please. Opensat have our money so push them for new fw. Thing if Opesat is cooperating with The_ripper does not give us right to require anything from him. We can be only thankful for their(The_ripper and team) effort.

Best regards, guys and good luck.

ps. Sorry about my english

Ps2. sorry for upper post. my mistake

zehnhoff74
07-01-2011, 04:08 PM
Dear moderators
please close this thread.
Thanks in advance.

theruck
07-01-2011, 04:10 PM
@theruck
You want to help me/us with small part of the driver ?, read my post
https://www.satpimps.co.uk/showpost.php?p=779930&postcount=11

ok new driver will be available SOON :) stay tuned ;)

[0_o]
07-01-2011, 05:05 PM
ok new driver will be available SOON :) stay tuned ;)

Will be available from who?? You???
I'll be here to see that my friend...

cacul
07-01-2011, 05:53 PM
I think so it was a joke, on his part alluded to these words (SOON :) stay tuned ;))

[0_o]
07-01-2011, 06:48 PM
I think so it was a joke, on his part alluded to these words (SOON :) stay tuned ;))

Yea, I know :)
But... what are he's thinking? Wow... great joke!... but nobody is laughing lol

cosworth4x4
07-01-2011, 08:33 PM
Be caiefull hfmls theruck has 6 posts in total and every one is a negative one intended to stir up trouble but if you bite back youl get a warning lmao

there was nothing wrong with hfmls post,yes theruck has made some bad posts before the warning i posted to EVERYONE ,there was only one that came after that warning buy yourself.

reason you got the warning.

if theruck makes the same abbusive comment yes he will also get a personal warning, you was not singled out in anyway.

cheers.

BIGIFA
07-01-2011, 09:51 PM
all of theruck`s posts (before and after public warning) have been insulting to the integraty of the RTI project and all of us who beta test for it

cosworth4x4
07-01-2011, 11:24 PM
7 posts or 54 you will get treated the same.

ive gone back through therucks posts AFTER the warning , i dont see anything abusive yes hes not happy with the work, but i cant comment on that as i dont own the box.

if you can point out what im missing and i find it abusive then i will gladly remove it.

im not wasting my night editing prior posts before the warning and i dont intend arguing with you for the next few hours over it.

and perhaps you really need to re read the 3 posts i made sticking up for them and support.

cro1969
08-01-2011, 12:23 PM
ok guys just wanting to know where i can download the ripper teams latest image bin for my azbox????

valkhyr
08-01-2011, 12:30 PM
https://www.satpimps.co.uk/showthread.php?t=146114

theruck
08-01-2011, 05:52 PM
btw. does anybody know what development is being made? enigma 2 is done. drivers are vendor provided. obviously no plans nor roadmap. neither from vendor nor RTI. nobody using the bugtracker. more secrets than actual results. so why do you all keep calling it "development" ?

Ceaser
08-01-2011, 06:04 PM
ok new driver will be available SOON :) stay tuned ;)

I was under the impression from the statement above that you were now helping out with the drivers. maybe you could enlighten some of us members how your side of the development is going.

Keep up the good work......... :respect-040:

hfmls
08-01-2011, 06:27 PM
btw. does anybody know what development is being made? enigma 2 is done. drivers are vendor provided. obviously no plans nor roadmap. neither from vendor nor RTI. nobody using the bugtracker. more secrets than actual results. so why do you all keep calling it "development" ?

dude, why don't develop into a bird and fly far away?

hfmls
08-01-2011, 06:28 PM
I was under the impression from the statement above that you were now helping out with the drivers. maybe you could enlighten some of us members how your side of the development is going.

Keep up the good work......... :respect-040:

no he isn't...he just signed to be a pain in the arss to everybody. dmm fanboy i dunno.

Bertole
08-01-2011, 07:03 PM
ok new driver will be available SOON :) stay tuned ;)

excellent, you can do it and pick up all the credits and of course money :bravo-009:

cosworth4x4
08-01-2011, 09:01 PM
btw. does anybody know what development is being made? enigma 2 is done. drivers are vendor provided. obviously no plans nor roadmap. neither from vendor nor RTI. nobody using the bugtracker. more secrets than actual results. so why do you all keep calling it "development" ?

ok ruck please keep it sensible ,if they working on something then of course its going to be development may not always go the right way first time.
so im sure when its ready it will be out , you not going to make it arrive any quicker so just be patient.

cheers.

Blagi
09-01-2011, 09:37 PM
If you were to read the thread, ruck, you would see that drivers are not being provided by the company...

They have to be written properly, from scratch, hence problems. The_Ripper is doing that.

Others, like satommy in multimedia, are helping out and so it's step-by-step...

A steep learning curve, at least for some, it seems... Expect delays...

cosworth4x4
09-01-2011, 09:41 PM
ok guys you have to help out here is the post by valkhyr the software/firmware you been waiting for ?????????

if so then if all agree ill close this one , if not let me know so i can leave it open,cheers.

neo.70
09-01-2011, 09:52 PM
no mate its not the firmware weve been waiting for, i think it will be a while and even when its out its early days of development, so threads like this will reappear, police them well haha

jumegon77
09-01-2011, 11:52 PM
In E2 I have no MMP folder, I can create it for copy update but I can't delete 2 pictures.
How must I do it?

hfmls
10-01-2011, 01:30 AM
what ?!

pr2
10-01-2011, 10:55 AM
In E2 I have no MMP folder, I can create it for copy update but I can't delete 2 pictures.
How must I do it?

Hi,

I don't understand what you are trying to do... but it is normal that there is no MMP folder in E2. MMP folder is only for official firmware, don't try to copy yourself the file from E2 into MMP this won't work. Kernel and partitions are differents.
If you want to upgrade your Azbox from official firmware to E2, you need to use azup or JaZUp 1.3.

Pr2

jumegon77
10-01-2011, 02:47 PM
OK, sorry for my english if you don't understand me. The main problem is I can't upgrade my azboxHD with original and KGD firmwares: the original DOM doesn't let format it and stops when is at 2% installing(pass 3/4), the SD adapter DOM format it but has problem extracting the FW(with several FAT32 USB's).
My solution: I've install E2, for have telnet communication with the box(AZup), with this I would like flash the "BIOS" thinking the problem is with the flash who is formatting wrongly, having E2 I reflash since 7th pass of andressis2k tutorial. What I have not MMP folder, I created it in E2 I copied 3 archives at /MMP and /tmp I gived 755 and I executed update by PuTTy, all correct and rebooted, but no firmware inside, and I couldnīt upgrade by patch.bin at USB (exactly the same before E2).
How can I restore flash for format the DOM like factory?
Thank you.

pr2
10-01-2011, 03:26 PM
Hi,

So today your Azbox is in Rescue Mode? right?

Try this:
- Download JaZUp 1.3
- In the package you will find the HP USB Format Tool.
- run it on one of your USB key
- Copy the file patch.bin from official firmware (0.9.5020 or 0.9.5209) to the root of your USB key (don't forgot to rename it patch.bin and nothing else).
- Power off you Azbox.
- Connect the USB key
- Power On your Azbox.
- Start JaZUp 1.3 type in your Azbox Rescue Mode IP address and press update button.
- Check what happen.
- It is possible that the very first time your USB stick is not recognise this is a new kernel (E2) problem; sometimes the USB driver crash. In this case JaZUp will restart your Azbox.
- If JaZUp always restart your Azbox, take another USB key format it with HD USB format utilities and restart the procedure.

If you use an SD adaptator, this kind of adaptator doesn't like hot partition change so when the file copy start most of the time the copy process failed or files are corrupted. That's why JaZUp will prompt you to power off / power on your Azbox at some stage because we create the right partition so we ask for this operation to have the SD adaptator started with the right destination partitions.

When we ask to Power Off / Power On use the back switch of your Azbox and not a long press on the RCU power button. The RCU reboot is not enough since the SD adaptator is not resetted in this case!!!

Pr2

MickeySa
13-01-2011, 11:34 PM
Hello friends,

Just little bit to warm up You, before new release come out....

FYI : Subtitles will be shifter to right side to reach central position :), screenshots taken by the_ripper, after he finally got subtitles to show correctly.

NDJAMEL
14-01-2011, 12:04 AM
@MickeySa
Thanks for all.
We can wait a new release for this night ?

hfmls
14-01-2011, 12:22 AM
same question as previous post :) just to know if we/me should wait for release or go to sleep :P

The_Ripper
14-01-2011, 12:32 AM
Not tonight, it's still not ready even for other team members to try it.
Need to remove debug code and other stuff.
Till end of this week we should publish finally RC2.
Stay tuned ...

NDJAMEL
14-01-2011, 12:44 AM
A big big thanks for you The Ripper
We can at least have a changelog ?

hfmls
14-01-2011, 01:13 AM
hehehe, yeah, new changes log would be good :)

[0_o]
14-01-2011, 01:39 AM
eheh I just hope to see what I'm saying too much :p

rka
14-01-2011, 09:16 AM
We 're verry patient for this new release ; it will be really a good job from the team and The Ripper .Big Thnaks for thiere contribution to make a new change log .
Keep Tunning for this event and this new steep.:bravo-009::respect-055::respect-040:

jumegon77
14-01-2011, 10:14 AM
Thank you very much, for all people who have same problem than mine, this is the correct solution.
:bowing-036::bowing-036:

Hi,

So today your Azbox is in Rescue Mode? right?

Try this:
- Download JaZUp 1.3
- In the package you will find the HP USB Format Tool.
- run it on one of your USB key
- Copy the file patch.bin from official firmware (0.9.5020 or 0.9.5209) to the root of your USB key (don't forgot to rename it patch.bin and nothing else).
- Power off you Azbox.
- Connect the USB key
- Power On your Azbox.
- Start JaZUp 1.3 type in your Azbox Rescue Mode IP address and press update button.
- Check what happen.
- It is possible that the very first time your USB stick is not recognise this is a new kernel (E2) problem; sometimes the USB driver crash. In this case JaZUp will restart your Azbox.
- If JaZUp always restart your Azbox, take another USB key format it with HD USB format utilities and restart the procedure.

If you use an SD adaptator, this kind of adaptator doesn't like hot partition change so when the file copy start most of the time the copy process failed or files are corrupted. That's why JaZUp will prompt you to power off / power on your Azbox at some stage because we create the right partition so we ask for this operation to have the SD adaptator started with the right destination partitions.

When we ask to Power Off / Power On use the back switch of your Azbox and not a long press on the RCU power button. The RCU reboot is not enough since the SD adaptator is not resetted in this case!!!

Pr2

swgw
14-01-2011, 12:33 PM
Not tonight, it's still not ready even for other team members to try it.
Need to remove debug code and other stuff.
Till end of this week we should publish finally RC2.
Stay tuned ...

Ur a legend Ripper take ur time mate, when things are ready they are ready.:respect-055:

swgw
14-01-2011, 12:35 PM
if they dont like it rape em Ripper, if they don't like that they will never will one way or the other.....




TOP job mate

pateken
14-01-2011, 02:14 PM
In RC2 work DVB-T wifi?

thank's

MickeySa
14-01-2011, 03:11 PM
DVB-T wifi ?

Do You think on DVB-T and WiFi or ?!

FYI Wi-Fi already working in Premiu/Premium+ models.

For answer about DVB-T/C, please use search Button positioned on the top of the forum, or read the threads, as it is stated many times.

I know that it is easier to come and ask, but please, read little bit more, it will be easier for You to understand some things.

T33
14-01-2011, 03:58 PM
I WANT DVB-T WIFI, NOW!

(don't know what it is but I really really want it!) ;-)

Juka
14-01-2011, 04:08 PM
If Internal Cardreader works, probably most of us (including me) will never go back to original firm...
Thanks for your efforts and hard work!
Keep up the good work!

Regards
Juka

:podium-016:

[0_o]
14-01-2011, 04:15 PM
If Internal Cardreader works, probably most of us (including me) will never go back to original firm...
Thanks for your efforts and hard work!
Keep up the good work!

Regards
Juka

:podium-016:

Yea, really!
Because I have a card and I dont use my official receiver. So, there's my only shot :)

nstergi
14-01-2011, 04:15 PM
I WANT DVB-T WIFI, NOW!

(don't know what it is but I really really want it!) ;-)

maybe he asked for dvb-t drivers and a stable wifi


anyway, i cant wait for e2 with dvb-t support

thank you RTi team

Doume
14-01-2011, 04:19 PM
I WANT DVB-T WIFI, NOW!

(don't know what it is but I really really want it!) ;-)

And if you don't have, do you will cry, shake you feets, what other ?

T33
14-01-2011, 05:07 PM
And if you don't have, do you will cry, shake you feets, what other ?

Is this a joke, a question or just some random words? :P

pateken
14-01-2011, 05:41 PM
DVB-T wifi ?

Do You think on DVB-T and WiFi or ?!

FYI Wi-Fi already working in Premiu/Premium+ models.

For answer about DVB-T/C, please use search Button positioned on the top of the forum, or read the threads, as it is stated many times.

I know that it is easier to come and ask, but please, read little bit more, it will be easier for You to understand some things.



MickeySa was a typing error.
The question was DVB-T and wifi!
wifi is Ok but Rc2 is dvb-t/c compatible as said The_Ripper?
thank's

fredda88
14-01-2011, 05:57 PM
Hello friends,

Just little bit to warm up You, before new release come out....

FYI : Subtitles will be shifter to right side to reach central position :), screenshots taken by the_ripper, after he finally got subtitles to show correctly.

Thank you guys for all your hard work! :number-one-043:

Is both DVB-subs and teletext-subs working?

xanadu
14-01-2011, 06:53 PM
MickeySa was a typing error.
The question was DVB-T and wifi!

If you read back as requested, many times it has been mentioned that other tuners are very low priority, and that includes DVB-T!

Priority as always is to get a stable RC.


Why don't people learn to read? :rolleyes:

jimrare
14-01-2011, 07:19 PM
Because its quite difficult to go through 3500posts!!!

xanadu
14-01-2011, 07:35 PM
Because its quite difficult to go through 3500posts!!!

It's not difficult, and no need to read every post if people learn to use the search button. :respect-055:

I will even give a FREE search link to anyone wanting to read DVB-T related posts. https://www.satpimps.co.uk/search.php?searchid=3240823

JOJOJO
14-01-2011, 08:05 PM
I have 2 questions :) :
1. Is used DirectFB in this E2?
2. In new E2 (RC2) will be there CI module support / card reader?
Thanx

xanadu
14-01-2011, 08:09 PM
I have 2 questions :) :
1. Is used DirectFB in this E2?
2. In new E2 (RC2) will be there CI module support / card reader?
Thanx

Another one can't use search button....

https://www.satpimps.co.uk/showpost.php?p=744360&postcount=275


https://www.satpimps.co.uk/showpost.php?p=744463&postcount=280

Minoco
14-01-2011, 08:15 PM
Now the rc2 seems almost finished a changelog would be great... :D

moicas3004
14-01-2011, 08:54 PM
Now the rc2 seems almost finished a change log would be great... :D

Change log will come when RC2 get's out. So please be patient.

hfmls
14-01-2011, 09:17 PM
MickeySA, TheRipper, sattommy, @team. I have fulltime available and can do many tests to confirm bug tracker bug/features missing, especially card reader, all tunners (i have them all) mediaplayer (i use it everyday, more then once) picon, zapping, image quality, resolutions, all kinds of bug report. If you guys would let/accept me help you i would be really glad to. I have really interest to help in any matter, just for the sake of this community.

thank you for the awesome work so far.

moicas3004
14-01-2011, 09:22 PM
@ All the team

I think at this time and with the SVN site running, there is no point in keeping the current bugtracker. I think that all users can bug report to the SVN site so all developers involved have the info available to solving bugs.

This will keep it simple, and almost realtime.

Just an Ideia...

Minoco
15-01-2011, 01:27 AM
Change log will come when RC2 get's out. So please be patient.

Yes... we all know that...

Maybe some of us are sometimes impatient, but others seem like "defending" the team from people asking things. I think the team doesn't need to be defended. Sure they are doing great with or without defenses, no need for that. And don't think anyone is going to feel attacked or annoyed just for asking a changelog...

Sorry for the offtopic

tdc
18-01-2011, 09:26 PM
-delted-

tdc
18-01-2011, 09:26 PM
-deleted-

moicas3004
19-01-2011, 12:00 PM
Yes... we all know that...

Maybe some of us are sometimes impatient, but others seem like "defending" the team from people asking things. I think the team doesn't need to be defended. Sure they are doing great with or without defenses, no need for that. And don't think anyone is going to feel attacked or annoyed just for asking a changelog...

Sorry for the offtopic

Its not defending.

If they dont know at is going to be fixed or improved, how the hell they will know the change log.

Bertole
19-01-2011, 05:28 PM
When I watch dvb subtitles on every program picture is vanishing at fresh subtitles, can not watch any programs with subtitles ???

madomape
19-01-2011, 06:12 PM
When I watch dvb subtitles on every program picture is vanishing at fresh subtitles, can not watch any programs with subtitles ???

I can confirm this. When DVB subtitles are on and a subtitle is shown, my TV losts signal, so can't watch TV when DVB subtitles are on. Have to change channel to get signal through HDMI again.

Thanks team!

MickeySa
22-01-2011, 12:28 AM
Valerie project - FIX -


http://www.azbox-enigma.eu/RTi/forum/showthread.php?144-Project-Valerie-for-AzBox-HD&goto=newpost


How to Install project-valerie_rev473_mipsel_oe16.ipk :

Put file project-valerie_rev473_mipsel_oe16.ipk bu FTP in /tmp

Connect by telnet on AzBox and execute this command :

cd /tmp

opkg install project-valerie_rev473_mipsel_oe16.ipk

After you have installed Valerie, unpack file Files.zip and transfer files :

em8634dvb.ko and irvfd.ko to /lib/modules/2.6.22.19-19-the_ripper/extra

libshowiframe.so.0.0.0 to /usr/lib/enigma2/python/Plugins/Extensions/ProjectValerie

******.py to /usr/lib/enigma2/python/Screens

After that, reboot your device.

NOTE: Stop button is mapped to Resolution button.

PC App : project-valerie_rev420_pc.tar is application to use on PC and to manage Valerie.

DragontearS
22-01-2011, 12:42 AM
Valerie project - FIX -


http://www.azbox-enigma.eu/RTi/forum/showthread.php?144-Project-Valerie-for-AzBox-HD&goto=newpost


How to Install project-valerie_rev473_mipsel_oe16.ipk :

Put file project-valerie_rev473_mipsel_oe16.ipk bu FTP in /tmp

Connect by telnet on AzBox and execute this command :

cd /tmp

opkg install project-valerie_rev473_mipsel_oe16.ipk

After you have installed Valerie, unpack file Files.zip and transfer files :

em8634dvb.ko and irvfd.ko to /lib/modules/2.6.22.19-19-the_ripper/extra

libshowiframe.so.0.0.0 to /usr/lib/enigma2/python/Plugins/Extensions/ProjectValerie

******.py to /usr/lib/enigma2/python/Screens

After that, reboot your device.

NOTE: Stop button is mapped to Resolution button.

PC App : project-valerie_rev420_pc.tar is application to use on PC and to manage Valerie.
what is valerie?

hfmls
22-01-2011, 12:44 AM
really ? ....... u have a link in first line of the subject. :\ come on.

DragontearS
22-01-2011, 12:48 AM
Ok I found on the net a wiki that explains what is valerie... what the hell????
It's really cool!!! ok.. maybe I do not really understand what does it means, but I like very much what I understand!!!
Go Friends!! GO!

MickeySa
29-01-2011, 12:16 AM
Hello,

.TS playback fixed, and timeshift fixed too, in next days You can expect new version of Enigma 2 RTi core Image.