The latest version (1.2) still crashes hard on me when using files
above 48k- bit depth does not seem to matter.
Using a mac, 10.5.6 and RB 2009r2
Anyone have a fix or an alternative to offer as I emailed the author
awhile back with no response.
Hello Tom,
I've used RealWaves and I was having reliability issues with it as
well. I replaced the section of code that gets the waveform data with
the MBS plugin's routines for getting sound data and this has cleaned
up my crashing problems.
In the GetWave function, I replaced all of the code with this:
Dim StartTime As Double
Dim Length As Double
Dim ChannelCount As Integer
Dim SampleSize As Integer
Dim Rate As Integer
Dim q As QTMovieExporterMBS
StartTime=0
Length=theMovie.DurationMBS
ChannelCount=1
SampleSize=8
Rate=44100
SoundMemoryBlock=theMovie.SoundRawDataMBS(StartTime, Length,
ChannelCount, SampleSize, Rate)
// If no sound data could be gotten, try to convert it with QT
Exporter
If SoundMemoryBlock=nil Then
q=New QTMovieExporterMBS
If q.OpenAIFFExporter Then
q.SetSoundFormat SampleSize, &hAC440000,
OSTypeFromStringMBS("NONE"), ChannelCount
SoundMemoryBlock=q.ExportToMemory(theMovie, StartTime,
Length*Rate)
End If
End If
ZoomSetting = 1
If SoundMemoryBlock<>nil Then
Return True
else
Return False
End If
Hope that helps,
Ron Benditt
Alien Apparatus Company, Inc.
http://www.alienapparatus.com
_______________________________________________
Unsubscribe or switch delivery mode:
<http://www.realsoftware.com/support/listmanager/>
Search the archives:
<http://support.realsoftware.com/listarchives/lists.html>
|