Thank you for your quick response. This is a local channel that has slightly better picture quality via streaming than satellite, hence my interest. I hoped I would be able to find the master file, but unfortunately, there isn't one. I have tried to merge these but only get video or audio. If you happen to figure out how to do it, please let me know. It would just be interesting to know. Also, I assumed that synchronization would be a problem.
- Forums
- → Viewing Profile: Posts: eura
ATTENTION !!!
Due to a database corruption issue, we were forced to restore last-nights backup. This means all posts of Saterday Febuary 17th have been lost.Community Stats
- Group Senior Member
- Active Posts 83 ( per day)
- Profile Views 2,961
- Age 38 years old
- Birthday September 15, 1986
-
Gender
Not Telling
Contact Information
User Tools
Friends
eura hasn't added any friends yet.
Posts I've Made
In Topic: Combine audio+video stream
18 June 2024 - 22:24
In Topic: OpenPli 9 and ansible
7 June 2024 - 16:41
Works perfect to only way to manage environment , and everything is written in cod. I use it privet and at work. If you don't make the roll hard-code you just need to make one change :-)
So make variables in the role
Good Luck
In Topic: Tunein radio plugin
28 May 2024 - 19:38
Why not extract the real url stream and add it to a radio bouquet files ?
-
Open the Developer Tools:
- In Chrome, press Ctrl+Shift+I (Windows/Linux) or Cmd+Option+I (Mac).
- In Firefox, press Ctrl+Shift+E (Windows/Linux) or Cmd+Option+E (Mac).
-
Go to the Network Tab:
- Make sure the “Network” tab is selected.
-
Start Playing the Stream:
- Go to the RTÉ Lyric FM website and start the radio stream.
-
Look for the Stream URL:
- In the “Network” tab, you’ll see various network requests being made. Look for requests that contain media, often these will be .m3u8 or .mp3 files.
- The stream URL will often appear under the “Media” or “XHR” filters.
-
Copy the URL:
- Once you find the correct URL (it may look like a long, complex link), right-click on it and select “Copy link address”.
https://liveaudio.rt.../chunklist.m3u8
Test the url in Firefox or Vlc than convert this to the right format with this simple bash script
#!/bin/bash # Simpel script for adding radiostationer to the bouquet list # change_name = Wanted bouquet name on row 5 # Created the file /etc/enigma2/userbouquet.change_name.radio file_name=change_name echo "$file_name" echo>url read -p 'input url : ' url echo $url>url sed -i 's/:/%3a/g' url sed -i 's/^/#SERVICE 4097:0:2:0:100D:0:0:0:0:0:/' url read -p 'input name : ' name sed -i "s/$/:$name/" url echo "#DESCRIPTION $name">>url cat url>>/etc/enigma2/userbouquet.$file_name.radio echo "$name added to the bouquet" # Remove blank lines sed -i -n '/^\s*$/!p' /etc/enigma2/userbouquet.$file_name.radio wget -qO - "http://127.0.0.1/web/servicelistreload?mode=0"
#SERVICE 4097:0:2:0:100D:0:0:0:0:0:https%3a//liveaudio.rte.ie/hls-radio/lyric/chunklist.m3u8:RTE
#DESCRIPTION RTE
In Topic: Standby status reporting to mqtt
4 March 2024 - 22:07
I have a script that run crontab every 15 seconds (no problem)
https://dream.reichholf.net/e2web/
Hope you find a working solution.
In Topic: Clipbord in vim
25 January 2024 - 20:03
Thank you but with a empty .vimrc don't help
- Forums
- → Viewing Profile: Posts: eura