Page 16 of 47 FirstFirst ... 121314151617181920 ... LastLast
Results 151 to 160 of 469

Thread: RTL-SDR with Enigma2 (SDG Radio)

  1. #151

    Απ: RTL-SDR with Enigma2

    I have invalid syntax line 269 in new plugin.py

    if newfreq < Decimal("174.928")

    Do you have bin file I can use in my OBH image (I just compiled test3 from my branch with the change to auto-select the first available channel found: https://github.com/athoik/dab-cmdlin...ab545e38b696c7)

  2. #152

    athoik's Avatar
    Join Date
    Sep 2012
    Location
    Earth
    Posts
    10,759
    Rep Power
    5927763

    Απ: RTL-SDR with Enigma2

    Quote Originally Posted by Matrix10 View Post
    I have invalid syntax line 269 in new plugin.py

    if newfreq < Decimal("174.928")
    Yes a missing colon.

    Code:
    if newfreq < Decimal("174.928"):
    PS. Get one for ARM? https://a.uguu.se/c8zel1SE7ic5_dab-c...v7ahf-neon.ipk
    Member SatDreamGr Projects

    Wavefield T90: 0.8W - 1.9E - 4.8E - 13E - 16E - 19.2E - 23E - 26E - 33E - 39E - 42E - 45E on EMP Centauri DiseqC 16/1
    Unamed: 13E Quattro - 9E Quattro on IKUSI MS-0916

  3. #153

    Απ: RTL-SDR with Enigma2

    i have new syntax error line 271

    def buttonNumber(self, number):

  4. #154

    Απ: RTL-SDR with Enigma2

    I have test with last plugin i have mod

    with this commands

    if config.sdgradio.modulation.value == "wfm":
    cmd = "dab-rtlsdr-3 -C 8A -W30 -S 87F0 - | gst-launch-1.0 fdsrc ! audio/x-raw, format=S16LE, channels=2, layout=interleaved, rate=48000 ! dvbaudiosink"
    elif config.sdgradio.modulation.value == "nfm":
    cmd = "dab-rtlsdr-3 -C 8A -W30 -S 8418 - | gst-launch-1.0 fdsrc ! audio/x-raw, format=S16LE, channels=2, layout=interleaved, rate=48000 ! dvbaudiosink"
    elif config.sdgradio.modulation.value == "am":
    cmd = "dab-rtlsdr-3 -C 8A -W30 -S 86EF - | gst-launch-1.0 fdsrc ! audio/x-raw, format=S16LE, channels=2, layout=interleaved, rate=48000 ! dvbaudiosink"
    elif config.sdgradio.modulation.value == "nam":
    cmd = "dab-rtlsdr-3 -C 11C -W30 -S 8802 | gst-launch-1.0 fdsrc ! audio/x-raw, format=S16LE, channels=2, layout=interleaved, rate=48000 ! dvbaudiosink"
    elif config.sdgradio.modulation.value == "lsb":
    cmd = "dab-rtlsdr-3 -C 11C -W30 -S 83E1 | gst-launch-1.0 fdsrc ! audio/x-raw, format=S16LE, channels=2, layout=interleaved, rate=48000 ! dvbaudiosink"
    elif config.sdgradio.modulation.value == "usb":
    cmd = "dab-rtlsdr-3 -C 11C -W30 -S 8804 | gst-launch-1.0 fdsrc ! audio/x-raw, format=S16LE, channels=2, layout=interleaved, rate=48000 ! dvbaudiosink"
    elif config.sdgradio.modulation.value == "scannam":
    cmd = "dab-rtlsdr-3 -C 11C -W30 -S 83C7 | gst-launch-1.0 fdsrc ! audio/x-raw, format=S16LE, channels=2, layout=interleaved, rate=48000 ! dvbaudiosink"
    elif config.sdgradio.modulation.value == "scanfm":
    cmd = "dab-rtlsdr-3 -C 11C -W30 -S 83C6 | gst-launch-1.0 fdsrc ! audio/x-raw, format=S16LE, channels=2, layout=interleaved, rate=48000 ! dvbaudiosink"
    elif config.sdgradio.modulation.value == "scanfm25k":
    cmd = "dab-rtlsdr-3 -C 11C -W30 -S 8808 | gst-launch-1.0 fdsrc ! audio/x-raw, format=S16LE, channels=2, layout=interleaved, rate=48000 ! dvbaudiosink"
    else:
    cmd = "dab-rtlsdr-3 -C 8A -W30 -S 83D2 | gst-launch-1.0 fdsrc ! audio/x-raw, format=S16LE, channels=2, layout=interleaved, rate=48000 ! dvbaudiosink"

    with one button i can choise one channel from command list

  5. #155

    athoik's Avatar
    Join Date
    Sep 2012
    Location
    Earth
    Posts
    10,759
    Rep Power
    5927763

    Απ: RTL-SDR with Enigma2

    Member SatDreamGr Projects

    Wavefield T90: 0.8W - 1.9E - 4.8E - 13E - 16E - 19.2E - 23E - 26E - 33E - 39E - 42E - 45E on EMP Centauri DiseqC 16/1
    Unamed: 13E Quattro - 9E Quattro on IKUSI MS-0916

  6. #156

    athoik's Avatar
    Join Date
    Sep 2012
    Location
    Earth
    Posts
    10,759
    Rep Power
    5927763

    Απ: RTL-SDR with Enigma2

    Two more changes for dab-cmdline-example3 :

    1. display teletext messages in plugin https://github.com/athoik/dab-cmdlin...e45f13072ad5ed
    2. display selected program station in plugin: https://github.com/athoik/dab-cmdlin...92df2d9a638dad
    Member SatDreamGr Projects

    Wavefield T90: 0.8W - 1.9E - 4.8E - 13E - 16E - 19.2E - 23E - 26E - 33E - 39E - 42E - 45E on EMP Centauri DiseqC 16/1
    Unamed: 13E Quattro - 9E Quattro on IKUSI MS-0916

  7. #157

    Απ: RTL-SDR with Enigma2

    Quote Originally Posted by athoik View Post
    Two more changes for dab-cmdline-example3 :

    1. display teletext messages in plugin https://github.com/athoik/dab-cmdlin...e45f13072ad5ed
    2. display selected program station in plugin: https://github.com/athoik/dab-cmdlin...92df2d9a638dad
    This is very interesting.

    Can you make bin for me ?

  8. #158

    athoik's Avatar
    Join Date
    Sep 2012
    Location
    Earth
    Posts
    10,759
    Rep Power
    5927763

    Απ: RTL-SDR with Enigma2

    You can always use our image :P

    Here you are: https://a.uguu.se/R0So8VCf3vhS_dab-c...v7ahf-neon.ipk
    Member SatDreamGr Projects

    Wavefield T90: 0.8W - 1.9E - 4.8E - 13E - 16E - 19.2E - 23E - 26E - 33E - 39E - 42E - 45E on EMP Centauri DiseqC 16/1
    Unamed: 13E Quattro - 9E Quattro on IKUSI MS-0916

  9. #159

    Απ: RTL-SDR with Enigma2

    Quote Originally Posted by athoik View Post
    Plugin works now
    of course I had to enter my frequency.
    and you get only one channel.

  10. #160

    athoik's Avatar
    Join Date
    Sep 2012
    Location
    Earth
    Posts
    10,759
    Rep Power
    5927763

    Απ: RTL-SDR with Enigma2

    Are you sure it doesn't change frequencies?
    Member SatDreamGr Projects

    Wavefield T90: 0.8W - 1.9E - 4.8E - 13E - 16E - 19.2E - 23E - 26E - 33E - 39E - 42E - 45E on EMP Centauri DiseqC 16/1
    Unamed: 13E Quattro - 9E Quattro on IKUSI MS-0916

Page 16 of 47 FirstFirst ... 121314151617181920 ... LastLast

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Similar Threads

  1. Replies: 21
    Last Post: 15-06-20, 18:49
  2. No Radio
    By clweb in forum GbquadPlus
    Replies: 3
    Last Post: 28-02-17, 20:46
  3. Radio.de Plugin
    By enigma1969 in forum Enigma2 Plugins ΟΕ 2.0
    Replies: 0
    Last Post: 22-10-16, 11:03

Posting Permissions

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