我使用以下内容进行播放和录制
AudioRecorder recorder;
recorder.setOutputUrl(<file path...>);
recorder.record();
和
AudioPlayer player;
player.setInputUrl(...);
player.play();
如何在QML中显示tham的进度条?
答案 0 :(得分:0)
如果您使用MediaPlayer,您可以利用durationChanged()和positionChanged()信号来驱动ProgressBar。我无法在Cascades API中找到对AudioPlayer的任何引用。