在线音频剪辑工具 SoundCite

码农软件 · 软件分类 · 多媒体处理 · 2019-09-13 17:29:48

软件介绍

音频是一个功能强大的功能,可以添加情感或上下文的故事。不幸的是音频剪辑非常不方便使得读或听不能两者兼得。而 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)'
        });
    }

本文地址:https://codercto.com/soft/d/14522.html

Web软件用户界面设计指南

Web软件用户界面设计指南

林锐、唐勇、石志强 / 电子工业出版社 / 2005-5-1 / 20.00元

Web软件用户界面设计指南,ISBN:9787121010163,作者:林锐等编著一起来看看 《Web软件用户界面设计指南》 这本书的介绍吧!

Base64 编码/解码
Base64 编码/解码

Base64 编码/解码

html转js在线工具
html转js在线工具

html转js在线工具

RGB HSV 转换
RGB HSV 转换

RGB HSV 互转工具