<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
  <meta content="text/html;charset=ISO-8859-1" http-equiv="Content-Type">
</head>
<body bgcolor="#ffffff" text="#000000">
Robin Neatherway a &eacute;crit&nbsp;:
<blockquote
 cite="mide2d61c5a0705040756l2705e928l3db898d3aed6c404@mail.gmail.com"
 type="cite">
  <pre wrap="">On 5/4/07, wad <a class="moz-txt-link-rfc2396E" href="mailto:wadcyr8_197@hotmail.com">&lt;wadcyr8_197@hotmail.com&gt;</a> wrote:
  </pre>
  <blockquote type="cite">
    <pre wrap="">Does anyone know how to use exectv to replace the  action
"TV_WATCH_LIVE" by vlc and watching liveTV with it instead of using the
internal player ?


For the moment I know how to lauch vlc  with exectv in the mainmenu.xml
file but I can't find the parameters to read the tv stream sent by the
backend.
    </pre>
  </blockquote>
  <pre wrap=""><!---->
The backend isn't sending any stream out, it is only marking the tuner
as "in use" and then replaces the three "%s" variables in your EXECTV
command with the three items pulled from the database (here is the
relevant code):

query.prepare("SELECT videodevice, audiodevice, "
                          "vbidevice "
                          "FROM capturecard "
                          "WHERE cardid = :CARDID ;");


So your command needs to know what to do with these pieces of
information, which of course may vary wildly from tuner to tuner.

Robin
_______________________________________________
mythtv-users mailing list
<a class="moz-txt-link-abbreviated" href="mailto:mythtv-users@mythtv.org">mythtv-users@mythtv.org</a>
<a class="moz-txt-link-freetext" href="http://mythtv.org/cgi-bin/mailman/listinfo/mythtv-users">http://mythtv.org/cgi-bin/mailman/listinfo/mythtv-users</a>



  </pre>
</blockquote>
So I reformulate my question : How can I use these pieces of
information with vlc ?<br>
Usually with vlc, I use : vlc
dvb-t://adapter=0:bandwith=8:frequency=490000000<br>
I think I can replace "adapter=0" by "adapter=%s" but I don't know for
the other parameters<br>
<br>
On the other hand, you said the backend isn't sending any stream out,
so how does it work when the frontend is on a different computer
without any tuner ? The stream should pass through the network,
shouldn't it ?<br>
<br>
Wad<br>
</body>
</html>