Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revision Previous revision
Next revision
Previous revision
troubleshooting:creating_a_sample [2019/08/29 01:43]
neds
troubleshooting:creating_a_sample [2022/10/18 23:06] (current)
neds
Line 5: Line 5:
 <WRAP indent> <WRAP indent>
  
-==== Save virtual channel ====+==== Windows - Save virtual channel ====
 <WRAP indent> <WRAP indent>
  
-Launch Windows PowerShell ​and run: <​code>​Invoke-WebRequest ​http://<ip address of hdhomerun>:​5004/​auto/​v<​virtual channel number>?​duration=30 ​-OutFile ​<filename></​code>​+Paste a URL into your web browser ​and save the resulting file: <​code>​http://​hdhomerun.local:​5004/​auto/​v<​virtual channel number>?​duration=30<​/code> 
 + 
 +The "​hdhomerun.local"​ address should resolve to the first HDHomeRun device on your network. If this does not work, or you have more than one HDHomeRun device, you can also use your "​device ID"​+.local. For example, if you have a device ID of 104fffff then you would use 104fffff.local. If that still does not work, you can find the IP address of your HDHomeRun from your router settings and use that. 
 + 
 +Examples:  
 +  * <​code>​http://​hdhomerun.local:​5004/​auto/​v2.1?​duration=30</​code>​ 
 +  * <​code>​http://​104fffff.local:​5004/​auto/​v2.1?​duration=30</​code>​ 
 +  * <​code>​http://​192.168.0.100:​5004/​auto/​v2.1?​duration=30</​code>​
  
-Example: <​code>​Invoke-WebRequest http://​192.168.0.100:​5004/​auto/​v2.1?​duration=30 -OutFile test.mpg</​code>​ 
  
 </​WRAP>​ </​WRAP>​
-==== Save unfiltered physical channel ====+==== Windows - Save unfiltered physical channel ====
 <WRAP indent> <WRAP indent>
  
-Launch Windows PowerShell ​and run+Paste a URL into your web browser ​and save the resulting file:  
-<​code>​Invoke-WebRequest ​http://<ip address of hdhomerun>:​5004/​auto/​ch<​physical channel number>?​duration=30 ​-OutFile <​filename>​</​code>​+<​code>​http://​hdhomerun.local:​5004/​auto/​ch<​physical channel number>?​duration=30</​code>​ 
 + 
 +The "​hdhomerun.local"​ address should resolve to the first HDHomeRun device on your network. If this does not work, or you have more than one HDHomeRun device, you can also use your "​device ID"​+.local. For example, if you have a device ID of 104fffff then you would use 104fffff.local. If that still does not work, you can find the IP address of your HDHomeRun from your router settings and use that.
  
-Example+Examples:  
-<​code>​Invoke-WebRequest ​http://​192.168.0.100:​5004/​auto/​ch7?​duration=30 ​-OutFile test.mpg</​code>​+  * <​code>​http://​hdhomerun.local:​5004/​auto/​ch7?​duration=30</​code>​ 
 +  * <​code>​http://​104fffff.local:​5004/​auto/​ch7?​duration=30</​code>​ 
 +  * <​code>​http://​192.168.0.100:​5004/​auto/​ch7?​duration=30</​code>​
  
 </​WRAP>​ </​WRAP>​
-==== Legacy devices ====+==== Windows - Legacy devices ====
 <WRAP indent> <WRAP indent>
  
Line 40: Line 50:
 <WRAP indent> <WRAP indent>
  
-==== Save virtual channel ====+==== Mac - Save virtual channel ====
 <WRAP indent> <WRAP indent>
  
-Launch a terminal and run: <​code>​curl http://<ip address of hdhomerun>:​5004/​auto/​v<​virtual channel number>?​duration=30 -o <​filename></​code>​+Launch a terminal and run: <​code>​curl ​"http://​hdhomerun.local:​5004/​auto/​v<​virtual channel number>?​duration=30" ​-o <​filename></​code>​
  
-Example: <​code>​curl http://​192.168.0.100:​5004/​auto/​v2.1?​duration=30 -o test.mpg</​code>​+The "​hdhomerun.local"​ address should resolve to the first HDHomeRun device on your network. If this does not work, or you have more than one HDHomeRun device, you can also use your "​device ID"​+.local. For example, if you have a device ID of 104fffff then you would use 104fffff.local. If that still does not work, you can find the IP address of your HDHomeRun from your router settings and use that. 
 + 
 +Examples 
 +  * <​code>​curl "​http://​hdhomerun.local:​5004/​auto/​v2.1?​duration=30"​ -o test.mpg</​code>​ 
 +  * <​code>​curl "​http://​104fffff.local:​5004/​auto/​v2.1?​duration=30"​ -o test.mpg</​code>​ 
 +  * <​code>​curl ​"http://​192.168.0.100:​5004/​auto/​v2.1?​duration=30" ​-o test.mpg</​code>​
  
 </​WRAP>​ </​WRAP>​
