Page 40 of 96 FirstFirst ... 3038394041425090 ... LastLast
Results 781 to 800 of 1919

Thread: Enigma 2 - AZBOX HD

  1. #781
    V.I.P
    Join Date
    May 2009
    Location
    Turkey
    Posts
    329
    Thanks
    0
    Thanked 0 Times in 0 Posts
    Quote Originally Posted by pippopappa View Post
    fake!
    Yes Fake

    my creat paint

    Sample gui

  2. #782
    Junior Member
    Join Date
    Jan 2009
    Posts
    13
    Thanks
    0
    Thanked 0 Times in 0 Posts
    Hi,

    so the most important question for me (and I think for some more) is:

    will it be possible to raise the network (and USB) speed ??

    So as a result, m2ts or Blue-Rays will work via network without stuttering ?

    regards

    onkelm

  3. #783
    V.I.P hfmls's Avatar
    Join Date
    May 2009
    Location
    Portugal
    Posts
    1,819
    Thanks
    0
    Thanked 0 Times in 0 Posts
    that allways depends on the bitrate, right now, with a priority script i'm using i can play mkv 1080p 30 mb/S + DTS 1.5mb/s without any problems via USB.
    higher than that it stutters.

    we have to wait to give reports.

  4. #784
    Senior Member massimo1167's Avatar
    Join Date
    Sep 2009
    Posts
    249
    Thanks
    0
    Thanked 0 Times in 0 Posts
    Quote Originally Posted by hfmls View Post
    that allways depends on the bitrate, right now, with a priority script i'm using i can play mkv 1080p 30 mb/S + DTS 1.5mb/s without any problems via USB.
    higher than that it stutters.

    we have to wait to give reports.
    Please may You post your script?

  5. #785
    Junior Member
    Join Date
    Jan 2009
    Posts
    13
    Thanks
    0
    Thanked 0 Times in 0 Posts
    But the script works only for USB connection not for Network NFS or ???

    OnkelM

  6. #786
    V.I.P hfmls's Avatar
    Join Date
    May 2009
    Location
    Portugal
    Posts
    1,819
    Thanks
    0
    Thanked 0 Times in 0 Posts
    save this as a file without extension, example S4ProcLVL
    it works for usb, cifs,nfs, etc.


    #!/bin/bash
    # PROCLVL Made By MalMen
    # Thanks for TypeR for his research....
    until [ 1 -gt 10 ]; do
    VAR1=`ps x|grep CRTVCore|wc -l`
    VAR2=`ps x|grep SDecoderServer|wc -l`
    VAR3=`cat /tmp/proclvl`
    if [ $VAR1 -gt 13 ] && [ $VAR2 = 5 ]; then
    if [ "$VAR3" != "TV" ]; then
    /MMP/usr/bin/snice -v SDecoderServer 10
    /MMP/usr/bin/snice -v DStar 10
    /MMP/usr/bin/snice -v CRTVCore -4
    /MMP/usr/bin/snice -v CRTVSetup -1
    /MMP/usr/bin/snice -v mbox_module -3
    /MMP/usr/bin/snice -v emu_module -3
    /MMP/usr/bin/snice -v telnetd 15
    /MMP/usr/bin/snice -v vsftpd 15
    /MMP/usr/bin/snice -v JIPC_Server 14
    /MMP/usr/bin/snice -v cifsdnotifyd 15
    /MMP/usr/bin/snice -v cifsoplockd 15
    /MMP/usr/bin/snice -v xfslogd 4
    /MMP/usr/bin/snice -v xfsdatad 4
    /MMP/usr/bin/snice -v xfsbufd 4
    /MMP/usr/bin/snice -v ir_control -2
    echo TV > /tmp/proclvl
    echo "Estas a ver TV";
    fi
    elif [ $VAR1 = 11 ] && [ $VAR2 = 5 ]; then
    if [ "$VAR3" != "MEDIA" ]; then

    /MMP/usr/bin/snice -v SDecoderServer -19
    /MMP/usr/bin/snice -v DStar 15
    /MMP/usr/bin/snice -v CRTVCore 18
    /MMP/usr/bin/snice -v CRTVSetup 18
    /MMP/usr/bin/snice -v mbox_module 2
    /MMP/usr/bin/snice -v emu_module 2
    /MMP/usr/bin/snice -v telnetd 19
    /MMP/usr/bin/snice -v vsftpd 19
    /MMP/usr/bin/snice -v JIPC_Server 18
    /MMP/usr/bin/snice -v cifsdnotifyd 19
    /MMP/usr/bin/snice -v cifsoplockd 19
    /MMP/usr/bin/snice -v xfslogd -15
    /MMP/usr/bin/snice -v xfsdatad -15
    /MMP/usr/bin/snice -v xfsbufd -15
    /MMP/usr/bin/snice -v ir_control 19
    echo MEDIA > /tmp/proclvl
    echo "Estas no MediaCenter";
    fi
    elif [ $VAR1 = 11 ] && [ $VAR2 = 6 ]; then
    if [ "$VAR3" != "YT" ]; then
    /MMP/usr/bin/snice -v SDecoderServer 4
    /MMP/usr/bin/snice -v DStar 4
    /MMP/usr/bin/snice -v CRTVCore 4
    /MMP/usr/bin/snice -v CRTVSetup 4
    /MMP/usr/bin/snice -v mbox_module 2
    /MMP/usr/bin/snice -v emu_module 2
    /MMP/usr/bin/snice -v telnetd 2
    /MMP/usr/bin/snice -v vsftpd 2
    /MMP/usr/bin/snice -v JIPC_Server 4
    /MMP/usr/bin/snice -v cifsdnotifyd 4
    /MMP/usr/bin/snice -v cifsoplockd 4
    /MMP/usr/bin/snice -v xfslogd 4
    /MMP/usr/bin/snice -v xfsdatad 4
    /MMP/usr/bin/snice -v xfsbufd 4
    /MMP/usr/bin/snice -v ir_control -4
    /MMP/usr/bin/snice -v youtube_player -19
    echo YT > /tmp/proclvl
    echo "Estas no Youtube";
    fi
    else
    echo " $VAR1 $VAR2";
    fi
    sleep 60;
    done;

  7. #787
    V.I.P leerock's Avatar
    Join Date
    Dec 2008
    Posts
    315
    Thanks
    0
    Thanked 0 Times in 0 Posts
    Well....
    Now it s getting more interesting...
    I always prefered a combination of both...
    I m not a big E2 fan although i kinda like it s performance...

    So in the end we get that the anonymous team is opensat?


    If we get an official fw with all the goodies of enigma (tv module stability/plugins/emus
    then it s going to be one of the best things ever happened in the sat world!!!!!
    Last edited by leerock; 26-03-2010 at 11:48 AM.

  8. #788
    Junior Member
    Join Date
    Mar 2010
    Posts
    25
    Thanks
    0
    Thanked 0 Times in 0 Posts
    Hello Friends.
    I´m reading here since 2 weeks an I hope, that there will come E2 for Azbox.
    Last Page there were pictures from E2 on AZBOX?
    Looks like still orig Opensat FW.
    So what is E2 for Azbox?
    Or what from the comming up Enigma 2 ist is really E2?
    What is with the EPG Function with E2 and the EPG Menue?
    Still the same as in orig Firmware?

  9. #789
    V.I.P Smudger's Avatar
    Join Date
    Dec 2004
    Location
    UK & Spain
    Posts
    759
    Thanks
    0
    Thanked 0 Times in 0 Posts
    Quote Originally Posted by hfmls View Post
    save this as a file without extension, example S4ProcLVL
    it works for usb, cifs,nfs, etc.
    I assume this file is put if /DISK2/etc/start.d

    also you should have uploaded a attachment that would have got more people reading this E2 Topic.
    Last edited by Smudger; 26-03-2010 at 12:49 PM.

  10. #790
    Banned
    Join Date
    Dec 2004
    Posts
    61
    Thanks
    0
    Thanked 0 Times in 0 Posts
    For network play is enough this
    snice DStar SDecoderServer -5

    or any other number. If you want to put it to start.d you should allow some timeout before processes are started so something like this

    sleep 5
    snice ...

  11. #791
    V.I.P buyukbang's Avatar
    Join Date
    Feb 2010
    Location
    Istanbul / Turkey
    Posts
    354
    Thanks
    0
    Thanked 0 Times in 0 Posts
    For media case, SDecoderServer is set to -19, so this seems better (or at least equal to -5), but I cannot say anything about dstart that is set to a different priority than SDecoderServer in this script. I know you think it would be better to set both with same priority, so we can set it to -19 in this script and look what changes...

    Scripts has an infinite loop so no timeout need, next loop will do the job if the current one fails.


    Quote Originally Posted by luky View Post
    For network play is enough this
    snice DStar SDecoderServer -5

    or any other number. If you want to put it to start.d you should allow some timeout before processes are started so something like this

    sleep 5
    snice ...

  12. #792
    Junior Member
    Join Date
    Mar 2010
    Posts
    18
    Thanks
    0
    Thanked 0 Times in 0 Posts
    which attribute to the file S4ProcLVL ? 755 ?

  13. #793
    V.I.P buyukbang's Avatar
    Join Date
    Feb 2010
    Location
    Istanbul / Turkey
    Posts
    354
    Thanks
    0
    Thanked 0 Times in 0 Posts
    I'm completely aggree with these comments. Because I like the mediaplayer of Azbox and its capabilities. The only problem related with it was the usb and network speed. But I've very good results with snice command + swap file usage + NFS. So this is not a problem for me.

    I want the flexibility of E2 TVModule + its powerful EMU support.


    Now I have only one question in my mind, I'm very happy with the image quality of Azbox TV module, can we get the same quality with E2 TVModule???

    We'll see this...


    So a firmware including Azbox TV module + E2 TVModule + Azbox Mediaplayer and other tools will be better IMHO.

    Quote Originally Posted by leerock View Post
    Well....
    Now it s getting more interesting...
    I always prefered a combination of both...
    I m not a big E2 fan although i kinda like it s performance...

    So in the end we get that the anonymous team is opensat?


    If we get an official fw with all the goodies of enigma (tv module stability/plugins/emus
    then it s going to be one of the best things ever happened in the sat world!!!!!

  14. #794
    V.I.P buyukbang's Avatar
    Join Date
    Feb 2010
    Location
    Istanbul / Turkey
    Posts
    354
    Thanks
    0
    Thanked 0 Times in 0 Posts
    Yes, 755.

    Quote Originally Posted by Enjama88 View Post
    which attribute to the file S4ProcLVL ? 755 ?

  15. #795
    Junior Member ilje's Avatar
    Join Date
    Jan 2009
    Posts
    22
    Thanks
    0
    Thanked 0 Times in 0 Posts
    Quote Originally Posted by hfmls View Post
    save this as a file without extension, example S4ProcLVL
    it works for usb, cifs,nfs, etc.
    not work for me



  16. #796
    Junior Member
    Join Date
    Jan 2009
    Posts
    13
    Thanks
    0
    Thanked 0 Times in 0 Posts
    Funny,

    I use the same video (the dark knight - blue ray) to test nfs :respect-055:
    speed over lan.

    OnkelM

  17. #797
    Member
    Join Date
    Dec 2004
    Location
    Netherlands
    Posts
    51
    Thanks
    0
    Thanked 0 Times in 0 Posts
    Better we go futher ontopic.
    this is not about enigma2 on azbox.

    :driving:

  18. #798
    Member
    Join Date
    Oct 2009
    Location
    Athens Greece
    Posts
    81
    Thanks
    0
    Thanked 0 Times in 0 Posts
    any news? tomorow is my bday and i would love to have a present

  19. #799
    V.I.P
    Join Date
    Feb 2009
    Posts
    495
    Thanks
    0
    Thanked 0 Times in 0 Posts
    Quote Originally Posted by massimo1167 View Post
    Sorry, I can't understand, we will have 2 different firmware:
    - original opensat firmware
    - new unofficial E2 firmware like DM world

    or we will have a new unofficial firmware with some original firmware module and E2 environment mixed up ?
    Its easy, so you have doubled all the thousends of Bugs from AZHD

    E2 and fast, a big loollllllll. It is using a lot of Resources, so it isnt really fast.
    Maybe its faster than any OpenXCAS NannyX ****(of course, all is faster then this).

    If People and Owner of a DM800 are honest, they will tell you how "fast" an E2 is

    For me the only Point is DVB Api running, that is a Step forward, and the Rest we will see.
    When I see Multikacka and OpenXCAS, its like a shame. channel switching of 10 Seconds and more with internal share, this is Place Numero uno in all STB in the World
    I love my VU+ , its still working, so no wait for anything.
    And if AZHD comes with a DVB API, I will start it again with Power on

    So we will see (or not, for me equal)

  20. #800
    Senior Member
    Join Date
    May 2009
    Posts
    202
    Thanks
    0
    Thanked 0 Times in 0 Posts
    Quote Originally Posted by pegaman View Post
    any news? tomorow is my bday and i would love to have a present

    My birthday is next Thursday - should I expect a present too?

    Lirpa Loof

Page 40 of 96 FirstFirst ... 3038394041425090 ... LastLast

Similar Threads

  1. Telesat's tools for AZbox HD...
    By goran in forum AZBox HD Tools
    Replies: 5
    Last Post: 17-01-2010, 09:59 PM
  2. NewCS: a few Q's - let's get all the crucial info together, guys...
    By goran in forum AZBox HD Newbie Questions
    Replies: 82
    Last Post: 12-10-2009, 12:29 AM
  3. Newcs + CCcam, Can it be done ?
    By paulwilko in forum AZBox HD Newbie Questions
    Replies: 11
    Last Post: 31-08-2009, 01:15 PM
  4. Enigma 2 on azbox!!!
    By iko in forum AZBox HD Newbie Questions
    Replies: 143
    Last Post: 30-07-2009, 11:53 PM

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •