This is an old revision of the document!


Saving a 30 second video clip for troubleshooting problems

Save virtual channel

Launch Windows PowerShell and run:

Invoke-WebRequest http://<ip address of hdhomerun>:5004/auto/v<virtual channel number>?duration=30 -OutFile <filename>

Example:

Invoke-WebRequest http://192.168.0.100:5004/auto/v2.1?duration=30 -OutFile test.mpg

Save unfiltered physical channel

Launch Windows PowerShell and run:

Invoke-WebRequest http://<ip address of hdhomerun>:5004/auto/ch<physical channel number>?duration=30 -OutFile <filename>

Example:

Invoke-WebRequest http://192.168.0.100:5004/auto/ch7?duration=30 -OutFile test.mpg

Save virtual channel

Launch a terminal and run:

curl http://<ip address of hdhomerun>:5004/auto/v<virtual channel number>?duration=30 -o <filename>

Example:

curl http://192.168.0.100:5004/auto/v2.1?duration=30 -o test.mpg

Mac - save unfiltered physical channel

Launch a terminal and run:

curl http://<ip address of hdhomerun>:5004/auto/ch<physical channel number>?duration=30 -o <filename>

Example:

curl http://192.168.0.100:5004/auto/ch7?duration=30 -o test.mpg

Save virtual channel

Open a terminal and run:

wget http://<ip address of hdhomerun>:5004/auto/v<virtual channel number>?duration=30 -O <filename>

Example:

wget http://192.168.0.100:5004/auto/v2.1?duration=30 -O test.mpg

Save unfiltered physical channel

Open a terminal and run:

wget http://<ip address of hdhomerun>:5004/auto/ch<physical channel number>?duration=30 -O <filename>

Example:

wget http://192.168.0.100:5004/auto/ch7?duration=30 -O test.mpg
  • Last modified: 2019/06/13 00:47