嘿,亲!知识可是无价之宝呢,但咱这精心整理的资料也耗费了不少心血呀。小小地破费一下,绝对物超所值哦!如有下载和支付问题,请联系我们QQ(微信同号):813200300
本次赞助数额为: 2 元微信扫码支付:2 元
请留下您的邮箱,我们将在2小时内将文件发到您的邮箱
FFmpeg.AutoGen代码例子
.
└── CSharpVideoDemo
├── FFmpeg
│ ├── bin
│ │ ├── x64
│ │ │ ├── avcodec-57.dll
│ │ │ ├── avdevice-57.dll
│ │ │ ├── avfilter-6.dll
│ │ │ ├── avformat-57.dll
│ │ │ ├── avutil-55.dll
│ │ │ ├── postproc-54.dll
│ │ │ ├── swresample-2.dll
│ │ │ └── swscale-4.dll
│ │ └── x86
│ │ ├── avcodec-57.dll
│ │ ├── avdevice-57.dll
│ │ ├── avfilter-6.dll
│ │ ├── avformat-57.dll
│ │ ├── avutil-55.dll
│ │ ├── ffmpeg.exe
│ │ ├── ffplay.exe
│ │ ├── ffprobe.exe
│ │ ├── postproc-54.dll
│ │ ├── swresample-2.dll
│ │ └── swscale-4.dll
│ └── include
│ ├── libavcodec
│ │ ├── avcodec.h
│ │ ├── avdct.h
│ │ ├── avfft.h
│ │ ├── d3d11va.h
│ │ ├── dirac.h
│ │ ├── dv_profile.h
│ │ ├── dxva2.h
│ │ ├── jni.h
│ │ ├── mediacodec.h
│ │ ├── qsv.h
│ │ ├── vaapi.h
│ │ ├── vda.h
│ │ ├── vdpau.h
│ │ ├── version.h
│ │ ├── videotoolbox.h
│ │ ├── vorbis_parser.h
│ │ └── xvmc.h
│ ├── libavdevice
│ │ ├── avdevice.h
│ │ └── version.h
│ ├── libavfilter
│ │ ├── avfilter.h
│ │ ├── avfiltergraph.h
│ │ ├── buffersink.h
│ │ ├── buffersrc.h
│ │ └── version.h
│ ├── libavformat
│ │ ├── avformat.h
│ │ ├── avio.h
│ │ └── version.h
│ ├── libavutil
│ │ ├── adler32.h
│ │ ├── aes.h
│ │ ├── aes_ctr.h
│ │ ├── attributes.h
│ │ ├── audio_fifo.h
│ │ ├── avassert.h
│ │ ├── avconfig.h
│ │ ├── avstring.h
│ │ ├── avutil.h
│ │ ├── base64.h
│ │ ├── blowfish.h
│ │ ├── bprint.h
│ │ ├── bswap.h
│ │ ├── buffer.h
│ │ ├── camellia.h
│ │ ├── cast5.h
│ │ ├── channel_layout.h
│ │ ├── common.h
│ │ ├── cpu.h
│ │ ├── crc.h
│ │ ├── des.h
│ │ ├── dict.h
│ │ ├── display.h
│ │ ├── downmix_info.h
│ │ ├── error.h
│ │ ├── eval.h
│ │ ├── ffversion.h
│ │ ├── fifo.h
│ │ ├── file.h
│ │ ├── frame.h
│ │ ├── hash.h
│ │ ├── hmac.h
│ │ ├── hwcontext.h
│ │ ├── hwcontext_cuda.h
│ │ ├── hwcontext_d3d11va.h
│ │ ├── hwcontext_drm.h
│ │ ├── hwcontext_dxva2.h
│ │ ├── hwcontext_qsv.h
│ │ ├── hwcontext_vaapi.h
│ │ ├── hwcontext_vdpau.h
│ │ ├── hwcontext_videotoolbox.h
│ │ ├── imgutils.h
│ │ ├── intfloat.h
│ │ ├── intreadwrite.h
│ │ ├── lfg.h
│ │ ├── log.h
│ │ ├── lzo.h
│ │ ├── macros.h
│ │ ├── mastering_display_metadata.h
│ │ ├── mathematics.h
│ │ ├── md5.h
│ │ ├── mem.h
│ │ ├── motion_vector.h
│ │ ├── murmur3.h
│ │ ├── opt.h
│ │ ├── parseutils.h
│ │ ├── pixdesc.h
│ │ ├── pixelutils.h
│ │ ├── pixfmt.h
│ │ ├── random_seed.h
│ │ ├── rational.h
│ │ ├── rc4.h
│ │ ├── replaygain.h
│ │ ├── ripemd.h
│ │ ├── samplefmt.h
│ │ ├── sha.h
│ │ ├── sha512.h
│ │ ├── spherical.h
│ │ ├── stereo3d.h
│ │ ├── tea.h
│ │ ├── threadmessage.h
│ │ ├── time.h
│ │ ├── timecode.h
│ │ ├── timestamp.h
│ │ ├── tree.h
│ │ ├── twofish.h
│ │ ├── version.h
│ │ └── xtea.h
│ ├── libpostproc
│ │ ├── postprocess.h
│ │ └── version.h
│ ├── libswresample
│ │ ├── swresample.h
│ │ └── version.h
│ └── libswscale
│ ├── swscale.h
│ └── version.h
├── FFmpegDemo
│ ├── App.config
│ ├── FFmpegBinariesHelper.cs
│ ├── FFmpegDemo.csproj
│ ├── Program.cs
│ ├── Properties
│ │ ├── AssemblyInfo.cs
│ │ ├── Resources.Designer.cs
│ │ ├── Resources.resx
│ │ ├── Settings.Designer.cs
│ │ └── Settings.settings
│ ├── bin
│ │ └── Debug
│ │ ├── FFmpeg.AutoGen.dll
│ │ ├── FFmpeg.AutoGen.xml
│ │ ├── FFmpegDemo.exe
│ │ ├── FFmpegDemo.exe.config
│ │ └── FFmpegDemo.pdb
│ ├── frmPlayer.Designer.cs
│ ├── frmPlayer.cs
│ ├── frmPlayer.resx
│ ├── obj
│ │ └── Debug
│ │ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ │ ├── FFmpegDemo.Properties.Resources.resources
│ │ ├── FFmpegDemo.csproj.AssemblyReference.cache
│ │ ├── FFmpegDemo.csproj.CopyComplete
│ │ ├── FFmpegDemo.csproj.CoreCompileInputs.cache
│ │ ├── FFmpegDemo.csproj.FileListAbsolute.txt
│ │ ├── FFmpegDemo.csproj.GenerateResource.cache
│ │ ├── FFmpegDemo.exe
│ │ ├── FFmpegDemo.frmPlayer.resources
│ │ ├── FFmpegDemo.pdb
│ │ └── TempPE
│ ├── packages.config
│ └── tstRtmp.cs
├── FFmpegDemo.sln
├── README.md
└── packages
└── FFmpeg.AutoGen.3.4.0.5
├── FFmpeg.AutoGen.3.4.0.5.nupkg
└── lib
├── net45
│ ├── FFmpeg.AutoGen.dll
│ └── FFmpeg.AutoGen.xml
└── netstandard2.0
├── FFmpeg.AutoGen.dll
└── FFmpeg.AutoGen.xml
26 directories, 166 files