Required Installation Files
Posted: 01 Mar 2023 21:23
by gafman
I have created a project using LibVLCSharp and have added the LibVLC packages from NuGet. However, I only need the files necessary to support audio only streaming. I do not need the video codecs. What files can I remove to scale down the size of my installation package? What files are truely necessary?
Thanks.
Re: Required Installation Files
Posted: 02 Mar 2023 04:58
by mfkl
What files can I remove to scale down the size of my installation package? What files are truely necessary?
It depends on your use cases, which formats and network protocols and features your app will need. So only you can find out what's actually necessary.
So remove libs until things start breaking is the way to go.
Removing things:
https://code.videolan.org/videolan/libv ... picking.md
Example of light build with video support on windows:
https://github.com/mfkl/LibVLC.Windows.Light
Good luck.