<html>
<head>
<meta content="text/html; charset=ISO-8859-1"
http-equiv="Content-Type">
</head>
<body bgcolor="#FFFFFF" text="#000000">
<div class="moz-cite-prefix">On 08/14/2013 10:23 PM, Mark Pennock
wrote:<br>
</div>
<blockquote
cite="mid:CABaLBbXxSvOJS7OS3GkJQWYyaWc3=b_=iCV2wZL6vXzie-=-sQ@mail.gmail.com"
type="cite">
<div dir="ltr">I'm trying to setup a new backend and I have 6200ch
compiled and working. However, it takes an extra argument to
work. Here is an example of what works.
<div><br>
</div>
<div><span
id="docs-internal-guid-603251f2-8067-46dd-d952-3035992803c6"><span
style="font-size:15px;font-family:Arial;color:rgb(0,0,0);background-color:transparent;vertical-align:baseline;white-space:pre-wrap">6200ch
-n 0 -v 177</span></span><br>
</div>
<div><span><span
style="font-size:15px;font-family:Arial;color:rgb(0,0,0);background-color:transparent;vertical-align:baseline;white-space:pre-wrap"><br>
</span></span></div>
<div><span><span
style="font-size:15px;font-family:Arial;color:rgb(0,0,0);background-color:transparent;vertical-align:baseline;white-space:pre-wrap">If
I don't specify the node as 0 it errors out.</span></span></div>
<div><span><span
style="font-size:15px;font-family:Arial;color:rgb(0,0,0);background-color:transparent;vertical-align:baseline;white-space:pre-wrap"><br>
</span></span></div>
<div><span><span
style="font-size:15px;font-family:Arial;color:rgb(0,0,0);background-color:transparent;vertical-align:baseline;white-space:pre-wrap">My
question is when setting the "External channel change
command" under the "input connections" setup I'm not sure
how to exactly setup the argument. </span></span></div>
<div><span><span
style="font-size:15px;font-family:Arial;color:rgb(0,0,0);background-color:transparent;vertical-align:baseline;white-space:pre-wrap"><br>
</span></span></div>
<div><span><span
style="font-size:15px;font-family:Arial;color:rgb(0,0,0);background-color:transparent;vertical-align:baseline;white-space:pre-wrap">If
the node wasn't needed I assume you would just have the
command: "6200ch". Would you need to put quotes around it?
</span></span></div>
<div><span><span
style="font-size:15px;font-family:Arial;color:rgb(0,0,0);background-color:transparent;vertical-align:baseline;white-space:pre-wrap"><br>
</span></span></div>
<div><span><span
style="font-size:15px;font-family:Arial;color:rgb(0,0,0);background-color:transparent;vertical-align:baseline;white-space:pre-wrap">Bottom
line, I'm looking for exactly what to put in this setup
entry and I can't remember from years ago (when I setup my
first backend) and I can't find an example. Thanks for the
help.</span></span></div>
</div>
<br>
</blockquote>
<br>
You could easily create a script to change the channel with that
extra argument. Create /usr/local/bin/change_channel with the
following contents:<br>
<br>
#!/bin/bash<br>
<path>/6200ch -n 0 -v $*<br>
<br>
Set permissions on it to make it executable: chmod 755
/usr/local/bin/change_channel<br>
<br>
And then setup mythtv to call /usr/local/bin/change_channel<br>
<br>
Michael<br>
<br>
</body>
</html>