From db5d9e68c639adc09e816a0c8090276a94c335e5 Mon Sep 17 00:00:00 2001 From: fenix-soft Date: Sat, 14 Nov 2020 11:09:01 +0100 Subject: [PATCH] Add files via upload --- grr_lazio | 55 +++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 55 insertions(+) create mode 100644 grr_lazio diff --git a/grr_lazio b/grr_lazio new file mode 100644 index 0000000..e1299a0 --- /dev/null +++ b/grr_lazio @@ -0,0 +1,55 @@ +#!/bin/bash +# +# +#################################################################################### +# script che recupera i podcast del radio giornale del Lazio +# +# v:1.0 +# +# dipendenze: curl,jq,cat,wget +# +# +#################################################################################### + + +# set global variable + +grrAPI="https://www.rainews.it/dl/rai24/tgr/basic/archivio/ContentSet-cac56e72-5bee-44ef-bb52-c9f590eb82c5.json" + +ag="Mozilla/5.0 (Windows NT 10.0; WOW64; rv:40.0) Gecko/20100101 Firefox/56.0" + +# remove old jason data +rm ./data/Lazio.json + +# get jason data +curl -A "$ag" "$grrAPI" -o data/Lazio.json +echo " " +echo "get data api... done!" +echo " " + +# extract jason data of the 2 last podcast stored +data0=`cat ./data/Lazio.json | jq -r '.items[0]|.date'` +Media0=`cat ./data/Lazio.json | jq -r '.items[0]|.mediaUrl'` +ora0=`cat ./data/Lazio.json | jq -r '.items[0]|.title'` + +data1=`cat ./data/Lazio.json | jq -r '.items[1]|.date'` +Media1=`cat ./data/Lazio.json | jq -r '.items[1]|.mediaUrl'` +ora1=`cat ./data/Lazio.json | jq -r '.items[1]|.title'` + +# extract time onair podcast "h_m" +Ora0=`echo $ora0 | sed -e 's/\ /\n/g' | grep ":"| sed -e 's/\:/\_/g'` + +Ora1=`echo $ora1 | sed -e 's/\ /\n/g' | grep ":"| sed -e 's/\:/\_/g'` + +# extract date onair podcast "type 10-10-2020" +Data0=`echo $data0 | sed -e 's/\//\-/g'` +Data1=`echo $data1 | sed -e 's/\//\-/g'` + +echo " " +echo "extract data... done!" +echo " " + +# download podcast + +wget -d -c -U "$ag" "$Media0" -O GRR_Lazio_"$Data0"_"$Ora0".mp3 +wget -d -c -U "$ag" "$Media1" -O GRR_Lazio_"$Data1"_"$Ora1".mp3 \ No newline at end of file