Audio/video stream recording forums (http://stream-recorder.com/forum/index.php)
-   Video stream recording (http://stream-recorder.com/forum/forumdisplay.php?f=4)
-   -  

trtworld live

(http://stream-recorder.com/forum/showthread.php?t=22428)

j_cool 10-08-2016 05:43 PM

trtworld live


 
I can play trtworld live from giniko.com with ffplay.exe by double clicking on batch file without using web browser at all:

set url=http://www.giniko.com/watch.php?id=460
xidel %url% -e //@src > %TEMP%\URL.txt
giniko_url.exe ( finds m3u8 string in url.txt and sends it to clipboard, I made this one )

( http://fluplus1.giniko.com/trtworld/...741d72a8 6400 )

@FOR /f %%a IN ('CLB') DO set var=%%a
start /min ffplay -i %var%

Now, the challenge is how to get stream url directly from:

http://www.trtworld.com/live

no matter how.

Something to laugh about:

Jaksta saves manifest-f4m.flv 0.06KB in size.

hasomaso 10-09-2016 03:25 AM

Re: trtworld live


 
http://trtcanlitv-lh.akamaihd.net/i/... layer-3.5.0.0

j_cool 10-09-2016 04:15 AM

Re: trtworld live


 
hasomaso,

job well done. I missed master.m3u8 everywhere.

Your solution would work for bunch of other sites like

euronews, cnc world, bbc world etc.

dId you use a sniffer or you are that good at scripting and you get it?

The best I got was from wireshark:

http://trtcanlitv-lh.akamaihd.net/z/...player-3.5.0.0

Members good with wireshark, you comments about my last line are welcome.

hasomaso 10-09-2016 08:03 AM

Re: trtworld live


 
when u have a manifest url like trtworld or others, u need to change two things, see the red and green marks

.f4m
Code:

http://trtcanlitv-lh.akamaihd.net/z/TRTWORLD_1@321783/manifest.f4m?g=PDJSTTYYLXVG&hdcore=3.5.0&plugin=jwplayer-3.5.0.0
.m3u8
Code:

http://trtcanlitv-lh.akamaihd.net/i/TRTWORLD_1@321783/master.m3u8?g=PDJSTTYYLXVG&hdcore=3.5.0&plugin=jwplayer-3.5.0.0

j_cool 10-09-2016 08:10 AM

Re: trtworld live


 
I get many things done by using creativity and common sense like

instead of z try all alphabet - a,b,c,..i, index.m3u8, playlist.m3u8, etc.

Here changing alphabet 28 times multiplied by number of m3u8 words I would try
lead me to think this is better done in educated way,
and would like to know educated way of getting this.

Could you give me some guidance what to read?

Using wireshark to see master.m3u8 or plain book worth reading ?

So far, you helped me A LOT.

Johnny.

j_cool 10-09-2016 12:18 PM

Re: trtworld live


 
hasomaso,

here is my new trt.bat, smaller and better.

set var=http://trtcanlitv-lh.akamaihd.net/i/TRTWORLD_1@321783/master.m3u8
start wmove http:// 208 1
start /min ffplay -i %var% -vf scale=864:480

wmove.exe is if you want to place player anywhere on the monitor.

autoit script, can be compiled to exe as I do it.

winwait($CmdLine[1], "", 6)
winactivate($CmdLine[1], "")
If WinExists($CmdLine[1]) Then
Select
Case $CmdLine[0] = 3
WinMove($CmdLine[1], "", $CmdLine[2],$CmdLine[3])
Case $CmdLine[0] = 5
WinMove($CmdLine[1], "", $CmdLine[2],$CmdLine[3],$CmdLine[4],$CmdLine[5])
EndSelect
EndIf

;WinMove('AutoIt v3 Window Info', '','MOVE RIGHT' ,'MOVE DOWN','WINDOW LENGTH','WINDOW HIGHT')

j_cool 10-09-2016 12:31 PM

Re: trtworld live


 
or this without resizing the window, just setting the position if desired

set var=http://trtcanlitv-lh.akamaihd.net/i/TRTWORLD_1@321783/index_900_av-b.m3u8
start wmove http:// 208 1
start /min ffplay -i %var%


All times are GMT -6. The time now is 01:41 PM.