SoundCite - 在线音频剪辑工具


MPL
跨平台
JavaScript

软件简介

音频是一个功能强大的功能,可以添加情感或上下文的故事。不幸的是音频剪辑非常不方便使得读或听不能两者兼得。而 SoundCite
是一个简单易用的工具,允许您添加内嵌音频来讲述你的故事。可以在你选择的文本上直接播放音频。

使用代码:

 Clip.prototype.track_progress = function() {
        var totalTime = this.end - this.start;
        var position = this.sound.position;
        var relative_position = position - this.start;
        var percentage = (relative_position / totalTime) * 100

        // change the css to customize your player

        $(this.el).css({
            'background' : '-webkit-linear-gradient(left, white, #ccc ' + percentage + '%, white)'
        });
    }