-
Notifications
You must be signed in to change notification settings - Fork 238
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
9fe3f26
commit 5d5ca50
Showing
2 changed files
with
28 additions
and
0 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
::最简单的基于FFmpeg的推流器(推送RTMP)----命令行编译 | ||
::Simplest FFmpeg Streamer (Send RTMP)----Compile in Cmd | ||
:: | ||
::雷霄骅 Lei Xiaohua | ||
::leixiaohua1020@126.com | ||
::中国传媒大学/数字电视技术 | ||
::Communication University of China / Digital TV Technology | ||
::http://blog.csdn.net/leixiaohua1020 | ||
:: | ||
::include | ||
@set INCLUDE=include;%INCLUDE%; | ||
::lib | ||
@set LIB=lib;%LIB%; | ||
::compile and link | ||
cl simplest_ffmpeg_streamer.cpp /link avcodec.lib avformat.lib avutil.lib ^ | ||
avdevice.lib avfilter.lib postproc.lib swresample.lib swscale.lib /OPT:NOREF |
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,12 @@ | ||
#! /bin/sh | ||
#最简单的基于FFmpeg的推流器(推送RTMP)----命令行编译 | ||
#Simplest FFmpeg Streamer (Send RTMP)----Compile in Shell | ||
# | ||
#雷霄骅 Lei Xiaohua | ||
#leixiaohua1020@126.com | ||
#中国传媒大学/数字电视技术 | ||
#Communication University of China / Digital TV Technology | ||
#http://blog.csdn.net/leixiaohua1020 | ||
# | ||
#compile | ||
gcc simplest_ffmpeg_streamer.cpp -g -o simplest_ffmpeg_streamer.out -lavformat -lavcodec -lavutil |