StreamingPluginWiiU/README.md

47 lines
2.4 KiB
Markdown
Raw Normal View History

2018-07-03 20:23:12 +02:00
# ScreenStreaming for the Wii U [![Build Status](https://api.travis-ci.org/Maschell/StreamingPluginWiiU.svg?branch=master)](https://travis-ci.org/Maschell/StreamingPluginWiiU)
2018-07-04 10:25:28 +02:00
## Still an early PROOF OF CONCEPT. DON'T EXPECT MAGIC.
2018-07-03 20:23:12 +02:00
This is just a simple plugin that allows you to stream the content of the DRC to any browser.
2018-07-04 10:25:28 +02:00
Currently no configuration without recompiling is supported. It streams in a resolution of 428x240 and tries to achieve 20 fps. These numbers might improve in the future.
2018-07-03 20:23:12 +02:00
But general notes:
2018-07-05 19:59:25 +02:00
- This is still an early PoC.
- Encoding is done in software, not hardware.
- It probably affects gameplay. Loading times are increased, games could lag. I wouldn't recommend you to play online.
2018-07-04 10:25:28 +02:00
- All settings are hardcoded. In the future it will (hopefully) be possible to choose the screen to stream (TV or DRC), at which resolution and which quality.
2018-07-03 20:23:12 +02:00
- No streaming of the home menu.
- Probably unstable.
2018-07-04 10:25:28 +02:00
- Some games might be too dark, some might be too bright, some doesn't work at all.
2018-07-03 20:23:12 +02:00
- Currently streaming is achieved via "MJPEG via HTTP", this might change in the future to improve performance.
# Usage
2018-07-05 19:59:25 +02:00
Simply load the plugin with the plugin loader. When the system menu is loaded, you can open `http://<ip of your ip>:8080` on your browser and should see the stream. Whenever you switch the application (e.g. load a game), you need to refresh the site in your browser.
2018-07-04 10:25:28 +02:00
Example when the IP of your Wii U is 192.168.0.44.
2018-07-03 20:23:12 +02:00
```
http:/192.168.0.44:8080
```
2018-07-04 10:25:28 +02:00
If you don't know the IP of your Wii U, you can start for example [ftpiiu](https://github.com/dimok789/ftpiiu) which shows the IP when running.
2018-07-03 20:23:12 +02:00
## Wii U Plugin System
This is a plugin for the [Wii U Plugin System (WUPS)](https://github.com/Maschell/WiiUPluginSystem/). To be able to use this plugin you have to place the resulting `.mod` file into the following folder:
```
sd:/wiiu/plugins
```
When the file is placed on the SDCard you can load it with [plugin loader](https://github.com/Maschell/WiiUPluginSystem/).
## Building
For building you need:
- [wups](https://github.com/Maschell/WiiUPluginSystem)
2018-07-13 19:18:05 +02:00
- [wut](https://github.com/decaf-emu/wut)
- [libutilswut](https://github.com/Maschell/libutils/tree/wut) (WUT version) for common functions.
2018-07-03 20:23:12 +02:00
2018-07-05 19:59:25 +02:00
Install them (in this order) according to their READMEs. Don't forget the dependencies of the libs itself.
2018-07-03 20:23:12 +02:00
Other external libraries are already located in the `libs` folder.
- libjpeg
2018-07-04 10:25:28 +02:00
- [libturbojpeg](https://libjpeg-turbo.org/)