<html><head><style type="text/css"><!-- DIV {margin:0px;} --></style></head><body><div style="font-family:arial,helvetica,sans-serif;font-size:12pt"><div style="font-family: arial,helvetica,sans-serif; font-size: 12pt;">I'd look at your recording profiles to make sure the audio format is ok.&nbsp; I'm trying to recall but I may have seen this on a PVR-350 about 2 years ago and it was my default recording profile that had some strange audio setting.&nbsp; I'm not at home right now so I can't really tell exactly where to look.<br><br><br><br><div style="font-family: times new roman,new york,times,serif; font-size: 12pt;">----- Original Message ----<br>From: Lorenzo Mueller &lt;lorenzo.mueller@mail2web.com&gt;<br>To: Discussion about mythtv &lt;mythtv-users@mythtv.org&gt;<br>Sent: Tuesday, November 6, 2007 12:26:27 PM<br>Subject: Re: [mythtv-users] MythTV Hauppauge PVR-150 Recordings fromComposite are destorted<br><br>Nobody who can help me ?<br> <br>I do
 not want to install a windows media-center instead of mythtv, but
 when nobody can help me - I need to record upcoming shows....<br> <br>Hope someone can help me...<br><br>________________________________<br><br>From: <a ymailto="mailto:mythtv-users-bounces@mythtv.org" href="mailto:mythtv-users-bounces@mythtv.org">mythtv-users-bounces@mythtv.org</a> on behalf of Lorenzo Mueller<br>Sent: Sun 11/4/2007 12:48 PM<br>To: Discussion about mythtv<br>Subject: AW: [mythtv-users] MythTV Hauppauge PVR-150 Recordings
 fromComposite are destorted<br><br><br>Hi,<br> <br>Thx for your input, but it still does not work.<br> <br>As I have a new version of ivtv, the ivtvctl-command with your
 parameters does not work.<br>I used instead:<br>v4l2-ctl -a 0&nbsp; and<br>v4l2-ctl -a 1&nbsp; and<br>v4l2-ctl -a 2<br> <br>With input 0 i got the sound of the tuner.<br>With input 1 i got the distorted sound of the composite-input<br>With input 2 i heard nothing.<br> <br>I do not know if it is "distorted". It sounds like when I would record
 this with 11 kHz or so...<br> <br>when I did:<br> <br>cat /dev/video0 &gt; test.mpg<br> <br>The sound of the composite-input is OK. So I assume that it is
 something mythtv-related (Maybe a setting or so...)<br> <br>Hope go hear from someone a new "hint" or workaround or so...<br> <br>Thx in advance<br> <br>Cheers<br><br>________________________________<br><br>Von: <a ymailto="mailto:mythtv-users-bounces@mythtv.org" href="mailto:mythtv-users-bounces@mythtv.org">mythtv-users-bounces@mythtv.org</a> im Auftrag von Cool Frood<br>Gesendet: Sa 03.11.2007 14:39<br>An: Discussion about mythtv<br>Betreff: Re: [mythtv-users] MythTV Hauppauge PVR-150 Recordings
 fromComposite are destorted<br><br><br><br>On 11/2/07, Lorenzo Mueller &lt;<a ymailto="mailto:lorenzo.mueller@mail2web.com" href="mailto:lorenzo.mueller@mail2web.com">lorenzo.mueller@mail2web.com</a>&gt; wrote:<br>&gt;<br>&gt;<br>&gt; Hi all,<br>&gt;<br>&gt; I have a Hauppauge PVR-150. When I record from the build-in tuner,<br>&gt; everything works fine.<br>&gt; I have problems when I want to record shows from the composite-input.
 The<br>&gt; video is fine, but the sound is distorted and sounds really strange.<br>&gt;<br>&gt; It is very serious that when I watch LIVE-TV from the Composite, the
 sound<br>&gt; is OK. Also when I record from LIVE-TV (Press "r") the sound is OK.
 It is<br>&gt; only when I make a scheduled record.<br>&gt;<br>&gt; Maybe someone could help me, because I cannot explain why the sound
 is only<br>&gt; destorted from the composite-input at scheduled records.<br>&gt;<br>&gt; Thx in advance<br>&gt; _______________________________________________<br>&gt; mythtv-users mailing list<br>&gt; <a ymailto="mailto:mythtv-users@mythtv.org" href="mailto:mythtv-users@mythtv.org">mythtv-users@mythtv.org</a><br>&gt; <a href="http://mythtv.org/cgi-bin/mailman/listinfo/mythtv-users" target="_blank">http://mythtv.org/cgi-bin/mailman/listinfo/mythtv-users</a><br>&gt;<br>&gt;<br>I had this problem too back when I was using the composite input from<br>my cable box.&nbsp; Now I don't have a cable box anymore and I'm using the<br>tuner on the PVR-150 so I don't have this issue any more.&nbsp; I came<br>across this hack when I was trying to deal with the problem:<br><br>#!/bin/sh<br> # Some variables used to remember if the device is in use or not<br> record_video0=NO<br> # Loop forever<br> while true<br> do<br>&nbsp; &nbsp; # Is the video device in use
 ?<br>&nbsp; &nbsp; fuser /dev/video0 2&gt;/dev/null &gt;/dev/null<br>&nbsp; &nbsp; if [ $? -eq 0 ]<br>&nbsp; &nbsp; then<br>&nbsp; &nbsp; &nbsp;  # Something is using video device and this is the first time<br>we notice this<br>&nbsp; &nbsp; &nbsp;  if [ "$record_video0" = "NO" ]<br>&nbsp; &nbsp; &nbsp;  then<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; date<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; echo "&nbsp;  recording on video0"<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; sleep 5<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; /usr/local/bin/ivtvctl -d /dev/video0 -q 0<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; echo<br>&nbsp; &nbsp; &nbsp;  fi<br>&nbsp; &nbsp; &nbsp;  record_video0=YES<br>&nbsp; &nbsp; else<br>&nbsp; &nbsp; &nbsp;  # Not recording<br>&nbsp; &nbsp; &nbsp;  if [ "$record_video0" = "YES" ]<br>&nbsp; &nbsp; &nbsp;  then<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; date<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; echo "&nbsp;  not recording anymore on video0"<br>&nbsp; &nbsp;
 &nbsp; &nbsp; &nbsp; echo<br>&nbsp; &nbsp; &nbsp;  fi<br>&nbsp; &nbsp; &nbsp;  record_video0=NO<br>&nbsp; &nbsp; fi<br>&nbsp; &nbsp; sleep 1<br> done<br><br>I put this in a script called sound_fixer and started this in my<br>.xinitrc (or .xserverrc, I forget).&nbsp; You might have to play with the<br>"-q" value in the ivtvctl command to figure out which one works for<br>you.<br><br>Hope this helps,<br>Akshat<br>_______________________________________________<br>mythtv-users mailing list<br><a ymailto="mailto:mythtv-users@mythtv.org" href="mailto:mythtv-users@mythtv.org">mythtv-users@mythtv.org</a><br><a href="http://mythtv.org/cgi-bin/mailman/listinfo/mythtv-users" target="_blank">http://mythtv.org/cgi-bin/mailman/listinfo/mythtv-users</a><br><br><br></div><br></div></div><br>
      <p class="MsoNormal">&nbsp;</p>

  <tbody><tr>

    <td style="padding: 0.75pt;">

    <div class="MsoNormal" style="text-align: center;" align="center"><font face="Times New Roman" size="3"><span style="font-size: 12pt;">

    <hr align="center" size="1" width="100%">

    </span></font></div>

 

      <p class="MsoNormal"><font face="Times New Roman" size="3"><span style="font-size: 12pt;"><img id="_x0000_i1026" src="http://us.i1.yimg.com/us.yimg.com/i/ca/iotg_search.jpg" align="absbottom" border="0" height="25" hspace="4" width="25"><a href="http://ca.toolbar.yahoo.com/" target="_new"><b><span style="font-weight: bold;" lang="NO-BOK">Yahoo! 
        Canada Toolbar :</span></b><span lang="NO-BOK"> Search from anywhere on 
        the web and bookmark your favourite sites. Download it now! </span></a> 
        </span></font><span lang="NO-BOK"><o:p></o:p></span></p>



</body></html>