<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Creating Wav Sounds at user informed frequencies in Intel® Fortran Compiler</title>
    <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Creating-Wav-Sounds-at-user-informed-frequencies/m-p/808913#M41733</link>
    <description>Hello all,&lt;BR /&gt;&lt;BR /&gt;       I would like to know if you know the source code to create in fortran .wav sounds at user informed frequencies?&lt;BR /&gt;&lt;BR /&gt;thanks&lt;BR /&gt;ivomar</description>
    <pubDate>Sat, 03 May 2003 17:57:40 GMT</pubDate>
    <dc:creator>ivomar</dc:creator>
    <dc:date>2003-05-03T17:57:40Z</dc:date>
    <item>
      <title>Creating Wav Sounds at user informed frequencies</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Creating-Wav-Sounds-at-user-informed-frequencies/m-p/808913#M41733</link>
      <description>Hello all,&lt;BR /&gt;&lt;BR /&gt;       I would like to know if you know the source code to create in fortran .wav sounds at user informed frequencies?&lt;BR /&gt;&lt;BR /&gt;thanks&lt;BR /&gt;ivomar</description>
      <pubDate>Sat, 03 May 2003 17:57:40 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/Creating-Wav-Sounds-at-user-informed-frequencies/m-p/808913#M41733</guid>
      <dc:creator>ivomar</dc:creator>
      <dc:date>2003-05-03T17:57:40Z</dc:date>
    </item>
    <item>
      <title>Re: Creating Wav Sounds at user informed frequencies</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Creating-Wav-Sounds-at-user-informed-frequencies/m-p/808914#M41734</link>
      <description>You are going to need to be more specific with your question.  Do you mean create a .wav file programmatically, produce a sound programmatically, or produce a sound from a pre-existing .wav file?&lt;BR /&gt;&lt;BR /&gt;James</description>
      <pubDate>Wed, 07 May 2003 00:38:23 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/Creating-Wav-Sounds-at-user-informed-frequencies/m-p/808914#M41734</guid>
      <dc:creator>james1</dc:creator>
      <dc:date>2003-05-07T00:38:23Z</dc:date>
    </item>
    <item>
      <title>Re: Creating Wav Sounds at user informed frequencies</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Creating-Wav-Sounds-at-user-informed-frequencies/m-p/808915#M41735</link>
      <description>Yeah, I want to create programmaticaly (source code) that generates .wav files. I want to generate a .wav file with a beep where you can specify its frequency and duration to be played in other programs. Aren't there any modules in Fortran that already perform this task?&lt;BR /&gt;&lt;BR /&gt;Greetings,&lt;BR /&gt;Ivomar</description>
      <pubDate>Fri, 09 May 2003 00:01:07 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/Creating-Wav-Sounds-at-user-informed-frequencies/m-p/808915#M41735</guid>
      <dc:creator>ivomar</dc:creator>
      <dc:date>2003-05-09T00:01:07Z</dc:date>
    </item>
    <item>
      <title>Re: Creating Wav Sounds at user informed frequencies</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Creating-Wav-Sounds-at-user-informed-frequencies/m-p/808916#M41736</link>
      <description>Yeah, I want to create programmaticaly (source code) that generates .wav files. I want to generate a .wav file with a beep where you can specify its frequency and duration to be played in other programs. Aren't there any modules in Fortran that already perform this task?&lt;BR /&gt;&lt;BR /&gt;Greetings,&lt;BR /&gt;Ivomar</description>
      <pubDate>Fri, 09 May 2003 00:03:15 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/Creating-Wav-Sounds-at-user-informed-frequencies/m-p/808916#M41736</guid>
      <dc:creator>ivomar</dc:creator>
      <dc:date>2003-05-09T00:03:15Z</dc:date>
    </item>
    <item>
      <title>Re: Creating Wav Sounds at user informed frequencies</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Creating-Wav-Sounds-at-user-informed-frequencies/m-p/808917#M41737</link>
      <description>&amp;gt;...&lt;BR /&gt;&amp;gt;I want to generate a .wav file with a beep where you can specify its frequency and duration to be played in other programs. &lt;BR /&gt;&lt;BR /&gt;Why don't you use the WinAPI function&lt;BR /&gt;BOOL Beep(&lt;BR /&gt;  DWORD dwFreq,      // sound frequency, in hertz&lt;BR /&gt;  DWORD dwDuration   // sound duration, in milliseconds&lt;BR /&gt;);&lt;BR /&gt;for this purpose. It's simple to call from within CVF. For example:&lt;BR /&gt;&lt;BR /&gt;USE DFWINTY&lt;BR /&gt;USE KERNEL32&lt;BR /&gt;&lt;BR /&gt;INTEGER (DWORD)  dwFreq, dwDuration&lt;BR /&gt;INTEGER iRet  &lt;BR /&gt;&lt;BR /&gt;dwFreq = 200      ! Hz&lt;BR /&gt;dwDuration = 1000 ! ms&lt;BR /&gt;iRet = Beep(dwFreq, dwDuration)&lt;BR /&gt;&lt;BR /&gt;Joerg Kuthe&lt;BR /&gt;&lt;A href="https://community.intel.com/www.qtsoftware.de" target="_blank"&gt;www.qtsoftware.de&lt;/A&gt;&lt;BR /&gt;</description>
      <pubDate>Wed, 14 May 2003 15:55:51 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/Creating-Wav-Sounds-at-user-informed-frequencies/m-p/808917#M41737</guid>
      <dc:creator>joergkuthe</dc:creator>
      <dc:date>2003-05-14T15:55:51Z</dc:date>
    </item>
  </channel>
</rss>

