summaryrefslogtreecommitdiffstats
path: root/DOCS
diff options
context:
space:
mode:
authorhooke007 <41094733+hooke007@users.noreply.github.com>2022-09-26 23:36:25 +0100
committerLeo Izen <leo.izen@gmail.com>2022-09-27 08:24:54 -0400
commit1c05a30e951f973f8cd8173a30d1fe0df59fd390 (patch)
tree4233b9f376a3d3b9aa7ae99f59380ab0040a1eb9 /DOCS
parent1c8fdf6992eba7f7b3506c98ba79112ab071929e (diff)
downloadmpv-1c05a30e951f973f8cd8173a30d1fe0df59fd390.tar.bz2
mpv-1c05a30e951f973f8cd8173a30d1fe0df59fd390.tar.xz
DOCS/man/vf.rst : replace the outdated syntax
`get_core()` had been deprecated for several years and totally removed since vapoursynth R55 API4.
Diffstat (limited to 'DOCS')
-rw-r--r--DOCS/man/vf.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/DOCS/man/vf.rst b/DOCS/man/vf.rst
index 10635811df..027ac6f55f 100644
--- a/DOCS/man/vf.rst
+++ b/DOCS/man/vf.rst
@@ -465,7 +465,7 @@ Available mpv-only filters are:
::
import vapoursynth as vs
- core = vs.get_core()
+ from vapoursynth import core
core.std.AddBorders(video_in, 10, 10, 20, 20).set_output()
.. warning::