C# Class javazoom.jl.converter.Converter

The Converter class implements the conversion of an MPEG audio file to a .WAV file. To convert an MPEG audio stream, just create an instance of this class and call the {@link convert() convert()} method, passing in the names of the input and output files. You can pass in optional ProgressListener and Decoder.Params objects also to customize the conversion. *
Afficher le fichier Open project: RHY3756547/FreeSO Class Usage Examples

Méthodes publiques

Méthode Description
Converter ( ) : System

Creates a new converter instance.

convert ( System sourceName, System destName ) : void
convert ( System sourceName, System destName, ProgressListener progressListener ) : void
convert ( System sourceName, System destName, ProgressListener progressListener, Decoder decoderParams ) : void

Méthodes protégées

Méthode Description
countFrames ( System in_Renamed ) : int
openInput ( System fileName ) : System.IO.Stream

Method Details

Converter() public méthode

Creates a new converter instance.
public Converter ( ) : System
Résultat System

convert() public méthode

public convert ( System sourceName, System destName ) : void
sourceName System
destName System
Résultat void

convert() public méthode

public convert ( System sourceName, System destName, ProgressListener progressListener ) : void
sourceName System
destName System
progressListener ProgressListener
Résultat void

convert() public méthode

public convert ( System sourceName, System destName, ProgressListener progressListener, Decoder decoderParams ) : void
sourceName System
destName System
progressListener ProgressListener
decoderParams javazoom.jl.decoder.Decoder
Résultat void

countFrames() protected méthode

protected countFrames ( System in_Renamed ) : int
in_Renamed System
Résultat int

openInput() protected méthode

protected openInput ( System fileName ) : System.IO.Stream
fileName System
Résultat System.IO.Stream