 Re: Can somebody help get filmon rtmp code to play with livestreamer?
You use CMD only, I am limited with CMD only.
:START
save web page as txt ( every 90 sec new ID )
.exe reads txt file, finds ID, sends it to clipboard
@FOR /f %%a IN ('CLB') DO set var=%%a batch file reads ID from clipboard ( " parameter passing " )
ffmpeg -i ... %var% ...
stream stops or 90 seconds later, here I have to see what ffmpeg does, hangs or goes,
and to find right ffmpeg switch to keep appending to saved flv
GOTO START
similar sample code: ( delphi )
write from clipboard:
program CLB;
{$APPTYPE CONSOLE}
uses ClipBrd;
begin
writeln(Clipboard.AsText);
end.
send to clipboard:
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 // read text file, find string
begin
readln(f,s);
if ( AnsiContainsStr(s,'playlist.m3u8') ) then found:=true; // this would be something longer
if ( AnsiContainsStr(s,'index.m3u8') ) then found:=true;
end;
P:=@s[1];
Clipboard.AsText:=p; // send to clipboard
close(f);
end.
|