Advertise Here
Advertise Here
Advertise Here
Advertise Here
Page 3 of 5 FirstFirst 12345 LastLast
Results 21 to 30 of 46

Thread: enigma2-plugin-softcams-OScam-Revcam

  1. #21
    Sat-tv te@m dreams@t's Avatar
    Join Date
    15-04-2006
    Location
    FunFiles City
    Posts
    11,330
    Uploads
    6,437
    Likes
    31,790

    Re: enigma2-plugin-softcams-OScam-Revcam

    -Update 17.10.2021-

    enigma2-plugin-softcams-oscam-revcamV2-11.702-emu-r798_all.ipk

    Compiled by @ mohamed_os


    Code:
    Changeset 11702
    -[gbox] whitespace cleanup

  2. Advertise Here
  3. #22
    Sat-tv te@m dreams@t's Avatar
    Join Date
    15-04-2006
    Location
    FunFiles City
    Posts
    11,330
    Uploads
    6,437
    Likes
    31,790

    Re: enigma2-plugin-softcams-OScam-Revcam

    -Update 30.10.2021-

    enigma2-plugin-softcams-oscam-revcamV2-11.703-emu-r798_all.ipk

    Compiled by @ Linuxsat

    Code:
    Changeset: 11703
    Whitespace cleanup
    Note to devs: Please configure your editor to "trim trailing whitespace". Thanks.

  4. #23
    Sat-tv te@m dreams@t's Avatar
    Join Date
    15-04-2006
    Location
    FunFiles City
    Posts
    11,330
    Uploads
    6,437
    Likes
    31,790

    Re: enigma2-plugin-softcams-OScam-Revcam

    -Update 04.11.2021-

    enigma2-plugin-softcams-oscam-revcamV2-11.703-emu-r798_all.ipk

    Compiled by @ mohamed_os

    Code:
    Changeset: 11703
    Whitespace cleanup
    Note to devs: Please configure your editor to "trim trailing whitespace". Thanks.

  5. #24
    Sat-tv te@m dreams@t's Avatar
    Join Date
    15-04-2006
    Location
    FunFiles City
    Posts
    11,330
    Uploads
    6,437
    Likes
    31,790

    Re: enigma2-plugin-softcams-OScam-Revcam

    -Update 20.11.2021-

    enigma2-plugin-softcams-oscam-revcamV2-emu-Dm900-920.ipk


    Compiled by @ Linuxsat
    Attached Files Attached Files

  6. #25
    Sat-tv te@m dreams@t's Avatar
    Join Date
    15-04-2006
    Location
    FunFiles City
    Posts
    11,330
    Uploads
    6,437
    Likes
    31,790

    Re: enigma2-plugin-softcams-OScam-Revcam

    -Update 28.11.2021-

    enigma2-plugin-softcams-oscam-revcamV2-11.704-emu-r798_all.ipk

    Compiled by @ mohamed_os

    Code:
    Changeset: 11704
        [dvbapi] Use the PCR pid when video pid is missing from PMT

  7. #26
    Sat-tv te@m dreams@t's Avatar
    Join Date
    15-04-2006
    Location
    FunFiles City
    Posts
    11,330
    Uploads
    6,437
    Likes
    31,790

    Re: enigma2-plugin-softcams-OScam-Revcam

    -Update 28.11.2021-

    enigma2-plugin-softcams-oscam-revcamV2-11.704-emu-r798_all.ipk

    Compiled by @ Linuxsat

    Code:
    Changeset: 11704
        [dvbapi] Use the PCR pid when video pid is missing from PMT

  8. #27
    Member
    Join Date
    02-05-2020
    Posts
    27
    Uploads
    5
    Likes
    35

    Re: enigma2-plugin-softcams-OScam-Revcam

    Quote Originally Posted by dreams@t View Post
    -Update 28.11.2021-

    enigma2-plugin-softcams-oscam-revcamV2-11.704-emu-r798_all.ipk

    Compiled by @ mohamed_os

    Code:
    Changeset: 11704
        [dvbapi] Use the PCR pid when video pid is missing from PMT
    On my Zgemma H7S blocks the enigma on several different images (Openpli 8.1, Openatv 6.4, Openspa 7.5.003 and Pure2 6.5), while the latter from post # 26 works without problems. The same thing happened with all previous versions of the 6MB plug-in, while this one with 3MB worked flawlessly. What's the problem or aren't both versions of the plugin for the same purpose?

  9. #28
    Sat-tv te@m dreams@t's Avatar
    Join Date
    15-04-2006
    Location
    FunFiles City
    Posts
    11,330
    Uploads
    6,437
    Likes
    31,790

    Re: enigma2-plugin-softcams-OScam-Revcam

    Try to install it from here


  10. #29
    Moderator Tuci-Puci's Avatar
    Join Date
    26-12-2020
    Location
    Wherever the Eagle is
    Posts
    1,099
    Uploads
    990
    Likes
    6,876

    Re: enigma2-plugin-softcams-OScam-Revcam

    RevcamV2/installer.sh

    Update Revcam: Ipk & DEB

    Code:
    #!/bin/sh
    # ###########################################
    # SCRIPT : DOWNLOAD AND INSTALL RevcamV2
    # ###########################################
    #
    # Command: wget https://raw.githubusercontent.com/MO...2/installer.sh -qO - | /bin/sh
    #
    # ###########################################
    
    ###########################################
    # Configure where we can find things here #
    TMPDIR='/tmp'
    VERSION='2'
    PACKAGE='enigma2-plugin-softcams-revcam'
    MY_URL='https://raw.githubusercontent.com/MOHAMED19OS/Download/main/RevcamV2/'
    
    ####################
    #  Image Checking  #
    if [ -f /etc/opkg/opkg.conf ]; then
        OSTYPE='Opensource'
        OPKG='opkg update'
        OPKGINSTAL='opkg install'
        OPKGLIST='opkg list-installed'
        OPKGREMOV='opkg remove --force-depends'
    elif [ -f /etc/apt/apt.conf ]; then
        OSTYPE='DreamOS'
        OPKG='apt-get update'
        OPKGINSTAL='apt-get install'
        OPKGLIST='apt-get list-installed'
        OPKGREMOV='apt-get purge --auto-remove'
        DPKINSTALL='dpkg -i --force-overwrite'
    fi
    
    ##################################
    # Remove previous files (if any) #
    rm -rf $TMPDIR/"${PACKAGE:?}"* >/dev/null 2>&1
    
    if [ "$($OPKGLIST $PACKAGE | awk '{ print $3 }')" = $VERSION ]; then
        echo " You are use the laste Version: $VERSION"
        exit 1
    elif [ -z "$($OPKGLIST $PACKAGE | awk '{ print $3 }')" ]; then
        echo
        clear
    else
        $OPKGREMOV $PACKAGE
    fi
    
    #########
    $OPKG >/dev/null 2>&1
    
    ###################
    #  Install Plugin #
    
    echo "Insallling RevcamV2 plugin Please Wait ......"
    if [ $OSTYPE = "Opensource" ]; then
        wget $MY_URL/${PACKAGE}_${VERSION}_all.ipk -qP $TMPDIR
        $OPKGINSTAL $TMPDIR/${PACKAGE}_${VERSION}_all.ipk
    else
        wget $MY_URL/${PACKAGE}_${VERSION}.deb -qP $TMPDIR
        $DPKINSTALL $TMPDIR/${PACKAGE}_${VERSION}_all.deb
        $OPKGINSTAL -f -y
    fi
    
    ##################################
    # Remove previous files (if any) #
    rm -rf $TMPDIR/"${PACKAGE:?}"*
    
    sleep 1
    clear
    echo ""
    echo "***********************************************************************"
    echo "**                                                                    *"
    echo "**                       RevcamV2   : $VERSION                               *"
    echo "**                       Uploaded by: MOHAMED_OS                      *"
    echo "**                       Develop by : OTEX                            *"
    echo "** Support    : https://www.facebook.com/groups/298510744799488/about *"
    echo "**                                                                    *"
    echo "***********************************************************************"
    echo ""
    
    if [ $OSTYPE = "Opensource" ]; then
        killall -9 enigma2
    else
        systemctl restart enigma2
    fi
    
    exit 0

  11. #30
    Sat-tv te@m dreams@t's Avatar
    Join Date
    15-04-2006
    Location
    FunFiles City
    Posts
    11,330
    Uploads
    6,437
    Likes
    31,790

    Re: enigma2-plugin-softcams-OScam-Revcam

    -Update 03.02.2022-

    enigma2-
    plugin-softcams-revcamv2-dreamos
    Attached Files Attached Files

Page 3 of 5 FirstFirst 12345 LastLast
Advertise Here

Similar Threads

  1. Update ║➽║OScam║➽║ Softcams_OScam_Supcam║v.11.959║
    By WaRp in forum OSCam Binaries
    Replies: 84
    Last Post: 08-05-2026, 18:22:11
  2. Replies: 16
    Last Post: 04-04-2024, 06:50:54
  3. Re: enigma2-plugin-softcams-OScam-Supcam
    By kiwib in forum French / Français
    Replies: 1
    Last Post: 11-01-2021, 03:49:28
  4. Replies: 0
    Last Post: 01-11-2020, 00:41:02
  5. MoviesOnline enigma2 plugin
    By alouan in forum Enigma2 Plugins
    Replies: 0
    Last Post: 07-03-2013, 22:57:18

Posting Permissions

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