📄 audioheader.java
字号:
package com.hadeslee.audiotag.audio;
/**
* Representation of AudioHeader
*
* <p>Contains info about the Audio Header
*/
public interface AudioHeader
{
/**
*
* @return the audio file type
*/
public abstract String getEncodingType();
/**
*
* @return the BitRate of the Audio
*/
public String getBitRate();
/**
*
* @return birate as a number
*/
public long getBitRateAsNumber();
/**
*
* @return the Sampling rate
*/
public String getSampleRate();
/**
*
* @return
*/
public int getSampleRateAsNumber();
/**
*
* @return the format
*/
public String getFormat();
/**
*
* @return the Channel Mode such as Stero or Mono
*/
public String getChannels();
/**
*
* @return if the bitrate is variable
*/
public boolean isVariableBitRate();
/**
*
* @return track length
*/
public int getTrackLength();
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -