View Single Post
  #42  
Old 11-18-2016, 03:44 PM
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?


Good question.


I use delphi 7 to compile this.

Free pascal ( lazarus ) does not have clipbrd unit.


I cannot install delphi 7 on windows 7 so this is what I do:

install delphi 7 as minimal as you can on XP and manually backup ( copy )
command line compiler only. ( bin, lib, and 2 registry files )

registry files you "export" after minimal delphi installation:

[HKEY_LOCAL_MACHINE\SOFTWARE\Borland]

[HKEY_CURRENT_USER\Software\Borland]


This is content of "installation" pack:

Bin
Lib
hkcu.reg
hklm.reg
SETUP.bat

"Installation":

SETUP.bat:

xcopy *.* C:\"Program Files"\Borland\Delphi7 /S /I /Y
regedit /s hkcu.reg
regedit /s hklm.reg


Use:

D7.bat:

"C:\Program Files\Borland\Delphi7\BIN\DCC32.EXE" -cc %1
pause

Example:

C:\MISC\D7>D7 GINIKO_URL.dpr

C:\MISC\D7>"C:\Program Files\Borland\Delphi7\BIN\DCC32.EXE" -cc GINIKO_URL.dpr
Borland Delphi Version 15.0
Copyright (c) 1983,2002 Borland Software Corporation
GINIKO_URL.dpr(32) Warning: Text after final 'END.' - ignored by compiler
GINIKO_URL.dpr(48)
49 lines, 0.03 seconds, 318932 bytes code, 7873 bytes data.

C:\MISC\D7>pause
Press any key to continue . . .


Why not C, this would be the best ?

C code is not so appealing, though being the best and portable everywhere.

Last edited by j_cool : 11-18-2016 at 04:14 PM.
Reply With Quote