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.
我使用mlt框架将aac转换为flac文件,代码如下:'''
consumer.set("acodec", "flac"); consumer.set("ab","1030k"); consumer.set("ar",44100); consumer.set("channels",2);
''' 但是flac文件的时间是错误的。
我解决了这个问题。添加如下代码:
consumer.set("f","matroska");
并且输出文件的时间是正常的