ts需求:已知批量 m3u8 uri,求完整 ts文件 uri#由于sed不支持文本替換,生成臨時文件test_file #curl -s 忽略默認(rèn)如下輸出 # &nbs..."/>
溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

shell m3u8-->ts

發(fā)布時間:2020-07-22 12:20:43 來源:網(wǎng)絡(luò) 閱讀:1002 作者:亂世浮塵 欄目:建站服務(wù)器

shell:m3u8-->ts

  • 需求:已知批量 m3u8 uri,求完整 ts文件 uri

#由于sed不支持文本替換,生成臨時文件test_file
#curl -s 忽略默認(rèn)如下輸出
#  % Total    % Received % Xferd  Average Speed   Time    Time     Time  Current
#                                 Dload  Upload   Total   Spent    Left  Speed
#107   537  107   537    0     0   1987      0 --:--:-- --:--:-- --:--:--  4007
#
#sed 帶參替換四種方式:
#1.eval sed ’s/$a/$b/’ filename
#2.sed "s/$a/$b/" filename
#3.sed ’s/’$a’/’$b’/’ filename 
#4.sed s/$a/$b/ filename

#!/bin/bash

m3u8_list=`cat m3u8`
for i in $m3u8_list
do
        echo "$i" &>> all_log
        ts_list=`curl -s $i | grep '\.ts$'`
        for j in $ts_list
        do
                echo "$i" > test_file
                sed "s/index.m3u8/$j/" test_file &>> all_log
        done
done
  • m3u8:

http://14.18.146.165:8802/vod/ymx//225731_3/index.m3u8
http://14.18.146.165:8802/vod/ymx//225731_4/index.m3u8
http://14.18.146.165:8802/vod/ymx//225731_5/index.m3u8
  • all_log:

[root@test-CNC-TJ-19-28 yuhuancun]# head 171723.txt
http://14.18.146.165:8802/vod/hn_live_165/8592_58438/index.m3u8
http://14.18.146.165:8802/vod/hn_live_165/8592_58438/video_0.ts
http://14.18.146.165:8802/vod/hn_live_165/8592_58438/video_1.ts
http://14.18.146.165:8802/vod/hn_live_165/8592_58438/video_2.ts
http://14.18.146.165:8802/vod/hn_live_165/8592_58438/video_3.ts


向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI