1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96
|
<?xml version="1.0" ?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>SWF::SoundStream - SWF Sound Stream class</title>
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
<link rev="made" href="mailto:feedback@suse.de" />
</head>
<body style="background-color: white">
<!-- INDEX BEGIN -->
<div name="index">
<p><a name="__index__"></a></p>
<ul>
<li><a href="#name">NAME</a></li>
<li><a href="#synopsis">SYNOPSIS</a></li>
<li><a href="#description">DESCRIPTION</a></li>
<li><a href="#methods">METHODS</a></li>
<li><a href="#author">AUTHOR</a></li>
<li><a href="#see_also">SEE ALSO</a></li>
</ul>
<hr name="index" />
</div>
<!-- INDEX END -->
<p>
</p>
<h1><a name="name">NAME</a></h1>
<p>SWF::SoundStream - SWF Sound Stream class</p>
<p>
</p>
<hr />
<h1><a name="synopsis">SYNOPSIS</a></h1>
<pre>
use SWF::SoundStream;
my $soundstream = new SWF::SoundStream("wau.mp3");
print $soundstream->getDuration();
## print $soundstream->getFrames(); # won't work until it belongs to movie
$movie->setSoundStream($soundstream);
print $soundstream->getFrames(); # but _now_ it is okay</pre>
<p>
</p>
<hr />
<h1><a name="description">DESCRIPTION</a></h1>
<p>SWF::SoundStream is a helper class useful for adding sound into SWF applications.</p>
<p>
</p>
<hr />
<h1><a name="methods">METHODS</a></h1>
<dl>
<dt><strong><a name="soundstream" class="item">$soundstream = new SWF::SoundStream($filename)</a></strong>
<dd>
<p>Creates a SWF::SoundStream object. If the file can't be opened the
constructor will return an undef value of course. The filename is
the valid name of any mp3 or flv file.</p>
</dd>
</li>
<dt><strong><a name="getduration" class="item">$dura = $soundstream-><code>getDuration()</code></a></strong>
<dd>
<p>This function returns the duration of a given stream in ms.
Works for streams of mp3, flv types only. On other cases it returns 0.</p>
</dd>
</li>
<dt><strong><a name="getframes" class="item">$frames = $soundstream-><code>getFrames()</code></a></strong>
<dd>
<p>The number of movie frames for a given sound stream. This function returns the
number of movie frames necessary to play the full sound stream. For this reason
it works only if the sound stream object was added to a movie.
It works for streams of mp3 -files only.</p>
</dd>
</li>
</dl>
<p>
</p>
<hr />
<h1><a name="author">AUTHOR</a></h1>
<pre>
developers of ming.sourceforge.net, Albrecht Kleine</pre>
<p>
</p>
<hr />
<h1><a name="see_also">SEE ALSO</a></h1>
<p>SWF, SWF:: Movie, SWF::MovieClip, SWF::Button, SWF::Sound, SWF::SoundInstance, SWF::Constants,
SWF::Videostream</p>
</body>
</html>
|