public void Stop() { SoundOutManager.Stop(); _panSource = null; _source = null; RaiseUpdated(); }
protected virtual void Dispose(bool disposing) { if (SoundOutManager.IsCreated) { SoundOutManager.Destroy(); } }
public bool OpenFile(string filename, Func <IWaveSource, IWaveSource> oninitcallback) { if (String.IsNullOrWhiteSpace(filename)) { throw new ArgumentException("filename"); } try { var source = CodecFactory.Instance.GetCodec(filename); source = new LoopStream(source); (source as LoopStream).EnableLoop = false; if (source.WaveFormat.Channels == 1) { source = new MonoToStereoSource(source).ToWaveSource(16); } _panSource = new PanSource(source) { Pan = this.Pan }; var _notification = new SimpleNotificationSource(_panSource); _notification.DataRead += OnNotification; source = _notification.ToWaveSource(16); //source = new BufferSource(source, source.WaveFormat.BytesPerSecond * 2); _source = source; if (oninitcallback != null) { SoundOutManager.Initialize(oninitcallback(source)); } else { SoundOutManager.Initialize(source); } } catch (Exception) { return(false); } RaiseUpdated(); return(true); }
public void Pause() { SoundOutManager.Pause(); }
public void Play() { SoundOutManager.Play(); }
public void SetupAudioPlayer(SoundOutType soundOutType) { SoundOutManager.CreateSoundOut(soundOutType); }