added installation instructions of vlc plugin

This commit is contained in:
Martin Eesmaa 2022-04-22 15:38:32 +10:00 committed by GitHub
parent 7d6cd5b918
commit 123bba687d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -0,0 +1,28 @@
# VLC Media Player (Inter Digital VLC VTM Decoder Plugin)
### Installation (Windows only)
To install Inter Digital VLC VTM Decoder Plugin, you need VLC Media Player latest version installed on your computer and supported 64-bit.
Step 1: Copy libvtmdec.dll and libvvcdecoder_plugin.dll into your VLC Media Player folder following folder: VLC/plugins/codec
C:\Program Files\VideoLAN\VLC\plugins\codec
Step 2: Copy libvvctsdemux_plugin.dll into your VLC Media Player folder following: VLC/plugins/demux
C:\Program Files\VideoLAN\VLC\plugins\demux
Step 3: Enjoy and play your h266 file into your VLC Media Player :).
### Alternative using command line:
Open Windows Terminal/Windows Command Prompt, make sure you do cd of C:/Users/(put your username)/Downloads/VVCEasy/INSTALLVLCPLUGIN/VLC
Copy code following:
```
copy libvtmdec.dll "%programfiles%\VideoLAN\VLC\plugins\codec"
copy libvvcdecoder_plugin.dll "%programfiles%\VideoLAN\VLC\plugins\codec"
copy libvvctsdemux_plugin.dll "%programfiles%\VideoLAN\VLC\plugins\demux"
```
- Martin Eesmaa