欢迎来到传世资源网!
加载中...
正在加载,请耐心等待...
本站为收藏、学习站,如有侵权,请联系管理员删除!

ffmpeg底层代码播放

介绍 评论 失效链接反馈

ffmpeg底层代码播放from clipboard pulldemo├── Fleck
│   ├── ConnectionNotAvailableException.cs
│   ├── Fleck.csproj
│   ├── FleckLog.cs
│   ├── FrameType.cs
│   ├── HandlerFactory.cs
│   ├── Handlers
│   │   ├── ComposableHandler.cs
│   │   ├── Draft76Handler.cs
│   │   ├── FlashSocketPolicyRequestHandler.cs
│   │   └── Hybi13Handler.cs
│   ├── Helpers
│   │   └── FleckRuntime.cs
│   ├── IntExtensions.cs
│   ├── Interfaces
│   │   ├── IHandler.cs
│   │   ├── ISocket.cs
│   │   ├── IWebSocketConnection.cs
│   │   ├── IWebSocketConnectionInfo.cs
│   │   └── IWebSocketServer.cs
│   ├── QueuedStream.cs
│   ├── ReadState.cs
│   ├── RequestParser.cs
│   ├── SocketWrapper.cs
│   ├── SubProtocolNegotiationFailureException.cs
│   ├── SubProtocolNegotiator.cs
│   ├── WebSocketConnection.cs
│   ├── WebSocketConnectionInfo.cs
│   ├── WebSocketException.cs
│   ├── WebSocketHttpRequest.cs
│   ├── WebSocketServer.cs
│   ├── WebSocketStatusCodes.cs
│   ├── bin
│   │   └── Debug
│   │       ├── net40
│   │       │   ├── Fleck.dll
│   │       │   └── Fleck.pdb
│   │       ├── net45
│   │       │   ├── Fleck.dll
│   │       │   └── Fleck.pdb
│   │       ├── netcoreapp2.0
│   │       │   ├── Fleck.deps.json
│   │       │   ├── Fleck.dll
│   │       │   └── Fleck.pdb
│   │       └── netstandard2.0
│   │           ├── Fleck.deps.json
│   │           ├── Fleck.dll
│   │           └── Fleck.pdb
│   └── obj
│       ├── Debug
│       │   ├── net40
│       │   │   ├── Fleck.AssemblyInfo.cs
│       │   │   ├── Fleck.AssemblyInfoInputs.cache
│       │   │   ├── Fleck.assets.cache
│       │   │   ├── Fleck.csproj.CoreCompileInputs.cache
│       │   │   ├── Fleck.csproj.FileListAbsolute.txt
│       │   │   ├── Fleck.csprojAssemblyReference.cache
│       │   │   ├── Fleck.dll
│       │   │   └── Fleck.pdb
│       │   ├── net45
│       │   │   ├── Fleck.AssemblyInfo.cs
│       │   │   ├── Fleck.AssemblyInfoInputs.cache
│       │   │   ├── Fleck.assets.cache
│       │   │   ├── Fleck.csproj.CoreCompileInputs.cache
│       │   │   ├── Fleck.csproj.FileListAbsolute.txt
│       │   │   ├── Fleck.csprojAssemblyReference.cache
│       │   │   ├── Fleck.dll
│       │   │   └── Fleck.pdb
│       │   ├── netcoreapp2.0
│       │   │   ├── Fleck.AssemblyInfo.cs
│       │   │   ├── Fleck.AssemblyInfoInputs.cache
│       │   │   ├── Fleck.assets.cache
│       │   │   ├── Fleck.csproj.CoreCompileInputs.cache
│       │   │   ├── Fleck.csproj.FileListAbsolute.txt
│       │   │   ├── Fleck.csprojAssemblyReference.cache
│       │   │   ├── Fleck.dll
│       │   │   └── Fleck.pdb
│       │   └── netstandard2.0
│       │       ├── Fleck.AssemblyInfo.cs
│       │       ├── Fleck.AssemblyInfoInputs.cache
│       │       ├── Fleck.assets.cache
│       │       ├── Fleck.csproj.CoreCompileInputs.cache
│       │       ├── Fleck.csproj.FileListAbsolute.txt
│       │       ├── Fleck.csprojAssemblyReference.cache
│       │       ├── Fleck.dll
│       │       └── Fleck.pdb
│       ├── Fleck.csproj.nuget.dgspec.json
│       ├── Fleck.csproj.nuget.g.props
│       ├── Fleck.csproj.nuget.g.targets
│       ├── project.assets.json
│       └── project.nuget.cache
├── VideoPro
│   ├── App.config
│   ├── FFmpegBinariesHelper.cs
│   ├── FFmpegHelper.cs
│   ├── Form1.Designer.cs
│   ├── Form1.cs
│   ├── Form1.resx
│   ├── H264VideoStreamEncoder.cs
│   ├── Model
│   │   ├── GdiPlay.cs
│   │   ├── GdiPlay.designer.cs
│   │   └── GdiPlay.resx
│   ├── Program.cs
│   ├── Properties
│   │   ├── AssemblyInfo.cs
│   │   ├── Resources.Designer.cs
│   │   ├── Resources.resx
│   │   ├── Settings.Designer.cs
│   │   └── Settings.settings
│   ├── VideoConverter.cs
│   ├── VideoFrameConverter.cs
│   ├── VideoPro.csproj
│   ├── VideoPro.csproj.user
│   ├── VideoStreamDecoder.cs
│   ├── bin
│   │   ├── Debug
│   │   │   ├── FFmpeg.AutoGen.dll
│   │   │   ├── FFmpeg.AutoGen.xml
│   │   │   ├── Fleck.dll
│   │   │   ├── Fleck.pdb
│   │   │   ├── VideoPro.exe
│   │   │   ├── VideoPro.exe.config
│   │   │   ├── VideoPro.pdb
│   │   │   ├── avcodec-58.dll
│   │   │   ├── avdevice-58.dll
│   │   │   ├── avfilter-7.dll
│   │   │   ├── avformat-58.dll
│   │   │   ├── avutil-56.dll
│   │   │   ├── postproc-55.dll
│   │   │   ├── swresample-3.dll
│   │   │   └── swscale-5.dll
│   │   └── Release
│   ├── obj
│   │   ├── Debug
│   │   │   ├── DesignTimeResolveAssemblyReferences.cache
│   │   │   ├── DesignTimeResolveAssemblyReferencesInput.cache
│   │   │   ├── TempPE
│   │   │   ├── TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs
│   │   │   ├── TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs
│   │   │   ├── TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs
│   │   │   ├── VideoPro.Form1.resources
│   │   │   ├── VideoPro.Properties.Resources.resources
│   │   │   ├── VideoPro.csproj.CopyComplete
│   │   │   ├── VideoPro.csproj.CoreCompileInputs.cache
│   │   │   ├── VideoPro.csproj.FileListAbsolute.txt
│   │   │   ├── VideoPro.csproj.GenerateResource.cache
│   │   │   ├── VideoPro.csprojAssemblyReference.cache
│   │   │   ├── VideoPro.exe
│   │   │   └── VideoPro.pdb
│   │   └── Release
│   └── packages.config
├── packages
│   └── FFmpeg.AutoGen.4.0.0.2
│       ├── FFmpeg.AutoGen.4.0.0.2.nupkg
│       └── lib
│           ├── net45
│           │   ├── FFmpeg.AutoGen.dll
│           │   └── FFmpeg.AutoGen.xml
│           └── netstandard2.0
│               ├── FFmpeg.AutoGen.dll
│               └── FFmpeg.AutoGen.xml
└── pulldemo.sln

31 directories, 132 files

下载声明:

本站资源均有第三方用户自行上传分享推荐,非本站自制,仅供玩家做交流学习之用!切勿用于商业用途!游戏作品版权归原作者享有,如有版权问题,请附带版权证明至邮件,本平台将应您的要求删除。
相关推荐:

评论

发表评论必须先登陆, 您可以 登陆 或者 注册新账号 !


在线咨询: 问题反馈
客服QQ:174666394

有问题请留言,看到后及时答复