odr-audioenc -v http://funradiobe.ice.infomaniak.ch/funradiobe-low.aac -C 200 -b 64 -c 2 -r 48000 -o tcp://10.30.10.124:79002 -D -L --audio-resampler=samplerate -L --src-converter-type=0odr-audioenc --vlc-uri=https://stream.and-stuff.nl:8443/live-riverside-flac -b 96 -r 48000 -o tcp://10.30.10.124:79003 --pad=58 --pad-fifo=/home/dab/DAB/dls/test.pad--
You received this message because you are subscribed to the Google Groups "mmbtools" group.
To unsubscribe from this group and stop receiving emails from it, send an email to crc-mmbtools+unsubscribe@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
With my experience pad 16 is optimal even for dynamic images, I don't need "speed" for this.I also use very optimized images with -R option, looks good and they have low size.
--
odr-audioenc --vlc-uri=https://stream.and-stuff.nl:8443/live-riverside-flac -g -1 -b 96 -r 48000 -o tcp://10.30.10.124:79003 --pad=58 --pad-fifo=/home/dab/DAB/dls/test.padThe FLAC stream is also 44.1k and may be using the nasty resampler which adds lots of artifacts. Try adding this to the command:
-L --audio-resampler=samplerate -L --src-converter-type=0
odr-audioenc --vlc-uri=https://stream.and-stuff.nl:8443/live-riverside-flac -L --audio-resampler=samplerate -L --src-converter-type=0
--
You received this message because you are subscribed to the Google Groups "mmbtools" group.
To unsubscribe from this group and stop receiving emails from it, send an email to crc-mmbtools...@googlegroups.com.
odr-audioenc --vlc-uri=https://stream.and-stuff.nl:8443/live-riverside-flac -L --audio-resampler=samplerate -L --src-converter-type=0 -g -1 -b 96 --sbr -r 48000 -o tcp://10.30.10.124:79002 --pad=58 --pad-fifo=/home/dab/DAB/dls/test.padodr-audioenc -v http://icecast.skyrock.net/s/klassiks_aac_96k -L --audio-resampler=samplerate -L --src-converter-type=0 -g -1 -b 64 --sbr --ps -r 48000 -o tcp://10.30.10.124:79001 -D -L --audio-resampler=samplerate -L --src-converter-type=0 --pad=58 --pad-fifo=/home/dab/DAB/dls/klassiks.pad--
You received this message because you are subscribed to the Google Groups "mmbtools" group.
To unsubscribe from this group and stop receiving emails from it, send an email to crc-mmbtools+unsubscribe@googlegroups.com.
odr-audioenc -v http://icecast.skyrock.net/s/klassiks_aac_96k -b 64 -o tcp://10.30.10.124:79001
sI run a local easydabv2 card (very low power <10mW which just covers my house for my own listening and test purpose).
The stream is available for dablin on 18080/tcp if you want to listen at :
nc 2.31.172.191 18080 | dablin_gtk
It should be there at least for the next few days (hopefully my firewall is letting it through)
I have attached the supervisord config file which contains the commands (ffmpeg/sox input with resampling, volume control and lowpass piped by fifo raw onto odr-audioenc) and the mux.mux – I think that the audio quality is good and not dissimilar to the input streams. I have some services on DAB and DAB+ for comparison so using a local icecast2 server reduces broadband usage.
I send slides which are 6-8kB JPEGs – I use the “convert” command to timestamp a HQ slide and save at 6-8k size (for example see below)
#!/bin/bash
let Z=`date +%s`+30
T=`date --date="@$Z" +%H:%M`
convert -font helvetica-bold -pointsize 20 -gravity NorthWest -interlace none -annotate +20+10 $T -fill black -quality 25% ~/Slides/uy-hq.jpg ~/uyslides/uy.jpg
Using sox/ffmpeg as a front end saves CPU and uses the amazing libsoxr resampler which is a lot better and more efficient than libsrc in VLC.
Hope this is of interest.
Peter
--
You received this message because you are subscribed to the Google Groups "mmbtools" group.
To unsubscribe from this group and stop receiving emails from it, send an email to crc-mmbtools...@googlegroups.com.
You lose the auto-reconnect provided in odr-audioenc VLC but using supervisord largely overcomes this.
sox doesn’t handle AAC input streams otherwise it’s the best!
ffmpeg handles AAC input streams and is compiled with libsoxr – the audio filtering is “interesting” to get working properly.
I filter the resultant resampled streams with a sharp 16kHz lowpass before submitting to odr-audioenc. It has enough to do without dealing with high frequency artifacts.
Look at http://src.infinitewave.ca/ and compare sweep of “SoX 14.4 VHQ Linear Phase” against anything else including “Secret Rabbit Code 0.1.8 (Best)”. It is apparently completely clean!
Peter