Advertise Here
Advertise Here
Advertise Here
Advertise Here
Page 13 of 13 FirstFirst ... 38111213
Results 121 to 124 of 124

Thread: ║➽║NCam║➽║NCam_Emu compiled║v.15.8║By READ║

  1. #121
    Super Moderator mehmetkarahanlı's Avatar
    Join Date
    29-12-2017
    Location
    bursa
    Posts
    29,563
    Uploads
    107
    Likes
    17,158

    Re: ║➽║NCam║Emu compiled and patched ║v.15.7║By READ║


    NCam emu compiled and patched By READ
    Versıon: 5.7
    UPTADE: 15.02.2026

    What's new in version V15.7


  2. Advertise Here
  3. #122
    Super Moderator mehmetkarahanlı's Avatar
    Join Date
    29-12-2017
    Location
    bursa
    Posts
    29,563
    Uploads
    107
    Likes
    17,158

    Re: ║➽║NCam║Emu compiled and patched ║v.15.7║By READ║

    [SOFTCAM] NCAM 15.7



    Ncam 15.7 kompiliert und gepatcht von Marouan & RAED

    Update …
    – Resolve ‘Loadbalancer – fallback adjustment’
    * Allow lb_nfb_readers to be set to zero (previously minimum was 1). This means you can configure the system to have no fallback readers if desired.
    * If only one reader matches and double_check is enabled (and the CAID matches), the patch forces a fallback check by setting force_reopen = 1.
    thx to @lpm11
    cherry-pick > https://git.streamboard.tv/common/os...cdb8290007933a
    – Use fixed-width 64-bit integer format macros
    * Use fixed-width 64-bit integer format macros
    Replaced all hardcoded %lld format specifiers with the portable
    inttypes.h macros PRId64 (for printing) and SCNd64 (for scanning).
    This ensures correct 64-bit integer handling across 32-bit and
    64-bit systems, improves cross-platform compatibility, and avoids
    potential issues with long long size differences on various compilers
    or architectures.
    cherry-pick > https://git.streamboard.tv/common/os...3a0f1f634f12c1
    – Add support Tiger EMM eassembly support for Nagra/Tiger smartcards (Thank’s CodecCarrier)
    – Merged ecmbd into emu
    Removed external bin conversion
    Automatic data value recognition via filename
    Added direct mode and memory mode
    Priority: emu first, ecmdb as fallback
    Various bug fixes (Thank’s didou07)
    – Forcing the card to use a specific CAID (#58)
    * Fix Validation files
    * Forcing the card to use a specific CAID
    Some modified Conax cards require a specific CAID for proper ECM handling (Thank’s didou07)
    – dvbapi: add support for more net send clients (#60)
    * connections established with client_proto_version = 3 and extended_cw_api >= 1 can now also process CW_ALGO_CSA_ALT independently
    * proper handling of dvbapi_ioctl commands in this case
    * fix rerouting of msgid back to client
    * support each videoguard caid
    * make sure ecm.info is created (Thank’s WXbet)
    – Add Task Scheduler for Local API Calls. (#61)
    scheduling to execute NCam web interface URLs automatically without external dependencies. Jobs are defined in task.cfg using simple format.
    – streamrelay: improve ecm_mode handling
    * add get_ecm_mode() inline function to extract the lower nibble from
    last ECM byte for VideoGuard CAIDs
    * move select_csa_alt() from module-dvbapi.c to globals.h for shared use
    * allow empty CAID setting in streamrelay config to autodetect csa-alt ecm
    * disconnect stream client immediately when CAID is not allowed
    * fix ‘caid not enabled’ log message to show actual CAID instead of FFFE
    * log ecm_mode changes and libdvbcsa table feedback (if available)
    * simplify streamrelay support output in version info
    * add msgid to DVBAPI_ECM_INFO message, so the client can correctly assign the ecm information to the requesting service (Cherry from oscam source)
    – dvbapi: add serverip setting to bind listener to specific IP address
    * add dvbapi_srvip configuration option to bind TCP listener to a
    specific IP address instead of all interfaces (ADDR_ANY)
    * supports both IPv4 and IPv6 addresses
    * default: none (binds to all interfaces, same behavior as before)
    * add webif configuration and documentation
    (thx Basic.Master) (Cherry from oscam source)
    – dvbapi: fix support for more net send clients
    * do not open ca device when ca_soft_csa is active (Cherry from oscam source)
    – webif: display ‘camd.socket’ and ‘local’ instead of null/localhost IP
    * display ‘camd.socket’ for dvbapi socket connections
    * display “local” for local card readers (Cherry from oscam source)
    – dvbapi: fix listen_port not showing up in webif config after restart
    The configured listen_port value was reset to 0 in dvbapi_detect_api()
    for incompatible boxtypes, which caused the webif to show an empty field
    after restart even though the value was correctly saved in oscam.conf.
    Introduce separate runtime variable dvbapi_listenport_active for the
    actual port used by dvbapi logic, preserving cfg.dvbapi_listenport for
    config storage and webif display. (Cherry from oscam source)
    – warnings: fix gcc16 -Wunused-but-set-variable warnings
    * remove or restructure unused loop counter variables that trigger warnings with GCC 16+
    * ncam-config-account.c: remove unused ‘i’ in account_allowedprotocols_fn()
    * ncam-conf-chk.c: remove unused ‘i’ in chk_cacheex_hitvaluetab() and chk_tuntab()
    * module-stat.c: wrap ‘count’ in #ifdef WITH_DEBUG (only used for debug logging)
    * module-webif.c: remove unused ‘i’ in send_ncam_status() and send_ncam_api(), move ‘i’ into #ifdef CS_CACHEEX_AIO block in send_ncam_cacheex()
    cherry-pick > https://git.streamboard.tv/common/os...866175e808a2f4
    – cardreader: add amlogic smc internal smartcard reader support
    Add support for amlogic smc internal smartcard reader interface.
    This enables NCam to use the built-in smartcard slot on amlogic-based
    set-top boxes and media players that use the native amlogic smartcard driver which exposes /dev/smc0. (thx rozpruwacz)
    Changes:
    – CMakeLists.txt: add amlogic cross-compile target and USE_AMSMC flag
    – Makefile: add ifd_amsmc.c to build, help text and example
    – config.h: add CARDREADER_INTERNAL_AMSMC preprocessor logic
    – config.sh: add USE_AMSMC and WITH_AMSMC flag handling
    – csctapi/cardreaders.h: declare cardreader_internal_amsmc
    – csctapi/ifd_amsmc.c: new file – amlogic smartcard reader driver
    – module-webif-tpl.c: add AMSMC to webif template conditionals
    – ncam.c: register amlogic cardreader in version info and cardreaders array
    cherry-pick > https://git.streamboard.tv/common/os...56e4d74a6df85b
    – Fix aio_version buffer size mismatch in cacheex feature exchange
    * fix break indentation
    * fix ancient build
    * Fix aio_version buffer size mismatch in cacheex feature exchange
    Co-authored-by: default avatarWXbet <[email protected]>
    cherry-pick > https://git.streamboard.tv/common/os...56e4d74a6df85b
    – Fix pages gen prid64 warning
    cherry-pick > https://git.streamboard.tv/common/os...705f9e99926798
    – fix: module monitor
    * print date|time instead of time twice
    cherry-pick > https://git.streamboard.tv/common/os...c10ad3f0ee55e5
    – webif: add service counter
    cherry-pick > https://git.streamboard.tv/common/os...98d621c48a076d
    – Remove dead code, simplify functions, drop libm dependency
    – eliminate dead code: ifd_azbox.c while(ret), ifd_sci.c sh4_stb,
    reader-dre-st20.c verbose, module-cccam.c is_dcw_corrupted
    – remove constant parameters: chk_is_null_nodeid len (always 8),
    CAK7do_cmd len (always 0x10)
    – simplify: NULLFREE macro (free(NULL) is safe), cs_strlen,
    tolower/toupper without isupper/islower check, ifd_stinger.c
    mhz assignment, ifd_sci.c tries++ refactoring
    – use MIN/MAX macros in module-cccam.c rating clamping
    – refactor reader-conax.c CWPK_CNX with memcpy
    – replace fmod with pure C in reader-nagracak7.c, drop libm dependency
    – Makefile/CMakeLists.txt: remove libm, keep ,
    , variables for toolchain flexibility
    thx to @lpm11
    Co-authored-by: default avatarWXbet <[email protected]>
    cherry-pick > https://git.streamboard.tv/common/os...17a43c05b14c44
    – cleanup deadcode clocktypes * Remove librt dependency clock_gettime no longer used after cleanup deadcode clocktypes patch. CLOCKFIX now only uses gettimeofday() which doesn’t require librt. * cleanup deadcode clocktypes
    thx to @lpm11
    Co-authored-by: default avatarWXbet <[email protected]>
    cherry-pick > https://git.streamboard.tv/common/os...5aa7015d0d7a34
    – fix: security crash guard – Harden DVBAPI filter handling: require a valid curpid before touching ECM fields and abort section-filter setup when the demux PID lookup fails, preventing null-pointer crashes. – WebIF robustness sweep: gate every popen/fopen/access use and preserve pointer assignments so the UI now reports missing scripts/files instead of dereferencing null handles. – Reader safety: add missing allocation checks in Conax/DRE code paths and keep Nagra readers’ csystem_data alive after failed init to avoid double-free crashes. – Crash/diagnostics fixes: protect cs_dumpstack()/detect_valgrind() against failed file opens and clamp the CoolAPI status lookup to stay inside the cnxt_status[] table.
    thx to @lpm11
    cherry-pick > https://git.streamboard.tv/common/os...80012dec7b4734
    – build: fix is_defined.txt generation for proper webif template filtering
    The is_defined.txt file is used by pages_gen to filter templates based on enabled config options. Previously, this file was only created when explicitly calling config.sh with –enable/–disable/–restore, but not during normal builds.
    The ‘webif clean’ added in 96debcd7 (‘Fix webif compression parameter’) ensured pages.c was always rebuilt, but also deleted is_defined.txt which broke the filtering mechanism.
    Changes:
    – Call write_enabled() in make_config_mak() to ensure is_defined.txt is generated on every build
    – Remove redundant ‘webif clean’ from Makefile and CMakeLists.txt (write_enabled already deletes pages.c when needed)
    – Add config.h dependency to pages.c target to trigger rebuild when config options change
    This ensures proper filtering works for:
    – Fresh checkouts with default config
    – Builds after direct config.h modifications
    – Builds after config.sh –enable/–disable changes
    cherry-pick > https://git.streamboard.tv/common/os...37fba4097c631d
    – webif: add BOTTOM navigation link
    – css.css: add BOTTOM navigation link and adjust TOP link position
    – Both links positioned on the right side (right:10px)
    – TOP link: bottom-right in footer
    – BOTTOM link: top-right in menu area
    – Arrow symbols after text for both links
    – menu.html: add BOTTOM link element with class ‘bottom_link’
    – Link anchors to #statusfooter for navigation to page footer
    cherry-pick > https://git.streamboard.tv/common/os...b678b70a8bdafd
    – webif: fix BOTTOM navigation link
    * define bottom_link as a html div container like top_link
    cherry-pick > https://git.streamboard.tv/common/os...38f4ad04f6ee11
    – webif: fix PCSC devices not shown on scanusb.html
    The write_enabled() function generates is_defined.txt which pages_gen
    uses to filter templates based on enabled config options. However, it
    only wrote config.h defines and missed USE_FLAG based card readers.
    CARDREADER_PCSC is controlled via USE_PCSC flag passed at build time,
    not a config.h define. Since it was never written to is_defined.txt,
    pages_gen filtered out scanusb_pcscbit.html template, causing PCSC
    devices to not appear on scanusb.html.
    Fixes regression introduced in 9a5d4d0
    cherry-pick > https://git.streamboard.tv/common/os...a074d71a750524
    – dvbapi: remove obsolete dvbapi config options
    Remove deprecated [dvbapi] section options that have been obsolete for over 10 years:
    – priority
    – ignore
    – cw_delay
    These options were migrated to oscam.dvbapi file long ago.
    Remove dvbapi_caidtab_fn() function and related extern declaration
    as they are no longer needed.
    Users with ancient configs will now see ‘unknown setting’ warnings,
    prompting them to migrate to oscam.dvbapi.
    (cherry picked from commit e281dfb9)
    Co-authored-by: default avatarWXbet <[email protected]>
    cherry-pick > https://git.streamboard.tv/common/os...4e58114a973699
    – reader: add maxparallel feature to limit simultaneous services per reader
    This feature allows limiting the number of services that can use a reader
    simultaneously, essential for card readers with slot restrictions.
    === NEW CONFIGURATION OPTIONS ===
    maxparallel (default: 0 = unlimited)
    Maximum number of active services per reader. When reached, the reader
    is skipped and other readers are tried (fallover).
    paralleltimeout (default: 1000 ms)
    Buffer added to the measured ECM interval for slot expiration.
    A slot expires when no ECM is received within (measured_interval + timeout).
    parallelfactor (default: 1.5)
    Multiplier for pending slots to support zapping without blackscreen.
    Set to 0 to disable pending slots (strict maxparallel enforcement).
    === ARCHITECTURE ===
    Dual-slot system with active and pending services:
    – Active slots (size: maxparallel)
    Confirmed services actively receiving CWs from this reader.
    – Pending slots (size: maxparallel * parallelfactor)
    Temporary overflow during channel zapping. Pending services are
    promoted to active when slots free up (FIFO), or dropped when
    active services need the capacity.
    Slot reservation timing:
    Slots are reserved when a reader DELIVERS a CW, not when the request
    is sent. This prevents readers from blocking capacity for services
    they don’t end up serving when multiple readers are queried in parallel.
    === BLOCKLIST FOR CLEAN FALLOVER ===
    When a pending service is dropped, the client+service combination is
    added to a per-reader blocklist. This causes:
    – Subsequent ECM requests for blocked combinations to skip this reader
    – Clean fallover to other readers without repeated drop cycles
    – No log spam from services repeatedly going to pending and getting dropped
    Blocklist lifecycle:
    – Added: when service is dropped from pending
    – Removed: when client zaps to a different service
    – Cleared: when an active slot becomes free
    === TYPICAL USE CASE ===
    – Reader 1: maxparallel=1 (card allows only 1 service)
    – Receiver records Service A on Reader 1, user zaps to Service B
    – Service B goes to pending slot (no blackscreen during zap)
    – Service A sends ECM -> Service B dropped from pending
    – Service B blocklisted on Reader 1 -> falls over to Reader 2
    – User stops Service B -> block cleared, Reader 1 available again
    cherry-pick > https://git.streamboard.tv/common/os...523bfaec40ee03
    – streamrelay: fix fallback host comparison and resource leaks
    – Fix fallback host comparison using streq() instead of pointer comparison
    – Fix socket leaks in connect_to_stream() on setsockopt/connect failures
    – Add safety checks for glistenfd before close operations
    – Fix remove_newline_chars() to also handle carriage returns
    – NULL key pointers after dvbcsa_bs_key_free() to prevent double-free
    – Rework stream_server() using do-while(0) pattern for cleaner error handling
    – Some code formatting according to CODING.RULES.txt
    cherry-pick > https://git.streamboard.tv/common/os...604874ef081beb
    – dvbapi: use SERVICE_TYPE_MASK descriptor to fix CW delivery for shared services
    When stream_write_cw() successfully delivers a CW to a stream client,
    it returns true and prevents the same CW from being written via the
    CA device (ioctl/netsend). This exclusive routing causes a CW gap
    on demuxers that require CA device delivery until the next cw cycle,
    because stream_write_cw() consumes the CW before the stream client
    has fully disconnected.
    Parse the SERVICE_TYPE_MASK descriptor (0x85) from the CA PMT to
    identify whether a demux serves a stream client (type 7/8) or requires
    direct CA device or netsend descrambling. For demuxers that require
    CA device or netsend delivery, always write the CW via dvbapi_write_cw
    regardless of whether stream_write_cw() consumed it. For stream-only
    demuxers and clients that don’t send descriptor 0x85, preserve the
    original exclusive behavior.
    cherry-picked > https://git.streamboard.tv/common/os...e1c344ce4bbfcc


    *************************************

    NCAM 15.7für


    DM900UHD, DM920, DM520,DM525, DM820, DM7080 (DEB)
    OOZOON, DREAM ELITE, N.EWNIGMA2, GEMINI, Merlin4, DMS, TSimage, Powersat,nonsolosat

    New:DM ONE, DM TWO, DM SEVEN, DM500, DM800HD,DM800HD,DM7020


    **************************************


    NCAM 15.7für vuplus zero 4k/ solo 4k/ultimo 4k/uno 4k, mutant hd51/52, AX 51/52, Xtrend ET11000/120000, Spycat 4K, Edision 4k, Octagon 4k​, DM900, DM92, Vu+ solo, Uno, Duo, Ultimo, Zero (IPK) Dreambox DM500HD, DM7020,DM7025, DM800HD, DM800HDSE, DMOpenATV, BlackHole, OpenBH, OpenLD,OpenPLUS, Rudream, OpenPLi, OpenHDF, OpenVix, VTI,OpenSPA, OpenESI,OpenVision, Hyperion PKTEAM, SatDreamGr, OpenDroid, PurE2,EGAMI,OpenNFR,TeamBlue, OpenMIPS…




  4. #123
    Super Moderator mehmetkarahanlı's Avatar
    Join Date
    29-12-2017
    Location
    bursa
    Posts
    29,563
    Uploads
    107
    Likes
    17,158

    Re: ║➽║NCam║NCam_Emu compiled║v.15.8║By READ║


    NCam emu compiled and patched By READ
    Versıon: 15.8
    UPTADE: 24.04.2026

    - Update free server from 0 to 8
    - dvbapi: suppress pmt mode 6 connection retry log spam
    Log the connection attempt and error only once, then silently retry every second until the CA PMT server becomes available.
    cherry-picked > https://git.streamboard.tv/common/os...2f22c05dd543a8
    - warnings: fix C23 and glibc-2.43 -Wdiscarded-qualifiers warnings
    For ISO C23, the function strstr that return pointers into their input
    arrays now have definitions as macros that return a pointer to a
    const-qualified type when the input argument is a pointer to a const-qualified
    type.
    The GNU C Library version 2.43 is now available
    Co-authored-by: default avatarRudi Heitbaum <[email protected]>
    cherry-picked > https://git.streamboard.tv/common/os...f5259dc5c5520d
    - cleanup reader macros Separate guards save 1 byte in READER_NAGRA-only builds and ensure no unused struct members exist in any build configuration.
    * cleanup reader macros
    - Gate struct s_reader members, WebIF fields, and config tokens behind precise reader macros so builds exclude Videoguard/Nagra/Viaccess-only data when those modules aren’t compiled.
    - Wrap AES-key helpers, reader option handlers, and Nagra/Videoguard EMM logic in the same feature flags to keep unused code out of minimal builds.
    - Ensure Merlin-only arrays and filters, GPIO/ATR settings, and sendcmd handling compile only with the relevant reader backends.
    thx @lpm11
    Co-authored-by: default avatarWXbet <[email protected]>
    cherry-pick > https://git.streamboard.tv/common/os...afd53ee00d0d53
    - reader-nagra/irdeto: change force_irdeto guard to READER_IRDETO only
    force_irdeto forces a card to use the Irdeto reader instead of Nagra.
    In reader-nagra.c it causes the reader to reject the card so the
    Irdeto reader can handle it. This only makes sense when READER_IRDETO
    is compiled - otherwise there's no Irdeto reader to take over.
    Changes:
    - globals.h: Change guard from (READER_NAGRA || READER_IRDETO) to
    READER_IRDETO only
    - oscam-config-reader.c: Change guard to READER_IRDETO only
    - module-webif.c: Change guard to READER_IRDETO only
    - reader-nagra.c: Add READER_IRDETO guard around force_irdeto check
    cherry-pick > https://git.streamboard.tv/common/os...47fc41c4e858d3
    - signing: fix build with OpenSSL 4
    * fix -Wdiscarded-qualifiers on X509_get_subject/issuer_name
    OpenSSL 4 changed X509_get_subject_name() and X509_get_issuer_name()
    to return 'const X509_NAME *', which breaks the call to our local
    helper _X509_NAME_oneline_utf8() that still takes a non-const
    X509_NAME *:
    ncam-signing.c:235:46: warning: passing argument 1 of
    '_X509_NAME_oneline_utf8' discards 'const' qualifier from
    pointer target type [-Wdiscarded-qualifiers]
    Route the result of the X509 getters through a uintptr_t cast to
    explicitly drop the const qualifier at the call sites, mirroring the
    approach already used for ASN1_STRING_type() in ASN1_TIME_to_posix_time().
    This avoids changing the helper's signature, which would require a
    more invasive const-correctness pass given that older OpenSSL versions
    (including 0.9.x, still supported by this file) declared many X509
    APIs as non-const.
    * fix ASN1_STRING_type() accessor
    In OpenSSL 4 the ASN1_STRING / ASN1_TIME struct became fully opaque,
    so struct members can no longer be accessed directly from public
    headers. This broke the WITH_SIGNING build:
    ncam-signing.c:124:17: error: invalid use of incomplete typedef
    'ASN1_TIME' {aka 'const struct asn1_string_st'}
    switch(t->type)
    The data pointer was already handled via ASN1_STRING_get0_data() for
    OpenSSL >= 1.1.0, but t->type was still accessed directly and was
    overlooked until OpenSSL 4 removed the last bit of struct visibility.
    Replace the direct member access with the ASN1_STRING_type() accessor
    function, which has existed since OpenSSL 0.9.x and is therefore
    available in all supported versions (1.0, 1.1, 3.x, 4.x) without a
    version guard.
    Since older OpenSSL versions declare ASN1_STRING_type() as taking a
    non-const ASN1_STRING *, the cast is routed through uintptr_t to
    explicitly drop the const qualifier of t without triggering
    -Wdiscarded-qualifiers (treated as error by the 'ancient' CI build).
    uintptr_t is already available via globals.h (stdint.h).
    cherry-picked > https://git.streamboard.tv/common/os...b56cdf2d1be528
    - Extend service and group handling to 128 entries and harden related limits
    Add platform-aware 128-bit group and service support for builds with __int128, while preserving correct 64-bit fallback behavior.
    - introduce group_t and GROUP_BITS so group and sidtab bitmasks scale to 128 entries where supported
    - enforce MAX_SIDBITS consistently across parsing, runtime checks, and WebIF handling
    - fix off-by-one, buffer sizing, and numbering issues in group and service serialization
    - improve validation, truncation handling, and warning messages for invalid or oversized group/service definitions
    - add and document the httpmaxrequestsize config option, and make WebIF request parsing enforce the configured limit
    - add clearer startup diagnostics for effective group/service capacity and ABI details
    - update WebIF limits and documentation to reflect build-dependent 64 or 128 entry support
    cherry-picked > https://git.streamboard.tv/common/os...584b1301e3ce25
    - webif: remove poll from request read loop
    Simplify WebIf request handling by relying on check_request()
    to detect complete HTTP headers and request bodies instead of
    polling the socket between reads.
    This removes the extra poll-based wait path while preserving
    correct handling for fragmented GET and POST requests.
    thx to lpm11
    cherry-picked > https://git.streamboard.tv/common/os...076cad2f220e21
    - chore: remove 64 services/groups startup warning
    cherry-picked > https://git.streamboard.tv/common/os...f0816f939a0c4e
    - net: remove obsolete gethostbyname resolver and use getaddrinfo exclusively
    gethostbyname() is not thread-safe and has been marked obsolescent by
    POSIX. Newer glibc versions could emit a linker warning for any binary
    referencing this symbol, even if the code path is gated behind a
    runtime config option.
    The modern replacement getaddrinfo() was already fully implemented as
    the default resolver (resolvegethostbyname=0). This removes the legacy
    gethostbyname() fallback path along with:
    - the resolvegethostbyname config option (oscam.conf [global])
    - the Resolver dropdown from the webinterface
    - the gethostbyname_lock mutex (no longer needed since getaddrinfo
    is thread-safe)
    cherry-picked > https://git.streamboard.tv/common/os...75c955cf93462a

  5. #124
    Super Moderator mehmetkarahanlı's Avatar
    Join Date
    29-12-2017
    Location
    bursa
    Posts
    29,563
    Uploads
    107
    Likes
    17,158

    Re: ║➽║NCam║NCam_Emu compiled║v.15.8║By READ║


    NCam emu compiled and patched By READ
    Versıon: 15.8
    UPTADE: 24.04.2026

    Bin file ..

    mips (Gigablue-Dream-VU+-Xtrend-Formuler)
    sh4 & SPARK (Golden Media-Galaxy innovations-Amiko)
    sh4-stapi (xcruiser 400plus, Forever 7878, 7474, 7420, 7830 8200, 9510)
    sh4-stapi5 (Cardiff/Avant) (Forever[9898, 3434, Nano Smart])
    sh4-stapi5_V03 (Cardiff/Avant)
    cortexa9hf-vfp-neon-ARM (DreamoxUHD + VU+4K + Osmio4k + Routers Mipsel DD-WRT + RaspberryPI Hardware FPU)
    aarch64-ARM (VU+4K Duo4K + DreamOne/Two/7)
    x86-Linux-pc (32bit-i686
    x86-Linux-pc (64bit
    mips (Tiviar plus and similar
    ncam.gx-csky (uClan (U2C) Denys H.265, Octagon SX88, SX88+, SX88+ Optima, SX88+ Combo, ASAT HDR No.1)
    arm-marvell (Synology DS114, DS214 and similar)
    arm-Coreelec (Mecool KIII Pro , Magicsee N5 Max and similar)


    ************** Bin files for Android Devices Only **************
    Amiko A3 (4.4_KitKat)
    Amiko A4 (5.1_Lollipop)
    Amiko A5 (7.0_Nougat
    WeTekPlay2 WeOS-v2 (5.0-Lollipop)
    WeTekPlay2 WeOS-v3 (6.0-Marshmallow)


    ----- Android stapi -----

    4.4-KitKat-Androideabi19-stapi
    5.1-Lollipop-stapi
    7.0-Nougat-stapi
    5.0-Lollipop-stapi
    6.0-Marshmallow-stapi
    Icone-Iron-stapi

    ************** Ncam with libusb-pcsc **************

    cortexa9hf-vfp-neon-ARM-libusb-pcsc (DreamoxUHD + VU+4K + Routers Mipsel DD-WRT + RaspberryPI Hardware FPU)

    ************** Ncam For Windows **************

    Windows 64Bit

    Config File For All devices OE2.0

    Config File For DreamOSOE2.5

    Config File For SH4 Only

    Config File For SH4-Stapi Only (Mod BY sheypooor)

    Config File For Android Only

    Config File For Android-Stapi Only (Mod BY samur)

    Config File For Windows

    Ncam-Images-IPK
    NCam-Images-OSDreambox-DEB

Page 13 of 13 FirstFirst ... 38111213
Advertise Here

Similar Threads

  1. Replies: 9
    Last Post: 17-05-2026, 13:29:00
  2. Replies: 10
    Last Post: 24-04-2026, 21:19:03
  3. Update ║➽║NCam║➽║NCam WeTekPlay2 WeOS║v.15.8║By READ║
    By mehmetkarahanlı in forum Ncam
    Replies: 2
    Last Post: 24-04-2026, 21:17:02
  4. Replies: 31
    Last Post: 24-04-2026, 21:15:26
  5. Replies: 8
    Last Post: 24-04-2026, 21:13:13

Posting Permissions

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