forked from https://github.com/libretro/libretro-mpv, updated to support basic txt playlists and mpv config file
Go to file
Yessiest 45f43776a4 Update 'README.md' 2023-05-19 23:44:45 +00:00
libretro-common libretro-common: update 2018-05-23 09:16:34 +01:00
.editorconfig Minor code style change 2018-01-08 20:02:04 +00:00
.gitignore Add tags to gitignore 2018-01-07 23:58:17 +00:00
LICENSE Create LICENSE 2018-01-08 00:56:02 +00:00
Makefile Added playlists and config loading 2023-05-20 03:37:57 +04:00
README.md Update 'README.md' 2023-05-19 23:44:45 +00:00
link.T Working example 2017-12-10 22:35:47 +00:00
mpv-libretro.c Added playlists and config loading 2023-05-20 03:37:57 +04:00
mpv_libretro.info Added playlists and config loading 2023-05-20 03:37:57 +04:00
version.h Bump version 2018-01-08 19:31:54 +00:00

README.md

About the fork

This is a forked version of mpv libretro core. Since the original doesn't quite support any playlist formats in the info file, and doesn't actually load .txt files as playlists (it tries to load everything as a media type), this fork has been devised to fix that. Additionally it supports configuration parameters in XDG_CONFIG_HOME/mpv/ by default, and disabled hardware rendering by default for stability (as at least in my experience hardware accelerated decoding often crashes the pi, while software rendering works fine with crt resolution)

libretro-mpv

mpv media player as a libretro core. A proof of concept release is now available.

Aims to use features already established in mpv that are not currently available in Retroarch movieplayer.

I want to be able to use Retroarch as my movie player on my embedded devices (Raspberry Pi) and desktop using hardware acceleration without having to use Kodi or mpv directly. Thus allowing for a more integrated experience, and smaller root filesystem.

Compiling

Retroarch must be compiled with --disable-ffmpeg to stop the integrated movieplayer from playing the input file.

FFmpeg (preferably master branch) must be compiled with --enable-shared.

mpv must be compiled with --enable-libmpv-shared.

Then run make in the mpv-libretro folder.