本文整理汇总了Java中net.sourceforge.subsonic.io.TranscodeInputStream类的典型用法代码示例。如果您正苦于以下问题:Java TranscodeInputStream类的具体用法?Java TranscodeInputStream怎么用?Java TranscodeInputStream使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
TranscodeInputStream类属于net.sourceforge.subsonic.io包,在下文中一共展示了TranscodeInputStream类的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: createTranscodedInputStream
import net.sourceforge.subsonic.io.TranscodeInputStream; //导入依赖的package包/类
/**
* Returns an input stream by applying the given transcoding to the given music file.
*
* @param parameters Transcoding parameters.
* @return The transcoded input stream.
* @throws IOException If an I/O error occurs.
*/
private InputStream createTranscodedInputStream(Parameters parameters)
throws IOException {
Transcoding transcoding = parameters.getTranscoding();
Integer maxBitRate = parameters.getMaxBitRate();
VideoTranscodingSettings videoTranscodingSettings = parameters.getVideoTranscodingSettings();
MediaFile mediaFile = parameters.getMediaFile();
TranscodeInputStream in = createTranscodeInputStream(transcoding.getStep1(), maxBitRate, videoTranscodingSettings, mediaFile, null);
if (transcoding.getStep2() != null) {
in = createTranscodeInputStream(transcoding.getStep2(), maxBitRate, videoTranscodingSettings, mediaFile, in);
}
if (transcoding.getStep3() != null) {
in = createTranscodeInputStream(transcoding.getStep3(), maxBitRate, videoTranscodingSettings, mediaFile, in);
}
return in;
}