forked from leixiaohua1020/simplest_ffmpeg_mobile
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
7ed5a35
commit 34fde78
Showing
7 changed files
with
51 additions
and
12 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
��Ļ���FFmpeg����Ƶ������-�� | ||
Simplest FFmpeg Android Decoder | ||
|
||
������ Lei Xiaohua | ||
[email protected] | ||
�й���ý��ѧ/���ֵ��Ӽ��� | ||
Communication University of China / Digital TV Technology | ||
http://blog.csdn.net/leixiaohua1020 | ||
|
||
�������ǰ�ƽ̨����Ļ���FFmpeg����Ƶ�������������Խ��������Ƶ���ݽ����YUV�������ݡ� | ||
|
||
This software is the simplest decoder based on FFmpeg in Android. It can decode video stream | ||
to raw YUV data. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
17 changes: 17 additions & 0 deletions
17
...t_ffmpeg_android_streamer/src/com/leixiaohua1020/sffmpegandroidstreamer/MainActivity.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,20 @@ | ||
/** | ||
* 最简单的基于FFmpeg的推流器(RTMP)-安卓 | ||
* Simplest FFmpeg Android Streamer (RTMP) | ||
* | ||
* 雷霄骅 Lei Xiaohua | ||
* [email protected] | ||
* 中国传媒大学/数字电视技术 | ||
* Communication University of China / Digital TV Technology | ||
* http://blog.csdn.net/leixiaohua1020 | ||
* | ||
* 本程序是安卓平台下最简单的基于FFmpeg的推流器。 | ||
* 它可以将视频文件以流媒体的形式推送到服务器。 | ||
* | ||
* This software is the simplest streamer based on FFmpeg in Android. | ||
* It can stream local media file to streaming media server (in RTMP). | ||
* | ||
*/ | ||
package com.leixiaohua1020.sffmpegandroidstreamer; | ||
|
||
import android.os.Bundle; | ||
|
Binary file modified
BIN
+0 Bytes
(100%)
...oid_transcoder/bin/classes/com/leixiaohua1020/sffmpegandroidtranscoder/MainActivity.class
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,17 +2,22 @@ | |
* 最简单的基于FFmpeg的转码器-安卓 | ||
* Simplest FFmpeg Android Transcoder | ||
* | ||
* 雷霄骅 Lei Xiaohua | ||
* 雷霄骅 Lei Xiaohua | ||
* [email protected] | ||
* 马小雨 Ma Xiaoyu | ||
* [email protected] | ||
* 中国传媒大学/数字电视技术 | ||
* Communication University of China / Digital TV Technology | ||
* http://blog.csdn.net/leixiaohua1020 | ||
* | ||
* | ||
* 本程序是安卓平台下的转码器。它移植于ffmpeg.c命令行工具。 | ||
* | ||
* This software is a Transcoder in Android. It is transplanted from ffmpeg.c | ||
* command line tools. | ||
* This software is a Transcoder in Android. | ||
* It is transplanted from ffmpeg.c command line tools. | ||
* | ||
*/ | ||
|
||
#include <string.h> | ||
#include <jni.h> | ||
#include <ffmpeg.h> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,17 +2,19 @@ | |
* 最简单的基于FFmpeg的转码器-安卓 | ||
* Simplest FFmpeg Android Transcoder | ||
* | ||
* 雷霄骅 Lei Xiaohua | ||
* 雷霄骅 Lei Xiaohua | ||
* [email protected] | ||
* 马小雨 Ma Xiaoyu | ||
* [email protected] | ||
* 中国传媒大学/数字电视技术 | ||
* Communication University of China / Digital TV Technology | ||
* http://blog.csdn.net/leixiaohua1020 | ||
* | ||
* | ||
* 本程序是安卓平台下的转码器。它移植于ffmpeg.c命令行工具。 | ||
* | ||
* This software is a Transcoder in Android. It is transplanted from ffmpeg.c | ||
* command line tools. | ||
* This software is a Transcoder in Android. | ||
* It is transplanted from ffmpeg.c command line tools. | ||
* | ||
*/ | ||
package com.leixiaohua1020.sffmpegandroidtranscoder; | ||
|