summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--DOCS/compile-windows.md4
-rw-r--r--DOCS/man/af.rst2
-rw-r--r--DOCS/man/javascript.rst2
-rw-r--r--DOCS/man/lua.rst2
-rw-r--r--DOCS/man/vf.rst4
5 files changed, 7 insertions, 7 deletions
diff --git a/DOCS/compile-windows.md b/DOCS/compile-windows.md
index 2fd011978a..58f0daecf0 100644
--- a/DOCS/compile-windows.md
+++ b/DOCS/compile-windows.md
@@ -22,7 +22,7 @@ When cross-compiling, you have to run mpv's configure with these arguments:
DEST_OS=win32 TARGET=i686-w64-mingw32 ./waf configure
```
-[MXE](http://mxe.cc) makes it very easy to bootstrap a complete MingGW-w64
+[MXE](https://mxe.cc) makes it very easy to bootstrap a complete MingGW-w64
environment from a Linux machine. See a working example below.
Alternatively, you can try [mingw-w64-cmake](https://github.com/lachs0r/mingw-w64-cmake),
@@ -38,7 +38,7 @@ Example with MXE
#
# Refer to
#
-# http://mxe.cc/#requirements
+# https://mxe.cc/#requirements
#
# Scroll down for disto/OS-specific instructions to install them.
diff --git a/DOCS/man/af.rst b/DOCS/man/af.rst
index 55bf3d0f85..5ff7426382 100644
--- a/DOCS/man/af.rst
+++ b/DOCS/man/af.rst
@@ -198,7 +198,7 @@ Available filters are:
for each option. The options are not documented here, because they are
merely passed to librubberband. Look at the librubberband documentation
to learn what each option does:
- http://breakfastquay.com/rubberband/code-doc/classRubberBand_1_1RubberBandStretcher.html
+ https://breakfastquay.com/rubberband/code-doc/classRubberBand_1_1RubberBandStretcher.html
(The mapping of the mpv rubberband filter sub-option names and values to
those of librubberband follows a simple pattern: ``"Option" + Name + Value``.)
diff --git a/DOCS/man/javascript.rst b/DOCS/man/javascript.rst
index 0cd4fb806e..56b6ce9d9b 100644
--- a/DOCS/man/javascript.rst
+++ b/DOCS/man/javascript.rst
@@ -58,7 +58,7 @@ Language features - ECMAScript 5
The scripting backend which mpv currently uses is MuJS - a compatible minimal
ES5 interpreter. As such, ``String.substring`` is implemented for instance,
while the common but non-standard ``String.substr`` is not. Please consult the
-MuJS pages on language features and platform support - http://mujs.com .
+MuJS pages on language features and platform support - https://mujs.com .
Unsupported Lua APIs and their JS alternatives
----------------------------------------------
diff --git a/DOCS/man/lua.rst b/DOCS/man/lua.rst
index 43954044d1..3d8b2e2b7b 100644
--- a/DOCS/man/lua.rst
+++ b/DOCS/man/lua.rst
@@ -480,7 +480,7 @@ The ``mp`` module is preloaded, although it can be loaded manually with
the timer callback function fn is run).
Note that these are methods, and you have to call them using ``:`` instead
- of ``.`` (Refer to http://www.lua.org/manual/5.2/manual.html#3.4.9 .)
+ of ``.`` (Refer to https://www.lua.org/manual/5.2/manual.html#3.4.9 .)
Example:
diff --git a/DOCS/man/vf.rst b/DOCS/man/vf.rst
index e07360b24d..cc7c473ebe 100644
--- a/DOCS/man/vf.rst
+++ b/DOCS/man/vf.rst
@@ -60,7 +60,7 @@ libavfilter bridge.
.. note::
To get a full list of available video filters, see ``--vf=help`` and
- http://ffmpeg.org/ffmpeg-filters.html .
+ https://ffmpeg.org/ffmpeg-filters.html .
Also, keep in mind that most actual filters are available via the ``lavfi``
wrapper, which gives you access to most of libavfilter's filters. This
@@ -389,7 +389,7 @@ Available mpv-only filters are:
option gives the flags which should be passed to libswscale. This
option is numeric and takes a bit-wise combination of ``SWS_`` flags.
- See ``http://git.videolan.org/?p=ffmpeg.git;a=blob;f=libswscale/swscale.h``.
+ See ``https://git.videolan.org/?p=ffmpeg.git;a=blob;f=libswscale/swscale.h``.
``<o>``
Set AVFilterGraph options. These should be documented by FFmpeg.