小编Vij*_*van的帖子

在Swagger中,是否可以为Websockets创建API?

我不知道如何在swagger中为websockets创建文档.在Apairy中没有为Websockets创建API的选项.在Swagger,是否有可能创造手段请证明...谢谢

api websocket

8
推荐指数
1
解决办法
998
查看次数

在Actionscript中,音频录制文件已损坏

我使用Adobe Flash Builder 4.6/AIR从麦克风录制了语音样本,成功录制了语音.我首先在actionscript中将语音数据(字节数组)转换为base64格式,然后使用我的PHP代码将该base64数据转换为WAV文件.但是在RiffPad中WAV文件抛出文件已损坏.

RIFFPad是RIFF格式文件的查看器,如WAV,AVI.

预期的wav文件规范:

采样率:22KHZ

    // -- saves the current audio data as a .wav file
    protected function onSubmit( event:Event ):void {
        alertBox.show("Processing ... please wait.");

        stopPlayback();
        stopRecording();
        playBtn.enabled = recordBtn.enabled = submitBtn.enabled = false;
        var position:int = capture.buffer.position;
        var wavWriter:WAVWriter = new WAVWriter()
        var wavWriter1:WaveEncoder = new WaveEncoder()
        wavWriter.numOfChannels = 1;
        wavWriter.samplingRate = 22050;
        wavWriter.sampleBitRate = 16; 
        var wavBytes:ByteArray = new ByteArray;
        capture.buffer.position = 0;
        wavWriter.processSamples(wavBytes, capture.buffer, capture.microphone.rate * 1000, 1);
        Settings.alertBox3.show("RATE :"+capture.microphone.rate); //Here show RATE: …
Run Code Online (Sandbox Code Playgroud)

php apache-flex wav flex3 actionscript-3

5
推荐指数
1
解决办法
214
查看次数

How to merge audio and video using MediaMuxer?

I'm developing an Android App with mp3 audio file and mp4 video file with(no sound).

Now I want to mix them and create a new mp4 video file(with sound). From Android 4.3, Google suggests using the MediaMuxer class to mix stream audio and video. I have tried many times without success.

Here is the code:

    private void muxing() {

    String outputFile = "";

    try {

        File file = new File(Environment.getExternalStorageDirectory() + "/final2.mp4");
        file.createNewFile();
        outputFile = file.getAbsolutePath();
        MediaExtractor videoExtractor = new …
Run Code Online (Sandbox Code Playgroud)

audio video android ffmpeg

5
推荐指数
1
解决办法
2782
查看次数

javascript滚动效果在angularjs控制器中不起作用

HTML:

<div class="scroller-size">
    <div class="scroller scroller-left" style="padding-top: 25px;"><i class="glyphicon glyphicon-chevron-left"></i></div>
    <div class="scroller scroller-right" style="padding-top: 25px;"><i class="glyphicon glyphicon-chevron-right"></i></div>
    <div class="wrapper" style="height:73px;">
        <ul class="nav nav-tabs list" id="myTab">
                <li ng-repeat="pf in printlist"><img style="image-rendering: -webkit-optimize-contrast; image-rendering: optimizeQuality;" class="img-responsive pull-right" ng-src="{{pf.imagePath}}" ng-click="pf.selectFile = !pf.selectFile ;showCustom($event,pf)"></li>
        </ul>
    </div>
</div>
Run Code Online (Sandbox Code Playgroud)

使用Javascript:

var hidWidth;
var scrollBarWidths = 20;

var widthOfList = function () {
    var itemsWidth = 0;
    $('.list li').each(function () {
        var itemWidth = $(this).outerWidth();
        itemsWidth += itemWidth;
    });
    return itemsWidth;
};

var widthOfHidden = function () …
Run Code Online (Sandbox Code Playgroud)

html javascript css jquery angularjs

5
推荐指数
1
解决办法
179
查看次数