Jump to content


Photo

DAB+ with RTL-SDR stick


  • Please log in to reply
87 replies to this topic

Re: DAB+ with RTL-SDR stick #41 athoik

  • PLi® Core member
  • 8,458 posts

+327
Excellent

Posted 22 November 2016 - 19:16

Hi,

Here you can find instructions for Enigma2 Radio plugin: http://www.satdreamg...DR-with-Enigma2

You can find plugin source here: https://github.com/SatDreamGr/SDGRadio

Bitbake for building rtl-sdr is provided above.

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

Re: DAB+ with RTL-SDR stick #42 serdeliuk

  • Senior Member
  • 315 posts

+18
Neutral

Posted 22 November 2016 - 19:26

Haha, niceeee, however, I will finalise my plugin someday....


init 2 && init 3


Re: DAB+ with RTL-SDR stick #43 athoik

  • PLi® Core member
  • 8,458 posts

+327
Excellent

Posted 25 November 2016 - 00:00

RDS now works with redsea decoder

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

Re: DAB+ with RTL-SDR stick #44 MastaG

  • Senior Member
  • 1,531 posts

+118
Excellent

Posted 25 November 2016 - 09:02

That looks nice Athoik :)



Re: DAB+ with RTL-SDR stick #45 DrData

  • Senior Member
  • 99 posts

+2
Neutral

Posted 25 November 2016 - 13:43

Nice. I like it! Works good on SatdreamGR Image.

Is there a way to make it work for OpenPLI 4 ?

 

I copy the needed libs and the rtl files from /usr/bin to my PLi4 Image. But it does not work.

Think old gstreamer is the main problem.

Does anyone know how to replace line Nr. 175 from the source code ?

I mean this gstreamer play command:

 

gst-launch-1.0 fdsrc ! audio/x-raw, format=S16LE, channels=1, layout=interleaved, rate=48000 ! dvbaudiosink" % freq

 

 

replace gst-launch-1.0 with gst-launch-0.10 does not work on OpenPLi4



Re: DAB+ with RTL-SDR stick #46 athoik

  • PLi® Core member
  • 8,458 posts

+327
Excellent

Posted 25 November 2016 - 14:08

I guess something like the following might work. Good luck.
 
gst-launch filesrc location=/dev/stdin ! audio/x-raw-int, endianness=1234, signed=true, width=16, depth=16, rate=48000, channels=1 ! dvbaudiosink

Edited by athoik, 25 November 2016 - 14:09.

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

Re: DAB+ with RTL-SDR stick #47 dax

  • Senior Member
  • 228 posts

0
Neutral

Posted 25 November 2016 - 23:53

@athoik: do you have also a recipe for the plugin?



Re: DAB+ with RTL-SDR stick #48 athoik

  • PLi® Core member
  • 8,458 posts

+327
Excellent

Posted 26 November 2016 - 00:00

Here you are:
 
# cat enigma2-plugin-extensions-sdgradio.bb
SUMMARY = "Enigma2 Software Defined Radio"
DESCRIPTION = "SDR for Enigma2 using rtl_fm command line tool"
SECTION = "multimedia"
MAINTAINER = "SatDreamGR"
HOMEPAGE = "http://satdreamgr.com"
LICENSE = "PD"
LIC_FILES_CHKSUM = "file://setup.py;md5=d31403faaf47732304b85c82641be58f"
SRC_URI = "git://github.com/satdreamgr/SDGRadio.git;protocol=http"

S = "${WORKDIR}/git"

inherit gitpkgv
SRCREV = "${AUTOREV}"
PV = "1+git${SRCPV}"
PKGV = "1+git${GITPKGV}"
PR = "r0"

inherit allarch distutils-openplugins

RDEPENDS_${PN} = "python-core rtl-sdr"

PACKAGES =+ "${PN}-src"
RDEPENDS_{PN}-src = "${PN}"
FILES_${PN}-src = "${libdir}/enigma2/python/Plugins/Extensions/SDGRadio/*.py"

Edited by athoik, 26 November 2016 - 00:01.

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

Re: DAB+ with RTL-SDR stick #49 dax

  • Senior Member
  • 228 posts

0
Neutral

Posted 26 November 2016 - 00:08

Thanks a lot, as usual.



Re: DAB+ with RTL-SDR stick #50 nightflyer

  • Member
  • 14 posts

+2
Neutral

Posted 28 November 2016 - 12:37

Here you are:
 

