Compare commits
2 Commits
008a69d88d
...
8de6c0a971
Author | SHA1 | Date | |
---|---|---|---|
8de6c0a971 | |||
d6d6468931 |
@ -2,7 +2,7 @@
|
|||||||
title: The FOSS Event Technician
|
title: The FOSS Event Technician
|
||||||
description: Findings and experiments of a live event tech that's in love with open source technology
|
description: Findings and experiments of a live event tech that's in love with open source technology
|
||||||
published: true
|
published: true
|
||||||
date: 2025-06-19T06:13:54.545Z
|
date: 2025-06-19T06:33:50.678Z
|
||||||
tags:
|
tags:
|
||||||
editor: markdown
|
editor: markdown
|
||||||
dateCreated: 2025-06-19T04:18:25.629Z
|
dateCreated: 2025-06-19T04:18:25.629Z
|
||||||
@ -29,7 +29,7 @@ From beep boops to orchestras, getting sound from Point A to Point B
|
|||||||
|
|
||||||
### Software
|
### Software
|
||||||
|
|
|
|
||||||
| [MPV](/ramblings/event-tech/software/mpv) | FOSS media player that's easy for the \*NIX admin to automate and configure |
|
| **[MPV](/ramblings/event-tech/software/mpv)** | FOSS media player that's easy for the \*NIX admin to automate and configure |
|
||||||
|
|
||||||
### TODO
|
### TODO
|
||||||
- [ ] Linux Show Player
|
- [ ] Linux Show Player
|
||||||
|
45
ramblings/event-tech/software/mpv.md
Normal file
45
ramblings/event-tech/software/mpv.md
Normal file
@ -0,0 +1,45 @@
|
|||||||
|
---
|
||||||
|
title: MPV
|
||||||
|
description: Tips and tricks for the MPV media player
|
||||||
|
published: true
|
||||||
|
date: 2025-06-19T06:33:21.983Z
|
||||||
|
tags:
|
||||||
|
editor: markdown
|
||||||
|
dateCreated: 2025-06-19T06:33:21.983Z
|
||||||
|
---
|
||||||
|
|
||||||
|
# Upstream
|
||||||
|
https://mpv.io/
|
||||||
|
|
||||||
|
# Useful configuration options
|
||||||
|
Here are some options that I find very useful.
|
||||||
|
|
||||||
|
## Launch full-screen
|
||||||
|
|
||||||
|
Ref: https://mpv.io/manual/stable/#options-fs
|
||||||
|
|
||||||
|
````
|
||||||
|
--fullscreen, --fs
|
||||||
|
````
|
||||||
|
|
||||||
|
> If launching from the command line, combine this option with `--pause`, `--osc=no`, and a key combination to move windows to another display, and you can seamlessly play a video on a secondary display without moving your mouse there. The existing terminal emulator window will accept keyboard input as if the video's window is in focus. You can do other things, and return to controlling the video without leaving the primary display.
|
||||||
|
{.is-info}
|
||||||
|
|
||||||
|
|
||||||
|
## Pause on launch
|
||||||
|
|
||||||
|
Ref: https://mpv.io/manual/stable/#options-pause
|
||||||
|
|
||||||
|
```
|
||||||
|
--pause
|
||||||
|
```
|
||||||
|
|
||||||
|
## Disable OSD
|
||||||
|
|
||||||
|
Ref: https://mpv.io/manual/stable/#options-osc
|
||||||
|
|
||||||
|
```
|
||||||
|
--osc=no
|
||||||
|
```
|
||||||
|
|
||||||
|
This option disables all controls that could get painted over the video window.
|
Loading…
x
Reference in New Issue
Block a user