拉克样本计算 [英] Flac samples calculation

查看:180
本文介绍了拉克样本计算的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我从选管会cuesheet并在充分专辑FLAC文件。
我试着做一点python脚本播放文件,在那里我需要能够设置位置在后手文件来启动。

I have a cuesheet from EAC and a FLAC file with the full album in. Im trying to make a little python script to play the file, there for i need to be able to set the position where to start in the flac file.

我如何从CueSheet格式得到MM:SS:FF来样

How do i get from the CueSheet format MM:SS:FF to samples?

推荐答案

每个分钟含有60秒(明显);每秒包含75帧;每帧包含588样本。

Each minute contains 60 seconds (obviously); each second contains 75 frames; and each frame contains 588 samples.

所以计算将是这样的...

So the calculation would be something like this...

offset = ((((minutes * 60) + seconds) * 75) + frames) * 588

这篇关于拉克样本计算的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