diff options
Diffstat (limited to 'DOCS/man/lua.rst')
-rw-r--r-- | DOCS/man/lua.rst | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/DOCS/man/lua.rst b/DOCS/man/lua.rst index db4957addc..4d3fb7c3d8 100644 --- a/DOCS/man/lua.rst +++ b/DOCS/man/lua.rst @@ -690,6 +690,23 @@ List of events Happens after a file was unloaded. Typically, the player will load the next file right away, or quit if this was the last file. + The event has the ``reason`` field, which takes one of these values: + + ``eof`` + The file has ended. This can (but doesn't have to) include + incomplete files or broken network connections under + circumstances. + + ``stop`` + Playback was ended by a command. + + ``quit`` + Playback was ended by sending the quit command. + + ``error`` + An error happened. In this case, an ``error`` field is present with + the error string. + ``file-loaded`` Happens after a file was loaded and begins playback. |