Skip to main content

VapourSynth preview script

Project description

vsquickview

vsquickview is a frame-by-frame VapourSynth preview script designed to be used together with Jupyter Notebook with these advantages:

  • Less waiting. vsquickview will run alongside Jupyter Notebook. Everytimes you make an adjustment, you can switch to the vsquickview window to view the result immediately.
  • Easier comparing between two clips with a right click. Blind comparing is also possible.

Thanks to

  • Setsugen no ao for helping with VapourSynth magics.
  • witchymary and others for helping with the UX.

Note:

This project has received an surprising amount of publicity recently. Please note that vsquickview is still in rapid development and its functions may subject to change. If there were any changes that would break existing function, we will indicate it by increasing the MINOR version instead of PATCH. Until version 1.0.0 is released, if you see the MINOR version changes, please remember to revisit this README page to confirm that your existing scripts will work.

Install vsquickview

Install vsquickview from pip:

python3 -m pip install vsquickview

vsquickview also requires fmtc to work. Make sure you have fmtc installed or install it using the following command:

vsrepo install fmtc

Using vsquickview's Python interface

Create a new Jupyter Notebook and import vsquickview:

%gui qt5
import vsquickview as vsqv

%gui qt5 is a magic command to let Jupyter Notebook integrates with the Qt event loop. Please make sure to call it before importing vsquickview.

After this cell is executed, a fullscreen vsquickview window should be opened, showing an ARIB STD-B66 colour bar. We will be looking at the GUI in the next section, but before that, let's see how we can add clips to vsquickview:

vsqv.View(src16, 0, "Source")
vsqv.View(compare16, 1, "Compare")

vsquickview.View() is defined as below:

View(clip: vs.VideoNode, index: int, name: Optional[str]=None)
  • The first parameter is the clip for preview.
  • Similar to vspreview, vsquickview has 10 video slots from 0 to 9. This is specifed using the second parameter index.
  • You can also pass a third parameter to specify a name for the clip. This will be displayed in vsquickview window alongside the clip's index.

Clip on an index can be updated using the same vsquickview.View() function:

vsqv.View(new_compare16, 1, "New Compare")

To remove a clip with a specific index:

vsqv.RemoveView(1)

If you prefer a more VapourSynth-style call to vsquickview, you could call the functions like:

vsqv.View(compare16, index=1, name="Compare")
vsqv.RemoveView(None, index=1)

Here is a short list of functions and their definitions in vsquickview:

View(clip: vs.VideoNode, index: int, name: Optional[str]=None)
RemoveView(clip: Union[vs.VideoNode, int, None]=None, index: Optional[int]=None)
SetFrame(clip: Union[vs.VideoNode, int, None]=None, frame: Optional[int]=None)
SetIndex(clip: Union[vs.VideoNode, int, None]=None, index: Optional[int]=None)
Show(clip: Optional[vs.VideoNode]=None)
Hide(clip: Optional[vs.VideoNode]=None)

Using vsquickview's GUI

On startup, vsquickview displays the first frame of the clip at index 0 on startup. Press Alt key and you will see a label on the bottom-left corner of the screen that reads Index 0: [Name of the clip] / Frame 0.

You can switch to another frame using G key. Press G key and type in the frame number, then press Enter to switch to a new frame. You can also use the Left or Right key to go to previous or next frame.

You can cycle between clips using the right mouse button. If you have more than one clip loaded and available at the specific frame number, press the right mouse button and the same frame of the next available clip will be displayed. Press Shift and the right mouse button and the clip will be cycled backwards.

Other usages are listed below:

  • Left Mouse Button or Middle Mouse Button: Pan the clip preview.
  • Scroll Wheel: Zoom the preview at 100%, 200%, 300%, or 400%.
  • Right Mouse Button or Space: Switch to the next available clip. Shift and Right Mouse Button or Space: Switch to the previous available clip.
  • Alt: Toggle the label at the bottom-left corner of the screen.
  • 0, 1, 29: Switch to the clip at the specific index.
  • G: Press G key and type the frame number followed by Enter key to go to a specific frame.
  • Left Key or Right Key: Go to the previous or the next frame.
  • Ctrl and Left Key or Right Key: Jump 12 frames backwards or forwards.
  • Up Key or Down Key: Go to the next or previous clip, but not cycling the clips.
  • F or F11: Toggle fullscreen.

vsquickview will be closed when you terminate or restart the Jupyter Notebook section. If you close the vsquickview window by accident, you can reopen it by calling function vsquickview.Show().

Using preview group

Additionally, you can also create preview group for a selecteds list of frames you want to compare.

Set preview group using the vsquickview.SetPreviewGroup() function:

vsqv.SetPreviewGroup([1934, 6849, 13226, 21647, 25374, 26811, 28499, 29111])

In the vsquickview GUI, use Shift Key and Left Key or Right Key to go to the previous or next frame in the set preview group.

You can also add frame to or remove frame from the preview group using R Key from GUI. Afterwards, you can retrieve the current preview group using the vsquickview.PreviewGroup() function.

Here is a short list of functions and their definitions for preview group:

SetPreviewGroup(clip: Union[vs.VideoNode, int, None]=None, group: Optional[list]=None)
ClearPreviewGroup(clip: Optional[vs.VideoNode]=None)
PreviewGroup(clip: Optional[vs.VideoNode]=None)

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

vsquickview-0.2.5.tar.gz (10.2 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

vsquickview-0.2.5-py3-none-any.whl (14.7 kB view details)

Uploaded Python 3

File details

Details for the file vsquickview-0.2.5.tar.gz.

File metadata

  • Download URL: vsquickview-0.2.5.tar.gz
  • Upload date:
  • Size: 10.2 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.10.7

File hashes

Hashes for vsquickview-0.2.5.tar.gz
Algorithm Hash digest
SHA256 aa3877e1aa46bb20735e038774ebdba20c27636645c47bdd75bc2865033c7a48
MD5 63b86d7d3d85ccac3ad5df5a9ef2dc9c
BLAKE2b-256 2867224f2cdcb2eda9219d1a079c5b7d763084a57f411d5e3a14705f08de27f1

See more details on using hashes here.

File details

Details for the file vsquickview-0.2.5-py3-none-any.whl.

File metadata

  • Download URL: vsquickview-0.2.5-py3-none-any.whl
  • Upload date:
  • Size: 14.7 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.10.7

File hashes

Hashes for vsquickview-0.2.5-py3-none-any.whl
Algorithm Hash digest
SHA256 8716a4a2b2956e04ed8a211df8eb987d604ac4ce995051bb79c63ddb85b93a25
MD5 287b6e49b2f2e27179b52e1b5732e6d3
BLAKE2b-256 a38b336644cc6e9baefa0016ba030ef83dc482be9658baf8ed11607ee945603a

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page