Install and create template.
- Browse to https://gstreamer.freedesktop.org/ > Downloads.
- Download and install both MinGW 64-bit runtime installer and development installer.
- In Visual Studio 2019, open \gstreamer\1.0\x86_64\share\vs\2010\gst-template\gst-template.vcxproj
- Project > Export Template.
Run example.
- Download https://gitlab.freedesktop.org/gstreamer/gst-docs/
- Expand tutorials folder.
- Open tutorials.sln.
- Set solution platform to x64.
- Solution Explorer > Solution ''tutorials' > basic-tutorial-1 > Properties
- Debugging > Working Directory: $(GSTREAMER_1_0_ROOT_X86_64)\bin
Note: To get the variable name, in cmd.exe, enter: set gstreamer
- Linker > Input > Ignore All Default Libraries > No (or delete setting)
- For Debug configuration, Ignore Specific Default Libraries: msvcrtd.lib
Note: The gstreamer libraries were apparently built with /MD and not /MDd.