https://github.com/dig/item-frame-video
Bukkit util for playing youtube videos on item frames.
https://github.com/dig/item-frame-video
Last synced: 8 months ago
JSON representation
Bukkit util for playing youtube videos on item frames.
- Host: GitHub
- URL: https://github.com/dig/item-frame-video
- Owner: dig
- License: mit
- Created: 2020-11-01T01:37:58.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2020-11-16T01:29:48.000Z (over 5 years ago)
- Last Synced: 2025-10-12T06:37:01.548Z (9 months ago)
- Language: Java
- Homepage:
- Size: 112 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# item-frame-video
Bukkit util for playing videos on item frames, uses ffmpeg for decoding videos. I found that playing videos on item frames just isn't doable for large networks, this should be used for personal use only due to network constraints.
### Example
```java
ItemFramePlayer player = new ItemFramePlayer(plugin, itemFrames, new File("video.mp4"));
player.addViewer(Bukkit.getPlayer("Respect"));
player.play();
```