Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个来自 EAC 的 cuesheet 和一个包含完整专辑的 FLAC 文件。我正在尝试制作一个小 Python 脚本来播放该文件,因为我需要能够设置在 flac 文件中开始的位置。
如何从 CueSheet 格式 MM:SS:FF 获取样本?
每分钟包含 60 秒(显然);每秒包含 75 帧;每帧包含 588 个样本。
所以计算将是这样的......
offset = ((((minutes * 60) + seconds) * 75) + frames) * 588