You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
package com.frank.ffmpeg;
|
|
|
|
/**
|
|
* 使用FFmepg进行推流直播
|
|
* Created by frank on 2018/2/2.
|
|
*/
|
|
|
|
public class Pusher {
|
|
static {
|
|
System.loadLibrary("media-handle");
|
|
}
|
|
|
|
//选择本地文件推流到指定平台直播
|
|
public native int pushStream(String filePath, String liveUrl);
|
|
|
|
}
|
|
|