Line 51: Line 66:
 <WRAP indent> <WRAP indent>
  
-Launch a terminal and run: <​code>​curl http://<ip address of hdhomerun>:​5004/​auto/​ch<​physical channel number>?​duration=30 -o <​filename></​code>​+Launch a terminal and run: <​code>​curl ​"http://​hdhomerun.local:​5004/​auto/​ch<​physical channel number>?​duration=30" ​-o <​filename></​code>​
  
-Example: <​code>​curl http://​192.168.0.100:​5004/​auto/​ch7?​duration=30 -o test.mpg</​code>​+The "​hdhomerun.local"​ address should resolve to the first HDHomeRun device on your network. If this does not work, or you have more than one HDHomeRun device, you can also use your "​device ID"​+.local. For example, if you have a device ID of 104fffff then you would use 104fffff.local. If that still does not work, you can find the IP address of your HDHomeRun from your router settings and use that. 
 + 
 +Examples 
 +  * <​code>​curl "​http://​hdhomerun.local:​5004/​auto/​ch7?​duration=30"​ -o test.mpg</​code>​ 
 +  * <​code>​curl "​http://​104fffff.local:​5004/​auto/​ch7?​duration=30"​ -o test.mpg</​code>​ 
 +  * <​code>​curl ​"http://​192.168.0.100:​5004/​auto/​ch7?​duration=30" ​-o test.mpg</​code>​
  
 </​WRAP>​ </​WRAP>​
Line 60: Line 80:
 <WRAP indent> <WRAP indent>
  
-==== Save virtual channel ====+==== Linux - Save virtual channel ====
 <WRAP indent> <WRAP indent>
  
-Open a terminal and run: <​code>​wget http://<ip address of hdhomerun>:​5004/​auto/​v<​virtual channel number>?​duration=30 -O <​filename></​code>​+Open a terminal and run: <​code>​wget http://​hdhomerun.local:​5004/​auto/​v<​virtual channel number>?​duration=30 -O <​filename></​code>​
  
-Example: <​code>​wget http://​192.168.0.100:​5004/​auto/​v2.1?​duration=30 -O test.mpg</​code>​+The "​hdhomerun.local"​ address should resolve to the first HDHomeRun device on your network. If this does not work, or you have more than one HDHomeRun device, you can also use your "​device ID"​+.local. For example, if you have a device ID of 104fffff then you would use 104fffff.local. If that still does not work, you can find the IP address of your HDHomeRun from your router settings and use that. 
 + 
 +Examples 
 +  * <​code>​wget http://​hdhomerun.local:​5004/​auto/​v2.1?​duration=30 -O test.mpg</​code>​ 
 +  * <​code>​wget http://​104fffff.local:​5004/​auto/​v2.1?​duration=30 -O test.mpg</​code>​ 
 +  * <​code>​wget http://​192.168.0.100:​5004/​auto/​v2.1?​duration=30 -O test.mpg</​code>​
  
 </​WRAP>​ </​WRAP>​
-==== Save unfiltered physical channel ====+==== Linux - Save unfiltered physical channel ====
 <WRAP indent> <WRAP indent>
  
-Open a terminal and run: <​code>​wget http://<ip address of hdhomerun>:​5004/​auto/​ch<​physical channel number>?​duration=30 -O <​filename></​code>​+Open a terminal and run: <​code>​wget http://​hdhomerun.local:​5004/​auto/​ch<​physical channel number>?​duration=30 -O <​filename></​code>​ 
 + 
 +The "​hdhomerun.local"​ address should resolve to the first HDHomeRun device on your network. If this does not work, or you have more than one HDHomeRun device, you can also use your "​device ID"​+.local. For example, if you have a device ID of 104fffff then you would use 104fffff.local. If that still does not work, you can find the IP address of your HDHomeRun from your router settings and use that.
  
-Example: <​code>​wget http://​192.168.0.100:​5004/​auto/​ch7?​duration=30 -O test.mpg</​code>​+Examples 
 +  * <​code>​wget http://​hdhomerun.local:​5004/​auto/​ch7?​duration=30 -O test.mpg</​code>​ 
 +  * <​code>​wget http://​104fffff.local:​5004/​auto/​ch7?​duration=30 -O test.mpg</​code>​ 
 +  * <​code>​wget http://​192.168.0.100:​5004/​auto/​ch7?​duration=30 -O test.mpg</​code>​
  
 </​WRAP>​ </​WRAP>​
  • Last modified: 2019/08/29 01:43