# cat enigma2-plugin-extensions-sdgradio.bb
SUMMARY = "Enigma2 Software Defined Radio"
DESCRIPTION = "SDR for Enigma2 using rtl_fm command line tool"
SECTION = "multimedia"
MAINTAINER = "SatDreamGR"
HOMEPAGE = "http://satdreamgr.com"
LICENSE = "PD"
LIC_FILES_CHKSUM = "file://setup.py;md5=d31403faaf47732304b85c82641be58f"
SRC_URI = "git://github.com/satdreamgr/SDGRadio.git;protocol=http"

S = "${WORKDIR}/git"

inherit gitpkgv
SRCREV = "${AUTOREV}"
PV = "1+git${SRCPV}"
PKGV = "1+git${GITPKGV}"
PR = "r0"

inherit allarch distutils-openplugins

RDEPENDS_${PN} = "python-core rtl-sdr"

PACKAGES =+ "${PN}-src"
RDEPENDS_{PN}-src = "${PN}"
FILES_${PN}-src = "${libdir}/enigma2/python/Plugins/Extensions/SDGRadio/*.py"

 

Shouldn't RDEPENDS also include redsea? Moreover, can you supply a recipe  for redsea too? Even better, can you make a git repo with these all these recipes?



Re: DAB+ with RTL-SDR stick #51 athoik

  • PLi® Core member
  • 8,458 posts

+327
Excellent

Posted 28 November 2016 - 17:15

Yes, a newer bitbake does that.

I will post the required bitbakes on plugin repository.
Wavefield T90: 0.8W - 1.9E - 4.8E - 13E - 16E - 19.2E - 23.5E - 26E - 33E - 39E - 42E - 45E on EMP Centauri DiseqC 16/1
Unamed: 13E Quattro - 9E Quattro on IKUSI MS-0916

Re: DAB+ with RTL-SDR stick #52 athoik

  • PLi® Core member
  • 8,458 posts

+327
Excellent

Posted 30 November 2016 - 05:31

I will post the required bitbakes on plugin repository.


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

Re: DAB+ with RTL-SDR stick #53 nightflyer

  • Member
  • 14 posts

+2
Neutral

Posted 30 November 2016 - 17:56

 

I will post the required bitbakes on plugin repository.


Done.

 

 

Thank you very much. I hope to try them soon.

 

IMHO it would be better if you make two separate repositories: one for the plugin, the other for the recipes.



Re: DAB+ with RTL-SDR stick #54 Matrix10

  • Senior Member
  • 338 posts

+27
Good

Posted 17 February 2017 - 11:34

Thanks to @athoik for this nice plugin.

 

I hope even greater development, although plugin works great.
It can be used for commercial FM radio.

but also to listen to the air and naval communications
radio amateurs and commercial services ( for now you have to edit command line )

Tested with FM, AM, LSB.USB  modulation.
A very wide range of freq work possible.
Excellent audio quality.

 

 

My new skin for this nice plugin.

Attached Files



Re: DAB+ with RTL-SDR stick #55 Matrix10

  • Senior Member
  • 338 posts

+27
Good

Posted 17 February 2017 - 16:49

Another simple modern style

 

 

 

Attached Files



Re: DAB+ with RTL-SDR stick #56 Beanie

  • Senior Member
  • 66 posts

0
Neutral

Posted 24 March 2019 - 21:10

Sorry for opening such an old thread. Is this plugin available from the OpenPLi feeds? Or a similar SDR plugin? Thank you.



Re: DAB+ with RTL-SDR stick #57 serdeliuk

  • Senior Member
  • 315 posts

+18
Neutral

Posted 24 March 2019 - 21:15

Hi Beanie, if you ask about RTL-SDR plugin i started it is in early stage but works, mostly by hand, it has all required RTL-SDR libraries and work from cli, my GUI is not ready yet but if you want you can download a zip with my last work "which is very old" unfortunately. About any others RTL-SDR plugins i do not know if it is any available.

Hopefully i will have time to finalise the plugin someday.

 

Here you can find some infos about the library http://ms.serdit.ro


Edited by serdeliuk, 24 March 2019 - 21:18.

init 2 && init 3


Re: DAB+ with RTL-SDR stick #58 serdeliuk

  • Senior Member
  • 315 posts

+18
Neutral

Posted 24 March 2019 - 21:21

And the "latest" GUI :) http://ms.serdit.ro/...early-stage.zip unfortunately too old and not finished


init 2 && init 3


Re: DAB+ with RTL-SDR stick #59 Beanie

  • Senior Member
  • 66 posts

0
Neutral

Posted 25 March 2019 - 01:07

Thanks serdeliuk, yes I was looking for RTL-SDR. I will give yours a try.



Re: DAB+ with RTL-SDR stick #60 2Easy

  • Member
  • 7 posts

+1
Neutral

Posted 25 March 2019 - 05:32

Thanks, it worked like magic.




1 user(s) are reading this topic

0 members, 1 guests, 0 anonymous users