On 8 September 2013 10:17, Simon Morgan <[email protected]> wrote: > > Has anyone implemented Get_iPlayer as a Service under Windows Home Server > 2011? > > Currently I use the PVR interface and I appreciate that this would not be > possible as a Service but does anyone have any suggestions as to whether and > how I could implement this? >
I use it on WHS2011, but not as a service. I have a batch file which I trigger every 8 hours using the Windows Task Scheduler. Here's a sample of the batch file: @echo off CD /d "C:\Program Files (x86)\get_iplayer\" set _perl="C:\Program Files (x86)\get_iplayer\perl.exe" set _get_iplayer="C:\Program Files (x86)\get_iplayer\get_iplayer.pl" %_perl% %_get_iplayer% --refresh --force dontshowanymatches %_perl% %_get_iplayer% -g programme "another programme" programme3 %_perl% %_get_iplayer% --type=radio --refresh --force dontshowanymatches %_perl% %_get_iplayer% --type=radio -g radioprogramme "another radio programme" radioprogramme3 _______________________________________________ get_iplayer mailing list [email protected] http://lists.infradead.org/mailman/listinfo/get_iplayer

