View Single Post
  #27  
Old 11-10-2016, 11:05 AM
j_cool j_cool is offline
Senior Member
 
Join Date: Feb 2016
Posts: 515
j_cool is on a distinguished road
Default

Re: Can somebody help get filmon rtmp code to play with livestreamer?


laj,

I still run my old batch files, they work though livestreamer can do that all with only one line.

BBC is not worth pulling my middle leg to change something.

This is how it works for me for now:

first batch file calls second batch file so I never see CMD window, just BBC once in a month in FFPLAY.exe.




first batch file:

@title BBC_NEWS
start /min bbc_news1.bat ^& exit


second batch file:

title BBC_NEWS1
set url=http://www.giniko.com/watch.php?id=27
xidel %url% -e //@src > %TEMP%\URL.txt
giniko_url.exe
@FOR /f %%a IN ('CLB') DO set var=%%a
set agent="Mozilla/5.0 (Windows NT 6.1; WOW64; rv:47.0) Gecko/20100101 Firefox/47.0"
start wmove %var%
start /min ffplay -user-agent %agent% -i %var%



xidel:

http://www.videlibri.de/xidel.html


giniko_url.exe: ( delphi )

program GINIKO_URL;
{$APPTYPE CONSOLE}
uses windows,StrUtils,SysUtils,clipbrd,ShellApi;
var s,tmp: ansistring;
f: text;
found: boolean;
p: Pchar;
begin
tmp:=GetEnvironmentVariable('TEMP');
assign( f, tmp + '\URL.txt' ); reset(f);
found:= false;
while ( not eof(f) ) AND ( found=false ) do
begin
readln(f,s);
if ( AnsiContainsStr(s,'playlist.m3u8') ) then found:=true;
if ( AnsiContainsStr(s,'index.m3u8') ) then found:=true;
end;
P:=@s[1];
Clipboard.AsText:=p;
close(f);
end.


CLB:

program CLB; ( delphi )
{$APPTYPE CONSOLE}
uses ClipBrd;
begin
writeln(Clipboard.AsText);
end.


wmove.exe: ( autoit )

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



FFPLAY.exe output:


Input #0, hls,applehttp, from 'http://nimlive1.giniko.com/bbcnews/bbcnews.stream
/playlist.m3u8?wmsAuthSign=c2VydmVyX3RpbWU9MTEvMTAv MjAxNiA2OjAxOjAxIFBNJmhhc2hfd
mFsdWU9SVNzSnpuZlZGTEwwUm9aNzhmNkUxQT09JnZhbGlkbWl udXRlcz0xNDQw':
Duration: N/A, start: 18201.112400, bitrate: N/A
Program 0
Metadata:
variant_bitrate : 904134
Stream #0:0: Data: timed_id3 (ID3 / 0x20334449)
Metadata:
variant_bitrate : 904134
Stream #0:1: Video: h264 (Main) ([27][0][0][0] / 0x001B), yuv420p, 832x480 [
SAR 1:1 DAR 26:15], 25 fps, 25 tbr, 90k tbn, 50 tbc
Metadata:
variant_bitrate : 904134
Stream #0:2: Audio: aac (LC) ([15][0][0][0] / 0x000F), 44100 Hz, stereo, flt
p
Reply With Quote