diff --git a/bin/python/github-download-count.py b/bin/python/github-download-count.py
old mode 100644
new mode 100755
diff --git a/bin/upload_sourceforge.sh b/bin/upload_sourceforge.sh
index 673d961f1..4a4c49450 100755
--- a/bin/upload_sourceforge.sh
+++ b/bin/upload_sourceforge.sh
@@ -3,7 +3,6 @@
# mrv2
# Copyright Contributors to the mrv2 Project. All rights reserved.
-#!/usr/bin/env bash
echo "RUNNING upload_sourceforge.sh......"
diff --git a/cmake/Modules/BuildFLTK.cmake b/cmake/Modules/BuildFLTK.cmake
index 286492f12..26e825232 100644
--- a/cmake/Modules/BuildFLTK.cmake
+++ b/cmake/Modules/BuildFLTK.cmake
@@ -6,12 +6,7 @@ include( ExternalProject )
#set( FLTK_TAG master )
# Stable TAG
-if (NOT APPLE)
- #set( FLTK_TAG master )
- set( FLTK_TAG f6690a974245407c5d266dcb688db694e51a3bb4 )
-else()
- set( FLTK_TAG c2cce9cba86dcc208c9396af994010cd49484988 )
-endif()
+set( FLTK_TAG f6690a974245407c5d266dcb688db694e51a3bb4 )
set( FLTK_BUILD_SHARED_LIBS OFF )
diff --git a/cmake/version.cmake b/cmake/version.cmake
index 43290c81a..2519b4c19 100644
--- a/cmake/version.cmake
+++ b/cmake/version.cmake
@@ -4,8 +4,8 @@
set( mrv2_VERSION_MAJOR 0 )
-set( mrv2_VERSION_MINOR 7 )
-set( mrv2_VERSION_PATCH 9 )
+set( mrv2_VERSION_MINOR 8 )
+set( mrv2_VERSION_PATCH 0 )
set( mrv2_VERSION
"${mrv2_VERSION_MAJOR}.${mrv2_VERSION_MINOR}.${mrv2_VERSION_PATCH}"
)
diff --git a/docs/sphinx/en/python_api/pyFLTK.rst b/docs/sphinx/en/python_api/pyFLTK.rst
new file mode 100644
index 000000000..12fce2246
--- /dev/null
+++ b/docs/sphinx/en/python_api/pyFLTK.rst
@@ -0,0 +1,17 @@
+######
+pyFLTK
+######
+
+mrv2 supports FLTK in python through the pyFLTK module. You can import it like::
+
+ from fltk14 import *
+
+Once with it, you can create new windows, buttons, and any sort of other widgets the pyFLTK supports. For some demos, look into::
+
+ python/demos/fltk
+
+For information about FLTK and pyFLTK (albeit the older 1.3), go to:
+
+https://fltk.gitlab.io/fltk/
+
+https://pyfltk.sourceforge.io/docs/CH0_Preface.html
diff --git a/docs/sphinx/es/python_api/pyFLTK.rst b/docs/sphinx/es/python_api/pyFLTK.rst
new file mode 100644
index 000000000..513becdf0
--- /dev/null
+++ b/docs/sphinx/es/python_api/pyFLTK.rst
@@ -0,0 +1,18 @@
+######
+pyFLTK
+######
+
+
+mrv2 supporta FLTK en python a través del módulo pyFLTK. Puede importarlo así::
+
+ from fltk14 import *
+
+Una vez cargado, puede crear nuevas ventanas, botones, y cualquier otra clase de widgets que pyFLTK supporta. Para algunos demos, mire en::
+
+ python/demos/fltk
+
+Para información acerca de FLTK y pyFLTK (aunque la versión anterior 1.3), vaya a:
+
+https://fltk.gitlab.io/fltk/
+
+https://pyfltk.sourceforge.io/docs/CH0_Preface.html
diff --git a/mrv2/docs/HISTORY.md b/mrv2/docs/HISTORY.md
index 4db9759d1..d25449561 100644
--- a/mrv2/docs/HISTORY.md
+++ b/mrv2/docs/HISTORY.md
@@ -1,3 +1,10 @@
+v0.8.0
+======
+
+- Fixed mrv2's file requester not selecting files with [] in them.
+- Fixed mrv2's file requester not changing directories if you had typed the
+ full name of the directory in the filename field and pressed Enter,
+
v0.7.9
======
@@ -53,7 +60,7 @@ Preferences->User Interface->Single Instance.
* Fixed a problem with the embedded python (pybind11) locating the system Python installation instead of the local one instead. This created havok on my Ubuntu 22.04 when there was an upgrade.
* Made parsing of -D options like -D TLRENDER_USD=OFF work with or without a space.
* Got rid of compiling the slow Gettext on macOS, replacing it with
- get
+ a prebuilt dylib.
* Made the build system automatically release beta versions of the software after each successful compilation. You can now download the latest beta binaries from:
https://sourceforge.net/projects/mrv2/files/beta/
diff --git a/mrv2/docs/en/.buildinfo b/mrv2/docs/en/.buildinfo
index af8d38c4d..5e1161cd0 100644
--- a/mrv2/docs/en/.buildinfo
+++ b/mrv2/docs/en/.buildinfo
@@ -1,4 +1,4 @@
# Sphinx build info version 1
# This file hashes the configuration used when building these files. When it is not found, a full rebuild will be done.
-config: 51e5f22bbed3cbbc46353e2ef2f3ffac
+config: 09a18046b99087f44fea6ffec12e384f
tags: 645f666f9bcd5a90fca523b33c5a78b7
diff --git a/mrv2/docs/en/_sources/python_api/pyFLTK.rst.txt b/mrv2/docs/en/_sources/python_api/pyFLTK.rst.txt
new file mode 100644
index 000000000..12fce2246
--- /dev/null
+++ b/mrv2/docs/en/_sources/python_api/pyFLTK.rst.txt
@@ -0,0 +1,17 @@
+######
+pyFLTK
+######
+
+mrv2 supports FLTK in python through the pyFLTK module. You can import it like::
+
+ from fltk14 import *
+
+Once with it, you can create new windows, buttons, and any sort of other widgets the pyFLTK supports. For some demos, look into::
+
+ python/demos/fltk
+
+For information about FLTK and pyFLTK (albeit the older 1.3), go to:
+
+https://fltk.gitlab.io/fltk/
+
+https://pyfltk.sourceforge.io/docs/CH0_Preface.html
diff --git a/mrv2/docs/en/genindex.html b/mrv2/docs/en/genindex.html
index ba2583f3d..956deda43 100644
--- a/mrv2/docs/en/genindex.html
+++ b/mrv2/docs/en/genindex.html
@@ -599,13 +599,15 @@
P
playback (mrv2.FileMedia attribute)
-
-
+
-
+
+pyFLTK
settings module
memory()
readAhead()
diff --git a/mrv2/docs/en/python_api/io.html b/mrv2/docs/en/python_api/io.html
index 67b003014..c11c846dc 100644
--- a/mrv2/docs/en/python_api/io.html
+++ b/mrv2/docs/en/python_api/io.html
@@ -70,6 +70,7 @@
playlist module
plugin module
Plug-in System
+pyFLTK
settings module
timeline module
usd module
diff --git a/mrv2/docs/en/python_api/math.html b/mrv2/docs/en/python_api/math.html
index 0262515fe..454a7f692 100644
--- a/mrv2/docs/en/python_api/math.html
+++ b/mrv2/docs/en/python_api/math.html
@@ -83,6 +83,7 @@
playlist module
plugin module
Plug-in System
+pyFLTK
settings module
timeline module
usd module
diff --git a/mrv2/docs/en/python_api/media.html b/mrv2/docs/en/python_api/media.html
index c89513d63..544a89e3a 100644
--- a/mrv2/docs/en/python_api/media.html
+++ b/mrv2/docs/en/python_api/media.html
@@ -87,6 +87,7 @@
playlist module
plugin module
Plug-in System
+pyFLTK
settings module
timeline module
usd module
diff --git a/mrv2/docs/en/python_api/mrv2.html b/mrv2/docs/en/python_api/mrv2.html
index 2efbda18f..f1a58c196 100644
--- a/mrv2/docs/en/python_api/mrv2.html
+++ b/mrv2/docs/en/python_api/mrv2.html
@@ -122,6 +122,7 @@
playlist module
plugin module
Plug-in System
+pyFLTK
settings module
timeline module
usd module
diff --git a/mrv2/docs/en/python_api/playlist.html b/mrv2/docs/en/python_api/playlist.html
index 83d3e30b1..fa926900b 100644
--- a/mrv2/docs/en/python_api/playlist.html
+++ b/mrv2/docs/en/python_api/playlist.html
@@ -64,6 +64,7 @@
plugin module
Plug-in System
+pyFLTK
settings module
timeline module
usd module
diff --git a/mrv2/docs/en/python_api/plug-ins-system.html b/mrv2/docs/en/python_api/plug-ins-system.html
index 4d6a102cc..eef826013 100644
--- a/mrv2/docs/en/python_api/plug-ins-system.html
+++ b/mrv2/docs/en/python_api/plug-ins-system.html
@@ -21,7 +21,7 @@
-
+
@@ -61,6 +61,7 @@
Plug-ins
+pyFLTK
settings module
timeline module
usd module
@@ -132,7 +133,7 @@ Plug-ins
-
+
+pyFLTK
Módulo settings
Módulo playlist
Módulo de plugin
+pyFLTK
Módulo settings
Sistema de Plug-ins
Módulo timeline
diff --git a/mrv2/docs/es/python_api/playlist.html b/mrv2/docs/es/python_api/playlist.html
index 438578ee4..6b6766e8d 100644
--- a/mrv2/docs/es/python_api/playlist.html
+++ b/mrv2/docs/es/python_api/playlist.html
@@ -63,6 +63,7 @@
Módulo de plugin
+pyFLTK
Módulo settings
Sistema de Plug-ins
Módulo timeline
diff --git a/mrv2/docs/es/python_api/plug-ins.html b/mrv2/docs/es/python_api/plug-ins.html
index efb2ef7e4..f466cfb4e 100644
--- a/mrv2/docs/es/python_api/plug-ins.html
+++ b/mrv2/docs/es/python_api/plug-ins.html
@@ -22,7 +22,7 @@
-
+
@@ -64,6 +64,7 @@
+pyFLTK
Módulo settings
Sistema de Plug-ins
Módulo timeline
@@ -177,7 +178,7 @@
diff --git a/mrv2/docs/es/python_api/pyFLTK.html b/mrv2/docs/es/python_api/pyFLTK.html
new file mode 100644
index 000000000..724e79cd4
--- /dev/null
+++ b/mrv2/docs/es/python_api/pyFLTK.html
@@ -0,0 +1,140 @@
+
+
+
+
+
+
+ pyFLTK — documentación de mrv2 - v0.7.9
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ mrv2
+
+
+
+
+
+
+
+
+
+pyFLTK
+mrv2 supporta FLTK en python a través del módulo pyFLTK. Puede importarlo así:
+
+Una vez cargado, puede crear nuevas ventanas, botones, y cualquier otra clase de widgets que pyFLTK supporta. Para algunos demos, mire en:
+
+Para información acerca de FLTK y pyFLTK (aunque la versión anterior 1.3), vaya a:
+https://fltk.gitlab.io/fltk/
+https://pyfltk.sourceforge.io/docs/CH0_Preface.html
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/mrv2/docs/es/python_api/settings.html b/mrv2/docs/es/python_api/settings.html
index dffc0fa1d..fb42275a5 100644
--- a/mrv2/docs/es/python_api/settings.html
+++ b/mrv2/docs/es/python_api/settings.html
@@ -23,7 +23,7 @@
-
+
@@ -57,6 +57,7 @@
Módulo mrv2
Módulo playlist
Módulo de plugin
+pyFLTK
Módulo settings
memory()
readAhead()
@@ -144,7 +145,7 @@
diff --git a/mrv2/docs/es/python_api/sistema-de-plugins.html b/mrv2/docs/es/python_api/sistema-de-plugins.html
index 34e0f8bd0..6da2e1ddc 100644
--- a/mrv2/docs/es/python_api/sistema-de-plugins.html
+++ b/mrv2/docs/es/python_api/sistema-de-plugins.html
@@ -57,6 +57,7 @@
Módulo mrv2
Módulo playlist
Módulo de plugin
+pyFLTK
Módulo settings
Sistema de Plug-ins
Plug-ins
diff --git a/mrv2/docs/es/python_api/timeline.html b/mrv2/docs/es/python_api/timeline.html
index f9ff10346..be49ffe41 100644
--- a/mrv2/docs/es/python_api/timeline.html
+++ b/mrv2/docs/es/python_api/timeline.html
@@ -57,6 +57,7 @@
Módulo mrv2
Módulo playlist
Módulo de plugin
+pyFLTK
Módulo settings
Sistema de Plug-ins
Módulo timeline
diff --git a/mrv2/docs/es/python_api/usd.html b/mrv2/docs/es/python_api/usd.html
index fa59ef9f6..1a672daec 100644
--- a/mrv2/docs/es/python_api/usd.html
+++ b/mrv2/docs/es/python_api/usd.html
@@ -56,6 +56,7 @@
Módulo mrv2
Módulo playlist
Módulo de plugin
+pyFLTK
Módulo settings
Sistema de Plug-ins
Módulo timeline
diff --git a/mrv2/docs/es/searchindex.js b/mrv2/docs/es/searchindex.js
index 78e427727..292627876 100644
--- a/mrv2/docs/es/searchindex.js
+++ b/mrv2/docs/es/searchindex.js
@@ -1 +1 @@
-Search.setIndex({"docnames": ["index", "python_api/annotations", "python_api/cmd", "python_api/image", "python_api/index", "python_api/math", "python_api/media", "python_api/mrv2", "python_api/playlist", "python_api/plug-ins", "python_api/settings", "python_api/sistema-de-plugins", "python_api/timeline", "python_api/usd", "user_docs/getting_started/getting_started", "user_docs/hotkeys", "user_docs/index", "user_docs/interface/interface", "user_docs/notes", "user_docs/overview", "user_docs/panels/panels", "user_docs/playback", "user_docs/preferences", "user_docs/settings", "user_docs/videos"], "filenames": ["index.rst", "python_api/annotations.rst", "python_api/cmd.rst", "python_api/image.rst", "python_api/index.rst", "python_api/math.rst", "python_api/media.rst", "python_api/mrv2.rst", "python_api/playlist.rst", "python_api/plug-ins.rst", "python_api/settings.rst", "python_api/sistema-de-plugins.rst", "python_api/timeline.rst", "python_api/usd.rst", "user_docs/getting_started/getting_started.rst", "user_docs/hotkeys.rst", "user_docs/index.rst", "user_docs/interface/interface.rst", "user_docs/notes.rst", "user_docs/overview.rst", "user_docs/panels/panels.rst", "user_docs/playback.rst", "user_docs/preferences.rst", "user_docs/settings.rst", "user_docs/videos.rst"], "titles": ["Bienvenido a la documentaci\u00f3n de mrv2!", "M\u00f3dulo de anotaciones", "M\u00f3dulo cmd", "M\u00f3dulo image", "Python API", "M\u00f3dulo math", "M\u00f3dulo media", "M\u00f3dulo mrv2", "M\u00f3dulo playlist", "M\u00f3dulo de plugin", "M\u00f3dulo settings", "Sistema de Plug-ins", "M\u00f3dulo timeline", "usd module", "Comenzando", "Teclas de Manejo", "Gu\u00eda del Usuario de mrv2", "La interfaz de mrv2", "Notas y Anotaciones", "Introducci\u00f3n", "Paneles", "Reproducci\u00f3n de V\u00eddeo", "Preferencias", "Seteos", "Tutoriales de Video (en Ingl\u00e9s)"], "terms": {"gui": [0, 2, 19], "usuari": [0, 14, 17, 18, 19, 21], "introduccion": [0, 16], "comenz": [0, 16, 20], "La": [0, 7, 14, 16, 18, 19, 20, 21, 22], "interfaz": [0, 16, 19], "panel": [0, 14, 15, 16, 18, 19, 21, 23], "not": [0, 1, 2, 16, 19, 20, 22], "anot": [0, 2, 4, 15, 16, 19, 21], "reproduccion": [0, 2, 7, 8, 15, 16, 17, 19], "vide": [0, 3, 7, 16, 19, 20], "sete": [0, 2, 10, 12, 15, 16, 17, 18, 19, 21, 22], "tecl": [0, 16, 17, 18, 19, 20, 22, 23], "manej": [0, 16, 17, 19, 20], "preferent": [0, 14, 15, 16, 17, 20], "tutorial": [0, 16], "ingles": [0, 16], "python": [0, 9, 11, 15, 16, 19], "api": [0, 19, 20], "modul": [0, 4], "cmd": [0, 4], "imag": [0, 2, 4, 15, 17, 18, 19, 20, 21], "math": [0, 3, 4, 6], "medi": [0, 2, 4, 7, 15, 16, 17, 19, 21], "playlist": [0, 4], "plugin": [0, 4, 11], "settings": [0, 4, 22], "sistem": [0, 4, 14, 15, 19, 20, 22], "plug": [0, 4, 9], "ins": [0, 4], "timelin": [0, 4, 7], "usd": [0, 4, 15, 16, 19], "pagin": 0, "busqued": 0, "m\u00f2dul": [1, 6, 8, 9, 10, 12], "contien": [1, 3, 5, 6, 7, 8, 9, 10, 12, 13, 17, 22], "tod": [1, 2, 3, 5, 6, 8, 9, 10, 12, 13, 14, 15, 17, 18, 19, 20, 22], "clas": [1, 5, 6, 7, 8, 9, 11], "enums": [1, 3, 6, 8, 10, 12, 13], "relacion": [1, 6, 8, 9, 10, 12], "mrv2": [1, 2, 3, 4, 5, 6, 8, 9, 10, 11, 12, 13, 15, 18, 20, 21, 22, 23, 24], "annotations": [1, 2], "add": [1, 3, 4], "args": [1, 7, 8, 12], "kwargs": [1, 7, 8, 12], "overload": [1, 7, 8, 12], "function": [1, 7, 8, 12], "tim": [1, 4, 12], "rationaltim": [1, 4, 7, 12], "str": [1, 2, 3, 7, 8], "non": [1, 2, 3, 6, 8, 10, 12], "agreg": [1, 3, 8, 11, 14, 15, 16, 19, 20], "clip": [1, 3, 7, 8, 14, 15, 17, 18, 20, 21], "actual": [1, 2, 6, 7, 12, 14, 15, 16, 17, 18, 20], "ciert": [1, 17], "tiemp": [1, 2, 7, 12, 15, 16, 18, 19, 20, 21], "fram": [1, 4, 7, 12, 14, 19, 21], "int": [1, 2, 3, 5, 6, 7, 8, 10, 12, 13], "cuadr": [1, 7, 12, 15, 16, 18, 19, 20], "seconds": [1, 4, 7, 12], "float": [1, 2, 3, 5, 6, 7, 10, 12, 13], "segund": [1, 2, 7, 10, 12, 15, 17, 18, 19, 20, 21, 23], "command": 2, "usad": [2, 17, 19, 22], "par": [2, 6, 7, 9, 11, 12, 14, 15, 17, 18, 19, 20, 21], "corr": [2, 14, 20, 21], "comand": [2, 11, 15, 16], "principal": [2, 14, 17, 20, 22, 23], "obten": [2, 13, 21], "set": [2, 4, 6, 10, 12, 13, 14, 18, 20, 21, 22], "opcion": [2, 3, 6, 13, 14, 17, 20], "display": [2, 3, 15, 19, 20, 21], "compar": [2, 4, 6, 15, 16, 19], "lut": [2, 3, 20, 22], "clos": [2, 4, 6], "item": [2, 6, 14], "1": [2, 3, 7], "cerr": [2, 6, 14, 15, 20], "archiv": [2, 3, 6, 7, 8, 11, 14, 15, 16, 17, 19], "closeall": [2, 4, 6], "itemb": 2, "mod": [2, 6, 12, 13, 14, 15, 16, 17, 18, 19], "comparemod": [2, 4, 6], "wip": [2, 6, 19, 20], "2": [2, 5, 7], "dos": [2, 11, 17, 18, 20, 22], "items": [2, 8, 19], "compareoptions": [2, 4, 6], "return": [2, 7, 9, 11], "the": [2, 7, 22], "current": 2, "options": 2, "displayoptions": [2, 3, 4], "retorn": [2, 6, 7, 10, 12, 15], "environmentmapoptions": [2, 3, 4], "map": [2, 3, 15, 16, 22], "entorn": [2, 3, 11, 15, 16, 17, 22], "getlayers": [2, 4], "list": [2, 4, 6, 8, 11, 15, 16, 19, 21, 24], "cap": [2, 6, 7, 17, 20], "line": [2, 12, 15, 16, 18, 19, 20, 21], "imageoptions": [2, 3, 4], "ismut": [2, 4], "bool": [2, 3, 6, 7, 9, 13], "tru": [2, 7, 9], "si": [2, 7, 9, 14, 15, 17, 18, 20, 21, 22, 23], "audi": [2, 7, 12, 17, 19, 20], "silenci": 2, "lutoptions": [2, 3, 4], "oepnsession": [2, 4], "fil": [2, 7], "abrir": [2, 14, 15, 20, 22], "sesion": [2, 15, 19], "open": [2, 4], "filenam": [2, 3, 8, 12], "audiofilenam": 2, "opcional": [2, 7, 9], "sav": [2, 4, 8], "io": 2, "saveoptions": 2, "fals": [2, 9], "ffmpegprofil": 2, "exrcompression": 2, "zip": 2, "zipcompressionlevel": 2, "4": [2, 5], "dwacompressionlevel": 2, "45": 2, "grab": [2, 8, 14, 15, 17, 18, 19, 20], "pelicul": [2, 14, 15, 17, 19, 22], "secuenci": [2, 14, 15, 22], "frent": 2, "savepdf": [2, 4], "dcoument": 2, "pdf": [2, 15, 19, 20], "savesession": [2, 4], "setcompareoptions": [2, 4], "setdisplayoptions": [2, 4], "setenvironmentmapoptions": [2, 4], "setimageoptions": [2, 4], "setlutoptions": [2, 4], "setmut": [2, 4], "mut": [2, 7], "mutism": 2, "setstereo3doptions": [2, 4], "stereo3doptions": [2, 3, 4], "estere": [2, 3, 6, 15, 16], "3d": [2, 3, 15, 16], "setvolum": [2, 4], "volum": [2, 4, 7, 17], "stere": [2, 20], "updat": [2, 4], "llam": [2, 9, 22], "rutin": 2, "fl": 2, "check": 2, "refresc": [2, 20], "interfac": 2, "pas": [2, 17, 22], "obteng": 2, "class": [3, 5, 6, 7, 9, 11, 12, 13], "relat": [3, 8, 13], "control": [3, 15, 18, 19, 20, 22, 23], "alphablend": [3, 4], "members": [3, 6, 12, 13], "straight": 3, "premultipli": 3, "channels": [3, 4], "color": [3, 4, 15, 16, 17, 19, 21], "red": [3, 14, 15, 16, 18, 19], "gre": 3, "blu": 3, "alpha": 3, "environmentmaptyp": [3, 4], "spherical": 3, "cubic": [3, 20], "imagefilt": [3, 4], "nearest": 3, "lin": [3, 19, 20, 21], "inputvideolevels": [3, 4], "fromfil": 3, "fullrang": 3, "legalrang": 3, "lutord": [3, 4], "postcolorconfig": 3, "precolorconfig": 3, "videolevels": [3, 4], "yuvcoefficients": [3, 4], "rec709": 3, "bt2020": 3, "stereo3dinput": [3, 4], "stereo3doutput": [3, 4], "anaglyph": 3, "scanlin": 3, "columns": 3, "checkerboard": 3, "opengl": [3, 19], "mirror": [3, 4], "espej": 3, "x": [3, 5, 6, 15], "volt": [3, 15], "Y": [3, 6, 15, 17, 20, 22], "valor": [3, 7, 9, 17, 20], "enabl": 3, "activ": [3, 6, 9, 13, 17, 19, 20, 21], "transform": [3, 22], "nivel": [3, 20], "vector3f": [3, 4, 5], "brightness": 3, "cambi": [3, 15, 17, 18, 19, 20, 21, 22], "brill": 3, "contrast": 3, "contr": [3, 20], "saturation": 3, "satur": [3, 19, 20], "tint": [3, 19, 20], "0": [3, 7, 14, 16, 17, 20, 23], "invert": [3, 20], "levels": [3, 4], "inlow": 3, "baj": [3, 14, 17, 22], "entrad": [3, 9, 11, 12, 15, 17, 19, 20, 21], "inhigh": 3, "alto": 3, "gamm": 3, "gam": [3, 15, 17, 19, 20], "outlow": 3, "sal": [3, 12, 15, 17, 20, 21], "outhigh": 3, "imagefilters": [3, 4], "filtr": [3, 15, 20, 22], "minify": 3, "minif": [3, 15], "magnify": 3, "magnif": [3, 15], "softclip": [3, 4], "soft": 3, "valu": [3, 6, 7], "canal": [3, 15, 19, 20], "ambos": 3, "nombr": [3, 8, 20], "order": 3, "orden": 3, "oper": [3, 20, 22], "algoritm": 3, "mezcl": [3, 14], "alfa": [3, 15, 20], "type": 3, "tip": [3, 14, 20], "horizontalapertur": 3, "aberturn": 3, "horizontal": [3, 6, 15, 17, 19, 20, 21], "proyeccion": 3, "verticalapertur": 3, "abertur": 3, "vertical": [3, 6, 15, 17, 18, 19, 20], "focallength": 3, "distanci": [3, 7, 20], "focal": [3, 20], "rotatex": 3, "rotacion": [3, 6], "rotatey": 3, "subdivisionx": 3, "subdivision": 3, "subdivisiony": 3, "spin": 3, "gir": 3, "input": 3, "stereoinput": 3, "output": [3, 20], "stereooutput": 3, "eyeseparation": 3, "separ": [3, 11, 19], "ojo": 3, "izquierd": [3, 14, 17, 18, 20, 21, 22], "derech": [3, 14, 16, 17, 18, 21], "swapey": 3, "intercambi": [3, 15], "ojos": 3, "vector2i": [4, 5], "vector2f": [4, 5, 6], "vector4f": [4, 5], "afil": [4, 6], "aindex": [4, 6], "bindex": [4, 6], "bfil": [4, 6], "activefil": [4, 6], "clearb": [4, 6], "firstversion": [4, 6], "lastversion": [4, 6], "layers": [4, 6], "nextversion": [4, 6], "previousversion": [4, 6], "setb": [4, 6], "setlay": [4, 6], "setstere": [4, 6], "toggleb": [4, 6], "path": [4, 7, 14], "timerang": [4, 7, 12], "filemedi": [4, 6, 7, 8], "add_clip": [4, 8], "select": [4, 8], "memory": [4, 10], "readah": [4, 10], "readbehind": [4, 10], "setmemory": [4, 10], "setreadah": [4, 10], "setreadbehind": [4, 10], "filesequenceaudi": [4, 12], "loop": [4, 7, 12], "playback": [4, 7, 12, 14, 15, 19, 21], "timermod": [4, 12], "inoutrang": [4, 7, 12], "playbackwards": [4, 12], "playforwards": [4, 12], "seek": [4, 12], "setin": [4, 12], "setinoutrang": [4, 12], "setloop": [4, 12], "setout": [4, 12], "stop": [4, 12, 17], "renderoptions": [4, 13], "setrenderoptions": [4, 13], "drawmod": [4, 13], "matemat": 5, "vector": [5, 18], "enter": [5, 7, 14], "element": [5, 16], "com": [5, 9, 11, 14, 15, 17, 18, 19, 20, 21, 22, 24], "flotant": [5, 22], "3": 5, "z": [5, 15], "w": [5, 15], "kas": 6, "A": [6, 17, 18, 19, 20, 21], "indic": [6, 8, 11, 18, 21], "b": [6, 15, 17, 19, 20], "borr": [6, 15, 18, 19], "index": 6, "primer": [6, 7, 22], "version": [6, 14, 15, 16, 24], "ultim": [6, 7, 15, 17, 21, 22, 24], "proxim": [6, 15, 21], "previ": [6, 14, 15, 18, 20, 21], "nuev": [6, 7, 9, 11, 17, 19, 20, 22], "lay": 6, "altern": [6, 15, 17, 21], "overlay": [6, 15, 19], "differenc": [6, 19], "til": 6, "superposicion": [6, 22], "sobr": [6, 14, 15, 17, 18, 20, 22], "wipecent": 6, "centr": [6, 15, 17, 22], "limpiaparabris": [6, 15, 20], "wiperotation": 6, "used": 7, "to": [7, 14], "hold": 7, "get": 7, "self": [7, 9, 11], "idx": 7, "directoru": 7, "returns": 7, "getbasenam": 7, "getdirectory": 7, "getextension": 7, "getnumb": 7, "getpadding": 7, "isabsolut": 7, "isempty": 7, "represent": [7, 17], "med": 7, "rt": 7, "rat": 7, "pued": [7, 14, 15, 17, 18, 19, 20, 21, 22, 23, 24], "ser": [7, 14, 15, 17, 18, 19, 20, 21, 22, 24], "re": [7, 15], "escal": [7, 17], "razon": 7, "almost_equal": 7, "other": 7, "delt": 7, "static": 7, "duration_from_start_end_tim": 7, "start_tim": 7, "end_time_exclusiv": 7, "comput": [7, 19, 21], "duracion": 7, "muestrasd": 7, "exceptu": 7, "Esto": [7, 11, 17, 18, 19, 20, 22], "mism": [7, 14, 20], "Por": [7, 14, 17, 19, 21, 22], "ejempl": [7, 9, 11, 19, 20, 22], "10": [7, 14], "15": 7, "5": 7, "El": [7, 14, 17, 18, 19, 20, 21, 22, 23], "result": [7, 21], "duration_from_start_end_time_inclusiv": 7, "end_time_inclusiv": 7, "inclu": [7, 17, 19], "6": [7, 17], "from_fram": 7, "convert": 7, "numer": [7, 19, 20, 21, 22], "objet": 7, "from_seconds": 7, "from_time_string": 7, "time_string": 7, "conviert": 7, "text": [7, 15, 18, 19, 20, 22], "microsegund": 7, "hh": 7, "mm": 7, "ss": 7, "dond": [7, 11, 14, 20, 22], "or": [7, 11, 18, 22], "decimal": [7, 22], "from_timecod": 7, "timecod": [7, 17, 22], "is_invalid_tim": 7, "verdader": 7, "val": 7, "consider": 7, "inval": 7, "valoers": 7, "nan": 7, "menor": [7, 15], "igual": [7, 22], "cer": 7, "is_valid_timecode_rat": 7, "usar": [7, 11, 14, 17, 18, 19, 20, 23], "nearest_valid_timecode_rat": 7, "prim": [7, 14, 15, 17, 20, 21], "tien": [7, 14, 17, 20, 21, 22], "diferent": [7, 15, 17, 20, 22], "dad": [7, 8, 12, 14, 18], "rescaled_t": 7, "new_rat": 7, "to_fram": 7, "bas": [7, 18, 20, 22], "to_seconds": 7, "to_time_string": 7, "to_timecod": 7, "drop_fram": 7, "object": 7, "value_rescaled_t": 7, "rang": [7, 12, 17, 20], "codif": 7, "comienz": [7, 17, 20, 21], "signific": 7, "porcion": [7, 20], "muestr": [7, 17, 19, 20, 22], "calcul": 7, "befor": 7, "epsilon_s": 7, "6041666666666666e": 7, "06": 7, "final": [7, 17, 20], "estrict": 7, "preced": 7, "equival": 7, "Lo": 7, "opuest": 7, "meets": 7, "begins": 7, "clamp": 7, "limit": [7, 15, 21], "acuerd": 7, "parametr": [7, 22], "contains": 7, "anteced": 7, "duration_extended_by": 7, "fuer": [7, 18], "start": 7, "entonc": 7, "porqu": [7, 14], "dat": [7, 15, 20, 21], "14": 7, "24": [7, 14], "9": 7, "duraci\u00f2n": 7, "En": [7, 14, 15, 20, 21, 22, 23], "palabr": [7, 14], "inclus": [7, 11, 20, 22], "fraccional": 7, "extended_by": 7, "contru": 7, "extend": [7, 18], "finish": 7, "this": 7, "intersects": 7, "O": [7, 17, 21], "overlaps": 7, "range_from_start_end_tim": 7, "cre": [7, 11, 14, 18, 19, 20, 24], "end": 7, "s": [7, 15, 17, 22], "exclus": 7, "end_tim": 7, "range_from_start_end_time_inclusiv": 7, "audiopath": 7, "tiempo": 7, "Estado": 7, "playbacks": 7, "currenttim": 7, "videolay": 7, "mud": [7, 17], "audiooffset": 7, "compens": 7, "dereproduccion": 8, "edl": [8, 20], "seleccion": [8, 12, 14, 15, 17, 18, 19, 20, 22], "oti": [8, 14, 19, 22], "camin": [8, 20, 21, 22], "fileitem": 8, "filemodelitem": 8, "playlistindex": 8, "plugins": 9, "deb": [11, 14, 18, 20, 21], "remplaz": [], "import": [9, 11, 19, 20, 22], "from": [9, 11], "demoplugin": 9, "defin": [9, 11, 19], "propi": [14, 18, 19, 21, 22], "variabl": [9, 11, 17, 22], "aqu": [9, 19, 22], "def": [9, 11], "__init__": [9, 11], "sup": [9, 11, 14], "pass": 11, "metod": 9, "ejecu": [], "run": 9, "print": [9, 11], "hell": [9, 11], "est\u00f1a": [], "diccionari": 9, "menu": [9, 11, 15, 16, 18, 19, 22], "clav": [], "menus": [9, 11, 17], "hol": [9, 11], "reproduc": [12, 14, 15, 16, 17, 19, 21], "adel": [10, 12, 15, 17, 20, 23], "playforward": [], "reemplaz": 9, "dict": 9, "funcion": [10, 12, 15, 19, 20, 22], "cach": [10, 13, 16, 20, 23], "gigabyt": [10, 20, 23], "leer": [10, 21], "atras": [10, 12, 15, 17, 20, 21, 23], "arg0": [10, 12], "memori": [10, 20, 23], "suport": 11, "permit": [11, 14, 15, 17, 18, 19, 20, 22, 23], "yend": 11, "mas": [11, 14, 15, 17, 19, 20, 21], "alla": 11, "consol": 11, "mrv2_python_plugins": 11, "directori": [11, 14, 22], "punt": [11, 15, 17, 20, 21], "linux": [11, 14, 22], "mac": [11, 14], "semi": 11, "windows": [11, 14, 22], "resid": 11, "alli": 11, "comun": 11, "py": 11, "ten": [11, 18, 19, 20], "estructur": 11, "holaplugin": 11, "desd": [11, 14, 17, 19, 20, 21], "complet": [11, 15, 17, 20], "refier": [11, 14], "mrv2_hell": 11, "distribu": 11, "basenam": 12, "directory": 12, "property": 12, "nam": 12, "once": 12, "pingpong": 12, "forward": 12, "rev": 12, "system": 12, "bucl": [12, 14, 15, 16, 17], "salt": [12, 17, 18, 19], "univesal": 13, "scen": [13, 19, 22], "description": [13, 19, 22], "rend": [13, 16], "points": 13, "wirefram": 13, "wireframeonsurfac": 13, "shadedflat": 13, "shadedsmooth": 13, "geomonly": 13, "geomflat": 13, "geomsmooth": 13, "renderwidth": 13, "ancho": 13, "complexity": 13, "complej": [13, 22], "model": 13, "dibuj": [13, 15, 16, 17, 19, 20, 21, 22], "enablelighting": 13, "ilumin": 13, "stagecachecount": 13, "escenari": 13, "diskcachebytecount": 13, "conte": 13, "bytes": 13, "disc": [13, 19, 20, 21, 22], "favor": 14, "document": [14, 15, 19, 22, 24], "github": 14, "https": [14, 24], "ggarra13": 14, "usted": [14, 15], "abriend": 14, "dmg": 14, "llev": [14, 18, 20], "icon": [14, 20], "aplic": [14, 19], "recomend": [14, 17, 22], "sobreescrib": 14, "notariz": 14, "cuand": [14, 17, 18, 20, 21, 22], "ejecut": [14, 19, 20], "avis": 14, "segur": [14, 15, 17, 19, 22], "internet": 14, "evit": 14, "necesit": [14, 17, 19, 21], "find": [14, 20], "ir": [14, 21], "presion": [14, 17, 18], "ctrl": [14, 15, 18], "boton": [14, 16, 17, 21, 22], "raton": [14, 16, 22], "Esta": [14, 15, 19, 22], "accion": [14, 17, 18, 20, 21, 22], "tra": 14, "advertent": 14, "per": [14, 17, 20, 21, 24], "vez": [14, 15, 17, 18, 20, 21, 22, 23], "tendr": [14, 17, 22], "abrirl": [14, 20], "hac": [14, 17, 18, 19, 20, 21, 22], "sol": [14, 15, 18, 19, 20], "chrom": 14, "tambien": [14, 17, 18, 20, 21], "protej": 14, "usual": [14, 17], "asegures": 14, "cliqu": [14, 17, 18, 22], "flech": [14, 15, 17, 18, 19, 21], "arrib": [14, 17, 18, 20, 21], "form": [14, 15, 18, 19, 20, 22], "No": [14, 22], "exe": 14, "direct": [14, 17, 18, 19], "carpet": [14, 15, 16, 20], "contenedor": 14, "explor": [14, 20], "descarg": [14, 22], "lueg": 14, "ahi": 14, "mensaj": [14, 20], "azul": [14, 15, 17], "smartscr": 14, "previn": 14, "arranqu": [14, 20, 22], "desconoc": 14, "pon": [14, 22], "pc": 14, "peligr": 14, "clique": [14, 17, 18, 22], "informacion": 14, "dic": 14, "simil": [14, 20], "aparec": [14, 20], "sig": 14, "intrucion": 14, "paquet": 14, "rpm": 14, "requier": 14, "teng": 14, "permis": 14, "administr": 14, "sud": 14, "debi": 14, "ubuntu": 14, "etc": [14, 19, 20, 21], "dpkg": 14, "i": [14, 15, 17, 21], "v0": [14, 16], "7": 14, "amd64": 14, "tar": 14, "gz": 14, "hat": 14, "rocky": 14, "Una": [14, 15, 18], "terminal": [14, 22], "enlac": 14, "simbol": 14, "usr": 14, "bin": 14, "Los": [14, 16, 18, 19, 20, 21, 22], "asoci": [14, 22], "extension": 14, "arranc": [14, 17, 21, 22], "facil": [14, 18, 19, 20], "escritori": [14, 19, 20, 22], "eleg": [14, 17, 20, 22], "organiz": [14, 17, 19], "descomprim": 14, "xf": 14, "Eso": 14, "podr": 14, "usand": [14, 20, 22], "script": 14, "bash": 14, "sh": 14, "encuentr": 14, "subdirectori": 14, "mientr": [14, 18, 19, 20, 21], "defect": [14, 15, 16, 17, 20, 23], "provist": [14, 18, 19], "lug": 14, "ventan": [14, 15, 16, 17, 18, 20], "nautilus": [14, 20], "dej": [14, 17, 22], "recurs": 14, "escan": 14, "clips": [14, 18, 19, 20], "seran": [14, 17, 18, 20, 22], "sequenci": 14, "Sin": 14, "embarg": 14, "nativ": [14, 19], "plataform": [14, 22], "proteg": 14, "OS": 14, "registr": [14, 20], "tampoc": 14, "quier": [14, 17, 18, 20, 21, 22], "hast": [14, 17], "convenient": 14, "poder": [14, 15], "familiaz": 14, "support": [14, 22], "vari": [14, 20, 22, 24], "requ": 14, "tres": [14, 17, 18], "test": 14, "mov": [14, 17, 19, 20], "0001": 14, "exr": [14, 19, 20, 21], "edit": [14, 19], "veloc": [14, 15, 16, 17, 19], "natural": [14, 22], "respet": 14, "codific": 14, "fps": [14, 16, 20], "imagen": [14, 17, 19, 20, 21], "seri": 14, "jpeg": 14, "tga": [14, 19], "usan": 14, "ajust": [14, 15, 17, 19, 21], "window": 14, "dpx": 14, "exrs": [14, 21], "tom": 14, "metadat": [14, 17, 20], "dispon": [14, 17, 18, 19, 20, 22, 23], "visibl": 14, "empez": [14, 17], "verl": [14, 21], "mostr": [14, 16, 18, 20], "f4": [14, 15, 20], "Con": [14, 17, 18, 22], "ver": [14, 19, 21], "comport": [14, 16, 17, 20, 22, 23], "aut": 14, "vien": 15, "Las": [15, 18, 19, 20], "lleng": 15, "busc": [15, 22], "asign": 15, "mayus": 15, "alt": [15, 17], "program": 15, "escap": [15, 18], "h": [15, 17], "enmarc": 15, "pantall": [15, 17, 18, 19, 21], "f": [15, 17], "textur": 15, "are": [15, 16, 18, 19], "d": 15, "mosaic": [15, 19, 20], "c": [15, 22], "roj": [15, 17, 18, 22], "r": [15, 17], "verd": [15, 17, 18], "g": [15, 17], "retroced": 15, "izq": 15, "retrodecd": 15, "avanz": 15, "siguient": [15, 17, 18, 20, 22], "der": 15, "up": [15, 17], "j": 15, "direccion": [15, 20], "espaci": [15, 17, 21], "down": 15, "k": 15, "inici": [15, 21], "fin": [15, 21], "ping": [15, 17, 21], "pong": [15, 17, 21], "pag": 15, "av": 15, "cort": 15, "copi": [15, 20, 22], "peg": [15, 18], "v": [15, 24], "insert": 15, "elimin": 15, "deshac": [15, 18], "edicion": [15, 17, 19], "rehac": [15, 18], "barr": [15, 16, 18, 20, 21], "f1": [15, 17], "superior": [15, 16, 22], "pixel": [15, 16, 17, 18], "f2": [15, 17], "f3": [15, 17], "estatus": [15, 17, 21, 22], "herramient": [15, 17, 18, 19, 20, 22], "f7": [15, 17, 18], "f11": [15, 17], "present": [15, 17, 18, 20], "f12": [15, 17], "flot": 15, "vist": [15, 16, 20], "secundari": 15, "n": [15, 22], "u": 15, "miniatur": [15, 17], "transicion": 15, "marcador": [15, 18], "reset": [15, 17, 22], "gain": 15, "mayor": [15, 19, 21], "exposicion": [15, 17, 19], "men": [15, 17, 22], "oci": [15, 16, 17, 19, 20], "freg": [15, 19], "rectangul": [15, 19, 20, 22], "circul": [15, 19], "t": 15, "tama\u00f1": [15, 17, 18, 19, 21], "lapiz": 15, "establec": [15, 17, 20, 22], "fond": [15, 21, 22], "negr": [15, 17, 22], "hud": 15, "Un": [9, 15, 17, 19, 20], "p": 15, "inform": [15, 16, 17], "f5": 15, "f6": [15, 20], "f8": 15, "disposit": 15, "f9": [15, 20, 23], "histogram": [15, 16], "vectorscopi": [15, 16], "alternalr": 15, "onda": 15, "f10": [15, 22], "bitacor": [15, 16, 22], "acerc": [15, 17, 18], "Qu\u00e9": 16, "8": [16, 17], "descripcion": 16, "general": 16, "compil": 16, "instal": 16, "lanz": 16, "carg": [16, 19, 20, 21], "drag": [16, 19], "and": [16, 19], "drop": [16, 19], "buscador": [16, 20], "recient": 16, "mir": 16, "ocult": [16, 18, 22], "divisor": 16, "context": 16, "modific": [16, 17, 20, 22], "naveg": [16, 19], "especif": [16, 18], "languaj": 16, "posicion": [16, 17, 19], "arhiv": 16, "mape": [16, 20], "error": [16, 17, 20], "prove": 17, "shift": [17, 18, 21], "estan": [17, 19, 20, 22], "tambi": [17, 18, 20], "mous": [17, 22], "tercer": 17, "cuart": 17, "cursor": 17, "desactiv": 17, "imprim": 17, "sab": 17, "scrubbing": 17, "algun": [17, 19, 22], "util": [17, 18, 20, 21, 24], "cualqu": [17, 18, 19], "Estos": [17, 24], "salis": 17, "siempr": [17, 18, 21], "configur": [17, 20, 22, 23], "inspeccion": [17, 19], "sosten": 17, "pan": [17, 19], "grafic": [17, 18, 19, 20, 21, 22], "sosteng": 17, "alej": [17, 18], "rued": [17, 22], "confort": 17, "factor": 17, "zoom": [17, 19], "fit": 17, "hotkey": 17, "porcentaj": 17, "particul": 17, "dig": 17, "2x": 17, "openexr": 17, "gananci": [17, 19], "desliz": 17, "lad": [17, 18], "Este": [17, 22], "opencolori": 17, "junt": [17, 20], "marc": [17, 18, 22], "deriv": 17, "especific": [17, 20], "cg": 17, "config": 17, "nuk": 17, "default": [17, 20, 22], "studi": 17, "precedent": 17, "ondas": 17, "arrastr": [17, 22], "abaj": [17, 18, 20, 21], "rap": [17, 18, 21, 22], "pist": [17, 19, 20], "acercart": 17, "alejart": 17, "inmediat": 17, "normal": 17, "xsecuenci": 17, "digit": 17, "bastant": 17, "universal": [17, 19, 22], "much": [17, 20, 21, 22], "explic": 17, "Hay": [17, 18, 22], "paus": 17, "haci": [17, 21], "delant": [17, 21], "second": [17, 21], "des": 17, "botond": 17, "rapid": [17, 19, 20], "E": 17, "equivalent": 17, "part": 17, "inferior": 17, "prov": [17, 18, 19], "bocin": 17, "establez": 17, "har": 17, "dentendr": 17, "aparient": 17, "film": 17, "masc": [17, 19, 22], "recort": 17, "darl": 17, "aspect": [17, 19], "cinematograf": 17, "determin": 17, "entrar": [17, 18, 20, 21], "heads": 17, "independient": 17, "usa": [17, 20, 22, 23], "gris": 17, "oscur": 17, "vac": 17, "legal": 17, "ningun": [17, 22], "premultiplic": 17, "cerc": [17, 19], "lej": [17, 22], "cercan": 17, "lineal": 17, "soport": [17, 19], "logic": 17, "empotr": [17, 19, 20], "flotat": 17, "arrstra": 17, "peque\u00f1": 17, "amarill": [17, 18], "tal": [17, 22], "grand": 17, "asi": [17, 20, 22], "caracterist": [18, 19, 20, 22], "comentari": 18, "compart": [18, 19, 22], "visual": [18, 19], "coleg": [18, 19], "uso": [18, 19], "fij": 18, "inter": 18, "cualqui": [18, 19, 20, 22], "vec": [18, 20, 22], "empiec": 18, "traz": 18, "visor": [18, 19, 21, 22], "automat": [18, 20, 22], "suav": [18, 20], "dur": [18, 20], "depend": 18, "fantasm": [18, 20], "cuant": [18, 20, 23], "ocurr": [18, 20], "previous": 18, "Entre": 18, "conten": [18, 19], "seccion": [18, 20, 22], "delet": 18, "backspac": 18, "undo": 18, "gom": [18, 19], "parcial": 18, "total": [18, 19], "presenci": 18, "liger": 18, "respect": 18, "entend": 18, "comienc": [18, 22], "figur": 18, "rasteriz": 18, "march": 18, "tarjet": [18, 21], "pincel": [18, 19, 20], "bord": 18, "libr": 18, "bosquej": 18, "prefier": 18, "recuerd": 18, "export": [18, 19], "dentr": [18, 19, 22], "Laser": [18, 20], "persistent": 18, "desaparec": 18, "tras": 18, "revision": [18, 19], "continu": [18, 19], "escrib": [18, 20, 21], "recuadr": 18, "tipograf": [18, 19, 20], "content": 18, "cruz": [18, 22], "descart": 18, "flipbook": 19, "profesional": 19, "codig": [19, 20], "abiert": [19, 22], "industri": 19, "efect": 19, "anim": 19, "focaliz": 19, "intuit": 19, "motor": 19, "performanc": 19, "integr": 19, "pipelin": 19, "estudi": 19, "customiz": [19, 22], "coleccion": 19, "multitud": 19, "format": 19, "especializ": 19, "agrup": 19, "visualiz": 19, "interact": 19, "colabor": 19, "fluj": 19, "esencial": 19, "equip": 19, "post": 19, "production": 19, "demand": [19, 21], "arte": 19, "fuent": 19, "instantan": 19, "pixels": 19, "traves": [19, 22], "multipl": [19, 20], "solucion": 19, "robust": 19, "sid": [19, 21], "despleg": 19, "individu": 19, "diari": 19, "augost": 19, "2022": 19, "fas": 19, "desarroll": [19, 24], "todav": 19, "plen": 19, "trabaj": 19, "resum": 19, "virtual": 19, "hoy": 19, "tif": 19, "jpg": 19, "psd": 19, "mp4": 19, "webm": 19, "use": [19, 20, 21], "constru": 19, "scripts": 19, "reproductor": [19, 20], "revers": 19, "opentimelinei": [19, 20], "fund": 19, "pix": [19, 22], "annot": 19, "individual": 19, "simpl": [19, 22], "opac": 19, "suaviz": 19, "flexibil": 19, "utf": 19, "internacional": 19, "japones": 19, "productor": 19, "precis": 19, "v2": 19, "colour": 19, "management": 19, "interaccion": [19, 20], "correcion": 19, "rgba": 19, "sobreposicion": 19, "predefin": [19, 20], "monitor": 19, "sincron": [19, 20], "sincroniz": 19, "lan": 19, "local": [19, 22], "servidor": [19, 20, 22], "client": [19, 20, 22], "mrv2s": 19, "keys": [19, 22], "prefs": [19, 22], "interpret": 19, "bocet": 20, "podes": [20, 22], "herrameint": 20, "pod": [20, 21], "permanent": 20, "desvanec": 20, "podras": 20, "impres": [20, 22], "grabas": 20, "minim": 20, "maxim": [20, 21], "promedi": 20, "realiz": 20, "sum": 20, "in": [9, 20], "out": 20, "despues": 20, "superpon": 20, "esfer": 20, "Te": 20, "rot": 20, "by": 20, "siet": 20, "click": 20, "emergent": 20, "dand": 20, "acces": 20, "clon": 20, "sub": 20, "portapapel": 20, "recolect": 20, "queres": 20, "email": 20, "archivosr": 20, "abre": [20, 22], "localiz": [20, 22], "emit": 20, "Al": [20, 22], "provien": 20, "tembien": 20, "durant": [20, 24], "ignor": [20, 21, 22], "nunc": 20, "meid": 20, "information": 20, "caball": 20, "batall": 20, "codecs": [20, 21], "session": 20, "maquin": [20, 22], "conect": [20, 22], "dich": 20, "distingu": 20, "ipv4": 20, "ipv6": 20, "ali": 20, "utiliz": 20, "hosts": 20, "ademas": [20, 24], "puert": [20, 22], "55150": 20, "bien": [20, 22], "coneccion": [20, 22], "cab": 20, "asegur": 20, "cortafueg": [20, 22], "permt": 20, "entrant": 20, "salient": 20, "port": [20, 22], "conoc": [20, 22], "edls": 20, "solt": 20, "resolu": [20, 21], "cantid": 20, "asum": 20, "exist": 20, "acced": 20, "cad": [20, 21, 22], "different": 20, "divid": 20, "tipe": 20, "editor": 20, "cache": 20, "mit": [20, 23], "ram": [20, 23], "left": 20, "right": 20, "esteror": 20, "anaglif": 20, "cuadricul": 20, "column": 20, "calid": 20, "van": 20, "signif": 21, "cos": 21, "record": 21, "azar": 21, "widget": 21, "detien": 21, "deten": 21, "trat": 21, "decodific": 21, "guard": [21, 22], "eficient": 21, "entiend": 21, "delg": 21, "obvi": 21, "crec": 21, "ello": 21, "lent": [21, 22], "unas": 21, "alta": 21, "esper": 21, "via": 21, "cas": [21, 22], "capaz": 21, "pes": 21, "optimiz": 21, "mejor": 21, "hardwar": 21, "empat": [21, 22], "rati": 21, "transferent": 21, "comprim": 21, "dwa": 21, "dwb": 21, "caching": 21, "\u00e9ste": 21, "llend": 22, "personal": 22, "filmaur": 22, "hom": 22, "users": 22, "resetsettings": 22, "va": 22, "ataj": 22, "paths": 22, "favorit": 22, "Es": 22, "permanezc": 22, "reescal": 22, "reposicion": 22, "Estas": 22, "Est\u00e1": 22, "section": 22, "aparc": 22, "cuan": 22, "encabez": 22, "aca": 22, "fltk": 22, "gtk": 22, "interaz": 22, "black": 22, "unus": 22, "vent": 22, "rellen": 22, "ls": 22, "Sino": 22, "prend": 22, "reconoc": 22, "desacel": 22, "dramat": 22, "viej": 22, "priv": 22, "tan": 22, "pront": 22, "muev": 22, "wayland": 22, "selccion": 22, "hex": 22, "original": 22, "proces": 22, "hsv": 22, "hsl": 22, "cie": 22, "xyz": 22, "xyy": 22, "lab": 22, "cielab": 22, "luv": 22, "cieluv": 22, "yuv": 22, "analog": 22, "pal": 22, "ydbdr": 22, "secam": 22, "yiq": 22, "ntsc": 22, "itu": 22, "601": 22, "digital": 22, "ycbcr": 22, "709": 22, "hdtv": 22, "luminanc": 22, "lumm": 22, "lightness": 22, "\u00e9stos": 22, "De": 22, "profund": 22, "bits": 22, "repet": 22, "expresion": 22, "regul": 22, "_v": 22, "cheque": 22, "versiond": 22, "remot": 22, "gga": 22, "unix": 22, "as": 22, "agrag": 22, "remuev": 22, "envi": 22, "recib": 22, "nad": 22, "muell": 22, "gb": 23, "usen": 24, "referent": 24, "www": 24, "youtub": 24, "watch": 24, "8jviz": 24, "ppcrg": 24, "plxj9nnbdnfrmd8aq41ajymb7whn99g5c": 24, "dictionary": [], "of": [], "entri": [], "with": [], "callbacks": [], "lik": [], "nem": [], "must": [], "be": [], "overrid": [], "new": 9, "play": [], "your": [], "own": [], "her": [], "exampl": [], "method": [], "for": [], "callback": [], "optional": [], "wheth": [], "is": [], "dem": [], "constructor": 9, "if": [], "otherwis": [], "rtype": 9, "corresponding": [], "new_menus": [], "sino": 9, "llav": 9, "correspondient": 9, "instanci": 22, "archivi": 22, "\u00e9stas": 22, "redireccion": 22, "notes": 22, "moment": 22, "compor": 22, "tcp": 22, "em": 22, "55120": 22, "abra": 22, "necesari": 22}, "objects": {"": [[7, 0, 0, "-", "mrv2"]], "mrv2": [[7, 1, 1, "", "FileMedia"], [7, 1, 1, "", "Path"], [7, 1, 1, "", "RationalTime"], [7, 1, 1, "", "TimeRange"], [1, 0, 0, "-", "annotations"], [2, 0, 0, "-", "cmd"], [3, 0, 0, "-", "image"], [5, 0, 0, "-", "math"], [6, 0, 0, "-", "media"], [8, 0, 0, "-", "playlist"], [9, 0, 0, "-", "plugin"], [10, 0, 0, "-", "settings"], [12, 0, 0, "-", "timeline"], [13, 0, 0, "-", "usd"]], "mrv2.FileMedia": [[7, 2, 1, "", "audioOffset"], [7, 2, 1, "", "audioPath"], [7, 2, 1, "", "currentTime"], [7, 2, 1, "", "inOutRange"], [7, 2, 1, "", "loop"], [7, 2, 1, "", "mute"], [7, 2, 1, "", "path"], [7, 2, 1, "", "playback"], [7, 2, 1, "", "timeRange"], [7, 2, 1, "", "videoLayer"], [7, 2, 1, "", "volume"]], "mrv2.Path": [[7, 3, 1, "", "get"], [7, 3, 1, "", "getBaseName"], [7, 3, 1, "", "getDirectory"], [7, 3, 1, "", "getExtension"], [7, 3, 1, "", "getNumber"], [7, 3, 1, "", "getPadding"], [7, 3, 1, "", "isAbsolute"], [7, 3, 1, "", "isEmpty"]], "mrv2.RationalTime": [[7, 3, 1, "", "almost_equal"], [7, 3, 1, "", "duration_from_start_end_time"], [7, 3, 1, "", "duration_from_start_end_time_inclusive"], [7, 3, 1, "", "from_frames"], [7, 3, 1, "", "from_seconds"], [7, 3, 1, "", "from_time_string"], [7, 3, 1, "", "from_timecode"], [7, 3, 1, "", "is_invalid_time"], [7, 3, 1, "", "is_valid_timecode_rate"], [7, 3, 1, "", "nearest_valid_timecode_rate"], [7, 3, 1, "", "rescaled_to"], [7, 3, 1, "", "to_frames"], [7, 3, 1, "", "to_seconds"], [7, 3, 1, "", "to_time_string"], [7, 3, 1, "", "to_timecode"], [7, 3, 1, "", "value_rescaled_to"]], "mrv2.TimeRange": [[7, 3, 1, "", "before"], [7, 3, 1, "", "begins"], [7, 3, 1, "", "clamped"], [7, 3, 1, "", "contains"], [7, 3, 1, "", "duration_extended_by"], [7, 3, 1, "", "end_time_exclusive"], [7, 3, 1, "", "end_time_inclusive"], [7, 3, 1, "", "extended_by"], [7, 3, 1, "", "finishes"], [7, 3, 1, "", "intersects"], [7, 3, 1, "", "meets"], [7, 3, 1, "", "overlaps"], [7, 3, 1, "", "range_from_start_end_time"], [7, 3, 1, "", "range_from_start_end_time_inclusive"]], "mrv2.annotations": [[1, 4, 1, "", "add"]], "mrv2.cmd": [[2, 4, 1, "", "close"], [2, 4, 1, "", "closeAll"], [2, 4, 1, "", "compare"], [2, 4, 1, "", "compareOptions"], [2, 4, 1, "", "displayOptions"], [2, 4, 1, "", "environmentMapOptions"], [2, 4, 1, "", "getLayers"], [2, 4, 1, "", "imageOptions"], [2, 4, 1, "", "isMuted"], [2, 4, 1, "", "lutOptions"], [2, 4, 1, "", "oepnSession"], [2, 4, 1, "", "open"], [2, 4, 1, "", "save"], [2, 4, 1, "", "savePDF"], [2, 4, 1, "", "saveSession"], [2, 4, 1, "", "saveSessionAs"], [2, 4, 1, "", "setCompareOptions"], [2, 4, 1, "", "setDisplayOptions"], [2, 4, 1, "", "setEnvironmentMapOptions"], [2, 4, 1, "", "setImageOptions"], [2, 4, 1, "", "setLUTOptions"], [2, 4, 1, "", "setMute"], [2, 4, 1, "", "setStereo3DOptions"], [2, 4, 1, "", "setVolume"], [2, 4, 1, "", "stereo3DOptions"], [2, 4, 1, "", "update"], [2, 4, 1, "", "volume"]], "mrv2.image": [[3, 1, 1, "", "AlphaBlend"], [3, 1, 1, "", "Channels"], [3, 1, 1, "", "Color"], [3, 1, 1, "", "DisplayOptions"], [3, 1, 1, "", "EnvironmentMapOptions"], [3, 1, 1, "", "EnvironmentMapType"], [3, 1, 1, "", "ImageFilter"], [3, 1, 1, "", "ImageFilters"], [3, 1, 1, "", "ImageOptions"], [3, 1, 1, "", "InputVideoLevels"], [3, 1, 1, "", "LUTOptions"], [3, 1, 1, "", "LUTOrder"], [3, 1, 1, "", "Levels"], [3, 1, 1, "", "Mirror"], [3, 1, 1, "", "SoftClip"], [3, 1, 1, "", "Stereo3DInput"], [3, 1, 1, "", "Stereo3DOptions"], [3, 1, 1, "", "Stereo3DOutput"], [3, 1, 1, "", "VideoLevels"], [3, 1, 1, "", "YUVCoefficients"]], "mrv2.image.Color": [[3, 2, 1, "", "add"], [3, 2, 1, "", "brightness"], [3, 2, 1, "", "contrast"], [3, 2, 1, "", "enabled"], [3, 2, 1, "", "invert"], [3, 2, 1, "", "saturation"], [3, 2, 1, "", "tint"]], "mrv2.image.DisplayOptions": [[3, 2, 1, "", "channels"], [3, 2, 1, "", "color"], [3, 2, 1, "", "levels"], [3, 2, 1, "", "mirror"], [3, 2, 1, "", "softClip"]], "mrv2.image.EnvironmentMapOptions": [[3, 2, 1, "", "focalLength"], [3, 2, 1, "", "horizontalAperture"], [3, 2, 1, "", "rotateX"], [3, 2, 1, "", "rotateY"], [3, 2, 1, "", "spin"], [3, 2, 1, "", "subdivisionX"], [3, 2, 1, "", "subdivisionY"], [3, 2, 1, "", "type"], [3, 2, 1, "", "verticalAperture"]], "mrv2.image.ImageFilters": [[3, 2, 1, "", "magnify"], [3, 2, 1, "", "minify"]], "mrv2.image.ImageOptions": [[3, 2, 1, "", "alphaBlend"], [3, 2, 1, "", "imageFilters"], [3, 2, 1, "", "videoLevels"]], "mrv2.image.LUTOptions": [[3, 2, 1, "", "fileName"], [3, 2, 1, "", "order"]], "mrv2.image.Levels": [[3, 2, 1, "", "enabled"], [3, 2, 1, "", "gamma"], [3, 2, 1, "", "inHigh"], [3, 2, 1, "", "inLow"], [3, 2, 1, "", "outHigh"], [3, 2, 1, "", "outLow"]], "mrv2.image.Mirror": [[3, 2, 1, "", "x"], [3, 2, 1, "", "y"]], "mrv2.image.SoftClip": [[3, 2, 1, "", "enabled"], [3, 2, 1, "", "value"]], "mrv2.image.Stereo3DOptions": [[3, 2, 1, "", "eyeSeparation"], [3, 2, 1, "", "input"], [3, 2, 1, "", "output"], [3, 2, 1, "", "swapEyes"]], "mrv2.math": [[5, 1, 1, "", "Vector2f"], [5, 1, 1, "", "Vector2i"], [5, 1, 1, "", "Vector3f"], [5, 1, 1, "", "Vector4f"]], "mrv2.math.Vector2f": [[5, 2, 1, "", "x"], [5, 2, 1, "", "y"]], "mrv2.math.Vector2i": [[5, 2, 1, "", "x"], [5, 2, 1, "", "y"]], "mrv2.math.Vector3f": [[5, 2, 1, "", "x"], [5, 2, 1, "", "y"], [5, 2, 1, "", "z"]], "mrv2.math.Vector4f": [[5, 2, 1, "", "w"], [5, 2, 1, "", "x"], [5, 2, 1, "", "y"], [5, 2, 1, "", "z"]], "mrv2.media": [[6, 4, 1, "", "Afile"], [6, 4, 1, "", "Aindex"], [6, 4, 1, "", "BIndexes"], [6, 4, 1, "", "Bfiles"], [6, 1, 1, "", "CompareMode"], [6, 1, 1, "", "CompareOptions"], [6, 4, 1, "", "activeFiles"], [6, 4, 1, "", "clearB"], [6, 4, 1, "", "close"], [6, 4, 1, "", "closeAll"], [6, 4, 1, "", "firstVersion"], [6, 4, 1, "", "lastVersion"], [6, 4, 1, "", "layers"], [6, 4, 1, "", "list"], [6, 4, 1, "", "nextVersion"], [6, 4, 1, "", "previousVersion"], [6, 4, 1, "", "setA"], [6, 4, 1, "", "setB"], [6, 4, 1, "", "setLayer"], [6, 4, 1, "", "setStereo"], [6, 4, 1, "", "toggleB"]], "mrv2.media.CompareOptions": [[6, 2, 1, "", "mode"], [6, 2, 1, "", "overlay"], [6, 2, 1, "", "wipeCenter"], [6, 2, 1, "", "wipeRotation"]], "mrv2.playlist": [[8, 4, 1, "", "add_clip"], [8, 4, 1, "", "list"], [8, 4, 1, "", "save"], [8, 4, 1, "", "select"]], "mrv2.plugin": [[9, 1, 1, "", "Plugin"]], "mrv2.plugin.Plugin": [[9, 3, 1, "", "active"], [9, 3, 1, "", "menus"]], "mrv2.settings": [[10, 4, 1, "", "memory"], [10, 4, 1, "", "readAhead"], [10, 4, 1, "", "readBehind"], [10, 4, 1, "", "setMemory"], [10, 4, 1, "", "setReadAhead"], [10, 4, 1, "", "setReadBehind"]], "mrv2.timeline": [[12, 1, 1, "", "FileSequenceAudio"], [12, 1, 1, "", "Loop"], [12, 1, 1, "", "Playback"], [12, 1, 1, "", "TimerMode"], [12, 4, 1, "", "frame"], [12, 4, 1, "", "inOutRange"], [12, 4, 1, "", "loop"], [12, 4, 1, "", "playBackwards"], [12, 4, 1, "", "playForwards"], [12, 4, 1, "", "seconds"], [12, 4, 1, "", "seek"], [12, 4, 1, "", "setIn"], [12, 4, 1, "", "setInOutRange"], [12, 4, 1, "", "setLoop"], [12, 4, 1, "", "setOut"], [12, 4, 1, "", "stop"], [12, 4, 1, "", "time"], [12, 4, 1, "", "timeRange"]], "mrv2.timeline.FileSequenceAudio": [[12, 5, 1, "", "name"]], "mrv2.timeline.Loop": [[12, 5, 1, "", "name"]], "mrv2.timeline.Playback": [[12, 5, 1, "", "name"]], "mrv2.timeline.TimerMode": [[12, 5, 1, "", "name"]], "mrv2.usd": [[13, 1, 1, "", "DrawMode"], [13, 1, 1, "", "RenderOptions"], [13, 4, 1, "", "renderOptions"], [13, 4, 1, "", "setRenderOptions"]], "mrv2.usd.RenderOptions": [[13, 2, 1, "", "complexity"], [13, 2, 1, "", "diskCacheByteCount"], [13, 2, 1, "", "drawMode"], [13, 2, 1, "", "enableLighting"], [13, 2, 1, "", "renderWidth"], [13, 2, 1, "", "stageCacheCount"]]}, "objtypes": {"0": "py:module", "1": "py:class", "2": "py:attribute", "3": "py:method", "4": "py:function", "5": "py:property"}, "objnames": {"0": ["py", "module", "Python m\u00f3dulo"], "1": ["py", "class", "Python clase"], "2": ["py", "attribute", "Python atributo"], "3": ["py", "method", "Python m\u00e9todo"], "4": ["py", "function", "Python funci\u00f3n"], "5": ["py", "property", "Python propiedad"]}, "titleterms": {"bienven": 0, "document": 0, "mrv2": [0, 7, 14, 16, 17, 19], "tabl": 0, "conten": 0, "indic": [0, 17], "modul": [1, 2, 3, 5, 6, 7, 8, 9, 10, 12, 13], "anot": [1, 18, 20], "cmd": 2, "imag": [3, 22], "python": [4, 20], "api": 4, "math": 5, "medi": [6, 14, 20], "playlist": 8, "plugin": 9, "settings": 10, "sistem": 11, "plug": 11, "ins": 11, "timelin": 12, "usd": [13, 20, 22], "comenz": [14, 22], "compil": 14, "instal": 14, "lanz": 14, "carg": [14, 22], "drag": 14, "and": [14, 17, 22], "drop": 14, "buscador": [14, 22], "menu": [14, 17, 20], "recient": 14, "line": [14, 17, 22], "comand": 14, "mir": 14, "tecl": [15, 21], "manej": 15, "gui": [16, 17], "usuari": [16, 22], "La": 17, "interfaz": [17, 22], "ocult": 17, "mostr": [17, 22], "element": [17, 22], "personaliz": 17, "interaccion": 17, "raton": [17, 20], "visor": 17, "barr": [17, 22], "superior": 17, "tiemp": [17, 22], "cuadr": [17, 21, 22], "control": 17, "transport": 17, "fps": [17, 21, 22], "start": 17, "end": 17, "fram": [17, 22], "indicator": 17, "play": 17, "view": 17, "controls": 17, "vist": [17, 22], "saf": [17, 22], "are": [17, 20, 22], "dat": 17, "window": 17, "display": [17, 22], "mask": 17, "hud": [17, 22], "rend": 17, "canal": 17, "volt": 17, "fond": 17, "nivel": 17, "vide": [17, 21, 24], "mezcl": 17, "alfa": 17, "filtr": 17, "minif": 17, "magnif": 17, "Los": 17, "panel": [17, 20, 22], "divisor": 17, "not": 18, "agreg": [18, 22], "dibuj": 18, "modific": 18, "naveg": 18, "introduccion": 19, "Qu\u00e9": 19, "version": [19, 22], "actual": [19, 21, 22], "v0": 19, "8": 19, "0": 19, "descripcion": 19, "general": 19, "color": [20, 22], "compar": 20, "map": 20, "entorn": 20, "archiv": [20, 22], "context": 20, "boton": 20, "derech": 20, "histogram": 20, "bitacor": 20, "inform": 20, "red": [20, 22], "list": 20, "reproduccion": [20, 21], "sete": [20, 23], "estere": 20, "3d": 20, "vectorscopi": 20, "mod": [21, 22], "bucl": [21, 22], "veloc": [21, 22], "especif": 21, "comport": 21, "cach": 21, "preferent": 22, "siempr": 22, "arrib": 22, "flot": 22, "secundari": 22, "Una": 22, "instanc": 22, "aut": 22, "reencuadr": 22, "normal": 22, "pantall": 22, "complet": 22, "present": 22, "ui": 22, "Las": 22, "menus": 22, "mac": 22, "tool": 22, "dock": 22, "Un": 22, "sol": 22, "ventan": 22, "gananci": 22, "gam": 22, "recort": 22, "zoom": 22, "languaj": 22, "lenguaj": 22, "esquem": 22, "tem": 22, "posicion": 22, "grab": 22, "sal": 22, "fij": 22, "tama\u00f1": 22, "tom": 22, "valor": 22, "arhiv": 22, "click": 22, "par": 22, "viaj": 22, "carpet": 22, "miniatur": 22, "activ": 22, "previ": 22, "usar": 22, "nativ": 22, "reproduc": 22, "per": 22, "second": 22, "segund": 22, "sensit": 22, "freg": 22, "edicion": 22, "transicion": 22, "marcador": 22, "pixel": 22, "rgba": 22, "lumin": 22, "oci": 22, "config": 22, "defect": 22, "use": 22, "displays": 22, "espaci": 22, "entrad": 22, "faltant": 22, "regex": 22, "maxim": 22, "imagen": 22, "apart": 22, "mape": 22, "elimin": 22, "error": 22, "tutorial": 24, "ingles": 24}, "envversion": {"sphinx.domains.c": 3, "sphinx.domains.changeset": 1, "sphinx.domains.citation": 1, "sphinx.domains.cpp": 9, "sphinx.domains.index": 1, "sphinx.domains.javascript": 3, "sphinx.domains.math": 2, "sphinx.domains.python": 4, "sphinx.domains.rst": 2, "sphinx.domains.std": 2, "sphinx.ext.intersphinx": 1, "sphinx.ext.todo": 2, "sphinx.ext.viewcode": 1, "sphinx": 60}, "alltitles": {"Bienvenido a la documentaci\u00f3n de mrv2!": [[0, "bienvenido-a-la-documentacion-de-mrv2"]], "Tabla de Contenidos": [[0, "tabla-de-contenidos"]], "\u00cdndices y tablas": [[0, "indices-y-tablas"]], "M\u00f3dulo de anotaciones": [[1, "module-mrv2.annotations"]], "M\u00f3dulo cmd": [[2, "module-mrv2.cmd"]], "M\u00f3dulo image": [[3, "module-mrv2.image"]], "Python API": [[4, "python-api"]], "M\u00f3dulo math": [[5, "module-mrv2.math"]], "M\u00f3dulo media": [[6, "module-mrv2.media"]], "M\u00f3dulo mrv2": [[7, "module-mrv2"]], "M\u00f3dulo playlist": [[8, "module-mrv2.playlist"]], "M\u00f3dulo de plugin": [[9, "module-mrv2.plugin"]], "M\u00f3dulo settings": [[10, "module-mrv2.settings"]], "Sistema de Plug-ins": [[11, "sistema-de-plug-ins"]], "Plug-ins": [[11, "plug-ins"]], "M\u00f3dulo timeline": [[12, "module-mrv2.timeline"]], "usd module": [[13, "module-mrv2.usd"]], "Comenzando": [[14, "comenzando"]], "Compilando mrv2": [[14, "compilando-mrv2"]], "Instalando mrv2": [[14, "instalando-mrv2"]], "Lanzando mrv2": [[14, "lanzando-mrv2"]], "Cargando Medios (Drag and Drop)": [[14, "cargando-medios-drag-and-drop"]], "Cargando Medios (Buscador de mrv2)": [[14, "cargando-medios-buscador-de-mrv2"]], "Cargando Medios (Menu Reciente)": [[14, "cargando-medios-menu-reciente"]], "Cargando Medios (L\u00ednea de comandos)": [[14, "cargando-medios-linea-de-comandos"]], "Mirando Medios": [[14, "mirando-medios"]], "Teclas de Manejo": [[15, "teclas-de-manejo"]], "Gu\u00eda del Usuario de mrv2": [[16, "guia-del-usuario-de-mrv2"]], "La interfaz de mrv2": [[17, "la-interfaz-de-mrv2"]], "Ocultando/Mostrando Elementos de la GUI": [[17, "ocultando-mostrando-elementos-de-la-gui"]], "Personalizando la Interfaz": [[17, "personalizando-la-interfaz"]], "Interacci\u00f3n del Rat\u00f3n en el Visor": [[17, "interaccion-del-raton-en-el-visor"]], "La Barra Superior": [[17, "la-barra-superior"]], "La L\u00ednea de Tiempo": [[17, "la-linea-de-tiempo"]], "Indicador de Cuadro": [[17, "indicador-de-cuadro"]], "Controles de Transporte": [[17, "controles-de-transporte"]], "FPS": [[17, "fps"]], "Start and End Frame Indicator": [[17, "start-and-end-frame-indicator"]], "Player/Viewer Controls": [[17, "player-viewer-controls"]], "Menu de Vista": [[17, "menu-de-vista"]], "Safe Areas": [[17, null], [22, null]], "Data Window": [[17, null]], "Display Window": [[17, null]], "Mask": [[17, null]], "HUD": [[17, null], [22, null]], "Men\u00fa de Render": [[17, "menu-de-render"]], "Canales": [[17, null]], "Voltear": [[17, null]], "Fondo": [[17, null]], "Niveles de V\u00eddeo": [[17, null]], "Mezcla Alfa": [[17, null]], "Filtros de Minificaci\u00f3n y Magnificaci\u00f3n": [[17, null]], "Los Paneles": [[17, "los-paneles"]], "Divisor": [[17, "divisor"]], "Notas y Anotaciones": [[18, "notas-y-anotaciones"]], "Agregando una Nota o Dibujo": [[18, "agregando-una-nota-o-dibujo"]], "Modificando una Nota": [[18, "modificando-una-nota"]], "Navegando Notas": [[18, "navegando-notas"]], "Dibujando Anotaciones": [[18, "dibujando-anotaciones"]], "Introducci\u00f3n": [[19, "introduccion"]], "\u00bfQu\u00e9 es mrv2?": [[19, "que-es-mrv2"]], "Versi\u00f3n Actual: v0.8.0 - Descripci\u00f3n General": [[19, "version-actual-v0-8-0-descripcion-general"]], "Paneles": [[20, "paneles"]], "Panel de Anotaciones": [[20, "panel-de-anotaciones"]], "Panel de \u00c1rea de Color": [[20, "panel-de-area-de-color"]], "Panel de Color": [[20, "panel-de-color"]], "Panel de Comparar": [[20, "panel-de-comparar"]], "Panel de Mapa de Entorno": [[20, "panel-de-mapa-de-entorno"]], "Panel de Archivos": [[20, "panel-de-archivos"]], "Men\u00fa de Contexto del Panel de Archivos (Bot\u00f3n derecho del rat\u00f3n)": [[20, "menu-de-contexto-del-panel-de-archivos-boton-derecho-del-raton"]], "Panel de Histograma": [[20, "panel-de-histograma"]], "Panel de Bit\u00e1cora": [[20, "panel-de-bitacora"]], "Panel de Informaci\u00f3n del Medio": [[20, "panel-de-informacion-del-medio"]], "Panel de Red": [[20, "panel-de-red"]], "Panel de Lista de Reproducci\u00f3n": [[20, "panel-de-lista-de-reproduccion"]], "Panel de Python": [[20, "panel-de-python"]], "Panel de Seteos": [[20, "panel-de-seteos"]], "Panel de Est\u00e9reo 3D": [[20, "panel-de-estereo-3d"]], "Panel de USD": [[20, "panel-de-usd"]], "Panel de Vectorscopio": [[20, "panel-de-vectorscopio"]], "Reproducci\u00f3n de V\u00eddeo": [[21, "reproduccion-de-video"]], "Cuadro Actual": [[21, "cuadro-actual"]], "Modos de Bucle": [[21, "modos-de-bucle"]], "Velocidad de FPS": [[21, "velocidad-de-fps"]], "Teclas Espec\u00edficas de Reproducci\u00f3n": [[21, "teclas-especificas-de-reproduccion"]], "Comportamiento del Cache": [[21, "comportamiento-del-cache"]], "Preferencias": [[22, "preferencias"]], "Interfaz del Usuario": [[22, "interfaz-del-usuario"]], "Siempre Arriba y Flotar Vista Secundaria": [[22, null]], "Una Instance": [[22, null]], "Auto Reencuadrar la imagen": [[22, null]], "Normal, Pantalla Completa and Presentaci\u00f3n": [[22, null]], "Elementos de UI": [[22, "elementos-de-ui"]], "Las barras de la UI": [[22, null]], "Menus macOS": [[22, null]], "Tool Dock": [[22, null]], "Un Solo Panel": [[22, null]], "Ventana de Vista": [[22, "ventana-de-vista"]], "Ganancia y Gama": [[22, null]], "Recorte": [[22, null]], "Velocidad de Zoom": [[22, null]], "Languaje y Colores": [[22, "languaje-y-colores"]], "Lenguaje": [[22, null]], "Esquema": [[22, null]], "Tema de Color": [[22, null]], "Colores de Vista": [[22, null]], "Posicionado": [[22, "posicionado"]], "Siempre Grabe al Salir": [[22, null]], "Posici\u00f3n Fija": [[22, null]], "Tama\u00f1o Fijo": [[22, null]], "Tomar los Valores Actuales de la Ventana": [[22, null]], "Buscador de Arhivos": [[22, "buscador-de-arhivos"]], "Un Solo Click para Viajar por Carpetas": [[22, null]], "Miniaturas Activas": [[22, null]], "Vista Previa de Miniaturas de USD": [[22, null]], "Usar el Buscador de Archivos Nativo": [[22, null]], "Reproducir": [[22, "reproducir"]], "Auto Reproducir": [[22, null]], "FPS (Frames per Second o Cuadros por Segundo)": [[22, null]], "Modo de Bucle": [[22, null]], "Sensitividad de Fregado": [[22, null]], "L\u00ednea de Tiempo": [[22, "linea-de-tiempo"]], "Display": [[22, null]], "Vista Previa de Miniaturas": [[22, null], [22, null]], "Ventana de Edici\u00f3n": [[22, "ventana-de-edicion"]], "Comenzar en Modo de Edici\u00f3n": [[22, null]], "Mostrar Transiciones": [[22, null]], "Mostrar Marcadores": [[22, null]], "Barra de Pixel": [[22, "barra-de-pixel"]], "Display RGBA": [[22, null]], "Valores de Pixel": [[22, null]], "Display Secundario": [[22, null]], "Luminancia": [[22, null]], "OCIO": [[22, "ocio"]], "Archivo Config de OCIO": [[22, null]], "OCIO por Defecto": [[22, "ocio-por-defecto"]], "Use Vistas Activas y Displays Activos": [[22, null]], "Espacio de Entrada de Color": [[22, null]], "Cargando": [[22, "cargando"]], "Cuadro Faltante": [[22, null]], "Regex de Versi\u00f3n": [[22, null]], "M\u00e1ximas Im\u00e1genes Aparte": [[22, null]], "Mapeo de Carpetas": [[22, "mapeo-de-carpetas"]], "Agregar Carpetas": [[22, null]], "Eliminar Carpetas": [[22, null]], "Red": [[22, "red"]], "Errores": [[22, "errores"]], "Seteos": [[23, "seteos"]], "Tutoriales de Video (en Ingl\u00e9s)": [[24, "tutoriales-de-video-en-ingles"]]}, "indexentries": {"add() (en el m\u00f3dulo mrv2.annotations)": [[1, "mrv2.annotations.add"]], "module": [[1, "module-mrv2.annotations"], [2, "module-mrv2.cmd"], [3, "module-mrv2.image"], [5, "module-mrv2.math"], [6, "module-mrv2.media"], [7, "module-mrv2"], [8, "module-mrv2.playlist"], [9, "module-mrv2.plugin"], [10, "module-mrv2.settings"], [12, "module-mrv2.timeline"], [13, "module-mrv2.usd"]], "mrv2.annotations": [[1, "module-mrv2.annotations"]], "close() (en el m\u00f3dulo mrv2.cmd)": [[2, "mrv2.cmd.close"]], "closeall() (en el m\u00f3dulo mrv2.cmd)": [[2, "mrv2.cmd.closeAll"]], "compare() (en el m\u00f3dulo mrv2.cmd)": [[2, "mrv2.cmd.compare"]], "compareoptions() (en el m\u00f3dulo mrv2.cmd)": [[2, "mrv2.cmd.compareOptions"]], "displayoptions() (en el m\u00f3dulo mrv2.cmd)": [[2, "mrv2.cmd.displayOptions"]], "environmentmapoptions() (en el m\u00f3dulo mrv2.cmd)": [[2, "mrv2.cmd.environmentMapOptions"]], "getlayers() (en el m\u00f3dulo mrv2.cmd)": [[2, "mrv2.cmd.getLayers"]], "imageoptions() (en el m\u00f3dulo mrv2.cmd)": [[2, "mrv2.cmd.imageOptions"]], "ismuted() (en el m\u00f3dulo mrv2.cmd)": [[2, "mrv2.cmd.isMuted"]], "lutoptions() (en el m\u00f3dulo mrv2.cmd)": [[2, "mrv2.cmd.lutOptions"]], "mrv2.cmd": [[2, "module-mrv2.cmd"]], "oepnsession() (en el m\u00f3dulo mrv2.cmd)": [[2, "mrv2.cmd.oepnSession"]], "open() (en el m\u00f3dulo mrv2.cmd)": [[2, "mrv2.cmd.open"]], "save() (en el m\u00f3dulo mrv2.cmd)": [[2, "mrv2.cmd.save"]], "savepdf() (en el m\u00f3dulo mrv2.cmd)": [[2, "mrv2.cmd.savePDF"]], "savesession() (en el m\u00f3dulo mrv2.cmd)": [[2, "mrv2.cmd.saveSession"]], "savesessionas() (en el m\u00f3dulo mrv2.cmd)": [[2, "mrv2.cmd.saveSessionAs"]], "setcompareoptions() (en el m\u00f3dulo mrv2.cmd)": [[2, "mrv2.cmd.setCompareOptions"]], "setdisplayoptions() (en el m\u00f3dulo mrv2.cmd)": [[2, "mrv2.cmd.setDisplayOptions"]], "setenvironmentmapoptions() (en el m\u00f3dulo mrv2.cmd)": [[2, "mrv2.cmd.setEnvironmentMapOptions"]], "setimageoptions() (en el m\u00f3dulo mrv2.cmd)": [[2, "mrv2.cmd.setImageOptions"]], "setlutoptions() (en el m\u00f3dulo mrv2.cmd)": [[2, "mrv2.cmd.setLUTOptions"]], "setmute() (en el m\u00f3dulo mrv2.cmd)": [[2, "mrv2.cmd.setMute"]], "setstereo3doptions() (en el m\u00f3dulo mrv2.cmd)": [[2, "mrv2.cmd.setStereo3DOptions"]], "setvolume() (en el m\u00f3dulo mrv2.cmd)": [[2, "mrv2.cmd.setVolume"]], "stereo3doptions() (en el m\u00f3dulo mrv2.cmd)": [[2, "mrv2.cmd.stereo3DOptions"]], "update() (en el m\u00f3dulo mrv2.cmd)": [[2, "mrv2.cmd.update"]], "volume() (en el m\u00f3dulo mrv2.cmd)": [[2, "mrv2.cmd.volume"]], "alphablend (clase en mrv2.image)": [[3, "mrv2.image.AlphaBlend"]], "channels (clase en mrv2.image)": [[3, "mrv2.image.Channels"]], "color (clase en mrv2.image)": [[3, "mrv2.image.Color"]], "displayoptions (clase en mrv2.image)": [[3, "mrv2.image.DisplayOptions"]], "environmentmapoptions (clase en mrv2.image)": [[3, "mrv2.image.EnvironmentMapOptions"]], "environmentmaptype (clase en mrv2.image)": [[3, "mrv2.image.EnvironmentMapType"]], "imagefilter (clase en mrv2.image)": [[3, "mrv2.image.ImageFilter"]], "imagefilters (clase en mrv2.image)": [[3, "mrv2.image.ImageFilters"]], "imageoptions (clase en mrv2.image)": [[3, "mrv2.image.ImageOptions"]], "inputvideolevels (clase en mrv2.image)": [[3, "mrv2.image.InputVideoLevels"]], "lutoptions (clase en mrv2.image)": [[3, "mrv2.image.LUTOptions"]], "lutorder (clase en mrv2.image)": [[3, "mrv2.image.LUTOrder"]], "levels (clase en mrv2.image)": [[3, "mrv2.image.Levels"]], "mirror (clase en mrv2.image)": [[3, "mrv2.image.Mirror"]], "softclip (clase en mrv2.image)": [[3, "mrv2.image.SoftClip"]], "stereo3dinput (clase en mrv2.image)": [[3, "mrv2.image.Stereo3DInput"]], "stereo3doptions (clase en mrv2.image)": [[3, "mrv2.image.Stereo3DOptions"]], "stereo3doutput (clase en mrv2.image)": [[3, "mrv2.image.Stereo3DOutput"]], "videolevels (clase en mrv2.image)": [[3, "mrv2.image.VideoLevels"]], "yuvcoefficients (clase en mrv2.image)": [[3, "mrv2.image.YUVCoefficients"]], "add (atributo de mrv2.image.color)": [[3, "mrv2.image.Color.add"]], "alphablend (atributo de mrv2.image.imageoptions)": [[3, "mrv2.image.ImageOptions.alphaBlend"]], "brightness (atributo de mrv2.image.color)": [[3, "mrv2.image.Color.brightness"]], "channels (atributo de mrv2.image.displayoptions)": [[3, "mrv2.image.DisplayOptions.channels"]], "color (atributo de mrv2.image.displayoptions)": [[3, "mrv2.image.DisplayOptions.color"]], "contrast (atributo de mrv2.image.color)": [[3, "mrv2.image.Color.contrast"]], "enabled (atributo de mrv2.image.color)": [[3, "mrv2.image.Color.enabled"]], "enabled (atributo de mrv2.image.levels)": [[3, "mrv2.image.Levels.enabled"]], "enabled (atributo de mrv2.image.softclip)": [[3, "mrv2.image.SoftClip.enabled"]], "eyeseparation (atributo de mrv2.image.stereo3doptions)": [[3, "mrv2.image.Stereo3DOptions.eyeSeparation"]], "filename (atributo de mrv2.image.lutoptions)": [[3, "mrv2.image.LUTOptions.fileName"]], "focallength (atributo de mrv2.image.environmentmapoptions)": [[3, "mrv2.image.EnvironmentMapOptions.focalLength"]], "gamma (atributo de mrv2.image.levels)": [[3, "mrv2.image.Levels.gamma"]], "horizontalaperture (atributo de mrv2.image.environmentmapoptions)": [[3, "mrv2.image.EnvironmentMapOptions.horizontalAperture"]], "imagefilters (atributo de mrv2.image.imageoptions)": [[3, "mrv2.image.ImageOptions.imageFilters"]], "inhigh (atributo de mrv2.image.levels)": [[3, "mrv2.image.Levels.inHigh"]], "inlow (atributo de mrv2.image.levels)": [[3, "mrv2.image.Levels.inLow"]], "input (atributo de mrv2.image.stereo3doptions)": [[3, "mrv2.image.Stereo3DOptions.input"]], "invert (atributo de mrv2.image.color)": [[3, "mrv2.image.Color.invert"]], "levels (atributo de mrv2.image.displayoptions)": [[3, "mrv2.image.DisplayOptions.levels"]], "magnify (atributo de mrv2.image.imagefilters)": [[3, "mrv2.image.ImageFilters.magnify"]], "minify (atributo de mrv2.image.imagefilters)": [[3, "mrv2.image.ImageFilters.minify"]], "mirror (atributo de mrv2.image.displayoptions)": [[3, "mrv2.image.DisplayOptions.mirror"]], "mrv2.image": [[3, "module-mrv2.image"]], "order (atributo de mrv2.image.lutoptions)": [[3, "mrv2.image.LUTOptions.order"]], "outhigh (atributo de mrv2.image.levels)": [[3, "mrv2.image.Levels.outHigh"]], "outlow (atributo de mrv2.image.levels)": [[3, "mrv2.image.Levels.outLow"]], "output (atributo de mrv2.image.stereo3doptions)": [[3, "mrv2.image.Stereo3DOptions.output"]], "rotatex (atributo de mrv2.image.environmentmapoptions)": [[3, "mrv2.image.EnvironmentMapOptions.rotateX"]], "rotatey (atributo de mrv2.image.environmentmapoptions)": [[3, "mrv2.image.EnvironmentMapOptions.rotateY"]], "saturation (atributo de mrv2.image.color)": [[3, "mrv2.image.Color.saturation"]], "softclip (atributo de mrv2.image.displayoptions)": [[3, "mrv2.image.DisplayOptions.softClip"]], "spin (atributo de mrv2.image.environmentmapoptions)": [[3, "mrv2.image.EnvironmentMapOptions.spin"]], "subdivisionx (atributo de mrv2.image.environmentmapoptions)": [[3, "mrv2.image.EnvironmentMapOptions.subdivisionX"]], "subdivisiony (atributo de mrv2.image.environmentmapoptions)": [[3, "mrv2.image.EnvironmentMapOptions.subdivisionY"]], "swapeyes (atributo de mrv2.image.stereo3doptions)": [[3, "mrv2.image.Stereo3DOptions.swapEyes"]], "tint (atributo de mrv2.image.color)": [[3, "mrv2.image.Color.tint"]], "type (atributo de mrv2.image.environmentmapoptions)": [[3, "mrv2.image.EnvironmentMapOptions.type"]], "value (atributo de mrv2.image.softclip)": [[3, "mrv2.image.SoftClip.value"]], "verticalaperture (atributo de mrv2.image.environmentmapoptions)": [[3, "mrv2.image.EnvironmentMapOptions.verticalAperture"]], "videolevels (atributo de mrv2.image.imageoptions)": [[3, "mrv2.image.ImageOptions.videoLevels"]], "x (atributo de mrv2.image.mirror)": [[3, "mrv2.image.Mirror.x"]], "y (atributo de mrv2.image.mirror)": [[3, "mrv2.image.Mirror.y"]], "vector2f (clase en mrv2.math)": [[5, "mrv2.math.Vector2f"]], "vector2i (clase en mrv2.math)": [[5, "mrv2.math.Vector2i"]], "vector3f (clase en mrv2.math)": [[5, "mrv2.math.Vector3f"]], "vector4f (clase en mrv2.math)": [[5, "mrv2.math.Vector4f"]], "mrv2.math": [[5, "module-mrv2.math"]], "w (atributo de mrv2.math.vector4f)": [[5, "mrv2.math.Vector4f.w"]], "x (atributo de mrv2.math.vector2f)": [[5, "mrv2.math.Vector2f.x"]], "x (atributo de mrv2.math.vector2i)": [[5, "mrv2.math.Vector2i.x"]], "x (atributo de mrv2.math.vector3f)": [[5, "mrv2.math.Vector3f.x"]], "x (atributo de mrv2.math.vector4f)": [[5, "mrv2.math.Vector4f.x"]], "y (atributo de mrv2.math.vector2f)": [[5, "mrv2.math.Vector2f.y"]], "y (atributo de mrv2.math.vector2i)": [[5, "mrv2.math.Vector2i.y"]], "y (atributo de mrv2.math.vector3f)": [[5, "mrv2.math.Vector3f.y"]], "y (atributo de mrv2.math.vector4f)": [[5, "mrv2.math.Vector4f.y"]], "z (atributo de mrv2.math.vector3f)": [[5, "mrv2.math.Vector3f.z"]], "z (atributo de mrv2.math.vector4f)": [[5, "mrv2.math.Vector4f.z"]], "afile() (en el m\u00f3dulo mrv2.media)": [[6, "mrv2.media.Afile"]], "aindex() (en el m\u00f3dulo mrv2.media)": [[6, "mrv2.media.Aindex"]], "bindexes() (en el m\u00f3dulo mrv2.media)": [[6, "mrv2.media.BIndexes"]], "bfiles() (en el m\u00f3dulo mrv2.media)": [[6, "mrv2.media.Bfiles"]], "comparemode (clase en mrv2.media)": [[6, "mrv2.media.CompareMode"]], "compareoptions (clase en mrv2.media)": [[6, "mrv2.media.CompareOptions"]], "activefiles() (en el m\u00f3dulo mrv2.media)": [[6, "mrv2.media.activeFiles"]], "clearb() (en el m\u00f3dulo mrv2.media)": [[6, "mrv2.media.clearB"]], "close() (en el m\u00f3dulo mrv2.media)": [[6, "mrv2.media.close"]], "closeall() (en el m\u00f3dulo mrv2.media)": [[6, "mrv2.media.closeAll"]], "firstversion() (en el m\u00f3dulo mrv2.media)": [[6, "mrv2.media.firstVersion"]], "lastversion() (en el m\u00f3dulo mrv2.media)": [[6, "mrv2.media.lastVersion"]], "layers() (en el m\u00f3dulo mrv2.media)": [[6, "mrv2.media.layers"]], "list() (en el m\u00f3dulo mrv2.media)": [[6, "mrv2.media.list"]], "mode (atributo de mrv2.media.compareoptions)": [[6, "mrv2.media.CompareOptions.mode"]], "mrv2.media": [[6, "module-mrv2.media"]], "nextversion() (en el m\u00f3dulo mrv2.media)": [[6, "mrv2.media.nextVersion"]], "overlay (atributo de mrv2.media.compareoptions)": [[6, "mrv2.media.CompareOptions.overlay"]], "previousversion() (en el m\u00f3dulo mrv2.media)": [[6, "mrv2.media.previousVersion"]], "seta() (en el m\u00f3dulo mrv2.media)": [[6, "mrv2.media.setA"]], "setb() (en el m\u00f3dulo mrv2.media)": [[6, "mrv2.media.setB"]], "setlayer() (en el m\u00f3dulo mrv2.media)": [[6, "mrv2.media.setLayer"]], "setstereo() (en el m\u00f3dulo mrv2.media)": [[6, "mrv2.media.setStereo"]], "toggleb() (en el m\u00f3dulo mrv2.media)": [[6, "mrv2.media.toggleB"]], "wipecenter (atributo de mrv2.media.compareoptions)": [[6, "mrv2.media.CompareOptions.wipeCenter"]], "wiperotation (atributo de mrv2.media.compareoptions)": [[6, "mrv2.media.CompareOptions.wipeRotation"]], "filemedia (clase en mrv2)": [[7, "mrv2.FileMedia"]], "path (clase en mrv2)": [[7, "mrv2.Path"]], "rationaltime (clase en mrv2)": [[7, "mrv2.RationalTime"]], "timerange (clase en mrv2)": [[7, "mrv2.TimeRange"]], "almost_equal() (m\u00e9todo de mrv2.rationaltime)": [[7, "mrv2.RationalTime.almost_equal"]], "audiooffset (atributo de mrv2.filemedia)": [[7, "mrv2.FileMedia.audioOffset"]], "audiopath (atributo de mrv2.filemedia)": [[7, "mrv2.FileMedia.audioPath"]], "before() (m\u00e9todo de mrv2.timerange)": [[7, "mrv2.TimeRange.before"]], "begins() (m\u00e9todo de mrv2.timerange)": [[7, "mrv2.TimeRange.begins"]], "clamped() (m\u00e9todo de mrv2.timerange)": [[7, "mrv2.TimeRange.clamped"]], "contains() (m\u00e9todo de mrv2.timerange)": [[7, "mrv2.TimeRange.contains"]], "currenttime (atributo de mrv2.filemedia)": [[7, "mrv2.FileMedia.currentTime"]], "duration_extended_by() (m\u00e9todo de mrv2.timerange)": [[7, "mrv2.TimeRange.duration_extended_by"]], "duration_from_start_end_time() (m\u00e9todo est\u00e1tico de mrv2.rationaltime)": [[7, "mrv2.RationalTime.duration_from_start_end_time"]], "duration_from_start_end_time_inclusive() (m\u00e9todo est\u00e1tico de mrv2.rationaltime)": [[7, "mrv2.RationalTime.duration_from_start_end_time_inclusive"]], "end_time_exclusive() (m\u00e9todo de mrv2.timerange)": [[7, "mrv2.TimeRange.end_time_exclusive"]], "end_time_inclusive() (m\u00e9todo de mrv2.timerange)": [[7, "mrv2.TimeRange.end_time_inclusive"]], "extended_by() (m\u00e9todo de mrv2.timerange)": [[7, "mrv2.TimeRange.extended_by"]], "finishes() (m\u00e9todo de mrv2.timerange)": [[7, "mrv2.TimeRange.finishes"]], "from_frames() (m\u00e9todo est\u00e1tico de mrv2.rationaltime)": [[7, "mrv2.RationalTime.from_frames"]], "from_seconds() (m\u00e9todo est\u00e1tico de mrv2.rationaltime)": [[7, "mrv2.RationalTime.from_seconds"]], "from_time_string() (m\u00e9todo est\u00e1tico de mrv2.rationaltime)": [[7, "mrv2.RationalTime.from_time_string"]], "from_timecode() (m\u00e9todo est\u00e1tico de mrv2.rationaltime)": [[7, "mrv2.RationalTime.from_timecode"]], "get() (m\u00e9todo de mrv2.path)": [[7, "mrv2.Path.get"]], "getbasename() (m\u00e9todo de mrv2.path)": [[7, "mrv2.Path.getBaseName"]], "getdirectory() (m\u00e9todo de mrv2.path)": [[7, "mrv2.Path.getDirectory"]], "getextension() (m\u00e9todo de mrv2.path)": [[7, "mrv2.Path.getExtension"]], "getnumber() (m\u00e9todo de mrv2.path)": [[7, "mrv2.Path.getNumber"]], "getpadding() (m\u00e9todo de mrv2.path)": [[7, "mrv2.Path.getPadding"]], "inoutrange (atributo de mrv2.filemedia)": [[7, "mrv2.FileMedia.inOutRange"]], "intersects() (m\u00e9todo de mrv2.timerange)": [[7, "mrv2.TimeRange.intersects"]], "isabsolute() (m\u00e9todo de mrv2.path)": [[7, "mrv2.Path.isAbsolute"]], "isempty() (m\u00e9todo de mrv2.path)": [[7, "mrv2.Path.isEmpty"]], "is_invalid_time() (m\u00e9todo de mrv2.rationaltime)": [[7, "mrv2.RationalTime.is_invalid_time"]], "is_valid_timecode_rate() (m\u00e9todo est\u00e1tico de mrv2.rationaltime)": [[7, "mrv2.RationalTime.is_valid_timecode_rate"]], "loop (atributo de mrv2.filemedia)": [[7, "mrv2.FileMedia.loop"]], "meets() (m\u00e9todo de mrv2.timerange)": [[7, "mrv2.TimeRange.meets"]], "mrv2": [[7, "module-mrv2"]], "mute (atributo de mrv2.filemedia)": [[7, "mrv2.FileMedia.mute"]], "nearest_valid_timecode_rate() (m\u00e9todo est\u00e1tico de mrv2.rationaltime)": [[7, "mrv2.RationalTime.nearest_valid_timecode_rate"]], "overlaps() (m\u00e9todo de mrv2.timerange)": [[7, "mrv2.TimeRange.overlaps"]], "path (atributo de mrv2.filemedia)": [[7, "mrv2.FileMedia.path"]], "playback (atributo de mrv2.filemedia)": [[7, "mrv2.FileMedia.playback"]], "range_from_start_end_time() (m\u00e9todo est\u00e1tico de mrv2.timerange)": [[7, "mrv2.TimeRange.range_from_start_end_time"]], "range_from_start_end_time_inclusive() (m\u00e9todo est\u00e1tico de mrv2.timerange)": [[7, "mrv2.TimeRange.range_from_start_end_time_inclusive"]], "rescaled_to() (m\u00e9todo de mrv2.rationaltime)": [[7, "mrv2.RationalTime.rescaled_to"]], "timerange (atributo de mrv2.filemedia)": [[7, "mrv2.FileMedia.timeRange"]], "to_frames() (m\u00e9todo de mrv2.rationaltime)": [[7, "mrv2.RationalTime.to_frames"]], "to_seconds() (m\u00e9todo de mrv2.rationaltime)": [[7, "mrv2.RationalTime.to_seconds"]], "to_time_string() (m\u00e9todo de mrv2.rationaltime)": [[7, "mrv2.RationalTime.to_time_string"]], "to_timecode() (m\u00e9todo de mrv2.rationaltime)": [[7, "mrv2.RationalTime.to_timecode"]], "value_rescaled_to() (m\u00e9todo de mrv2.rationaltime)": [[7, "mrv2.RationalTime.value_rescaled_to"]], "videolayer (atributo de mrv2.filemedia)": [[7, "mrv2.FileMedia.videoLayer"]], "volume (atributo de mrv2.filemedia)": [[7, "mrv2.FileMedia.volume"]], "add_clip() (en el m\u00f3dulo mrv2.playlist)": [[8, "mrv2.playlist.add_clip"]], "list() (en el m\u00f3dulo mrv2.playlist)": [[8, "mrv2.playlist.list"]], "mrv2.playlist": [[8, "module-mrv2.playlist"]], "save() (en el m\u00f3dulo mrv2.playlist)": [[8, "mrv2.playlist.save"]], "select() (en el m\u00f3dulo mrv2.playlist)": [[8, "mrv2.playlist.select"]], "plugin (clase en mrv2.plugin)": [[9, "mrv2.plugin.Plugin"]], "active() (m\u00e9todo de mrv2.plugin.plugin)": [[9, "mrv2.plugin.Plugin.active"]], "menus() (m\u00e9todo de mrv2.plugin.plugin)": [[9, "mrv2.plugin.Plugin.menus"]], "mrv2.plugin": [[9, "module-mrv2.plugin"]], "memory() (en el m\u00f3dulo mrv2.settings)": [[10, "mrv2.settings.memory"]], "mrv2.settings": [[10, "module-mrv2.settings"]], "readahead() (en el m\u00f3dulo mrv2.settings)": [[10, "mrv2.settings.readAhead"]], "readbehind() (en el m\u00f3dulo mrv2.settings)": [[10, "mrv2.settings.readBehind"]], "setmemory() (en el m\u00f3dulo mrv2.settings)": [[10, "mrv2.settings.setMemory"]], "setreadahead() (en el m\u00f3dulo mrv2.settings)": [[10, "mrv2.settings.setReadAhead"]], "setreadbehind() (en el m\u00f3dulo mrv2.settings)": [[10, "mrv2.settings.setReadBehind"]], "filesequenceaudio (clase en mrv2.timeline)": [[12, "mrv2.timeline.FileSequenceAudio"]], "loop (clase en mrv2.timeline)": [[12, "mrv2.timeline.Loop"]], "playback (clase en mrv2.timeline)": [[12, "mrv2.timeline.Playback"]], "timermode (clase en mrv2.timeline)": [[12, "mrv2.timeline.TimerMode"]], "frame() (en el m\u00f3dulo mrv2.timeline)": [[12, "mrv2.timeline.frame"]], "inoutrange() (en el m\u00f3dulo mrv2.timeline)": [[12, "mrv2.timeline.inOutRange"]], "loop() (en el m\u00f3dulo mrv2.timeline)": [[12, "mrv2.timeline.loop"]], "mrv2.timeline": [[12, "module-mrv2.timeline"]], "name (mrv2.timeline.filesequenceaudio propiedad)": [[12, "mrv2.timeline.FileSequenceAudio.name"]], "name (mrv2.timeline.loop propiedad)": [[12, "mrv2.timeline.Loop.name"]], "name (mrv2.timeline.playback propiedad)": [[12, "mrv2.timeline.Playback.name"]], "name (mrv2.timeline.timermode propiedad)": [[12, "mrv2.timeline.TimerMode.name"]], "playbackwards() (en el m\u00f3dulo mrv2.timeline)": [[12, "mrv2.timeline.playBackwards"]], "playforwards() (en el m\u00f3dulo mrv2.timeline)": [[12, "mrv2.timeline.playForwards"]], "seconds() (en el m\u00f3dulo mrv2.timeline)": [[12, "mrv2.timeline.seconds"]], "seek() (en el m\u00f3dulo mrv2.timeline)": [[12, "mrv2.timeline.seek"]], "setin() (en el m\u00f3dulo mrv2.timeline)": [[12, "mrv2.timeline.setIn"]], "setinoutrange() (en el m\u00f3dulo mrv2.timeline)": [[12, "mrv2.timeline.setInOutRange"]], "setloop() (en el m\u00f3dulo mrv2.timeline)": [[12, "mrv2.timeline.setLoop"]], "setout() (en el m\u00f3dulo mrv2.timeline)": [[12, "mrv2.timeline.setOut"]], "stop() (en el m\u00f3dulo mrv2.timeline)": [[12, "mrv2.timeline.stop"]], "time() (en el m\u00f3dulo mrv2.timeline)": [[12, "mrv2.timeline.time"]], "timerange() (en el m\u00f3dulo mrv2.timeline)": [[12, "mrv2.timeline.timeRange"]], "drawmode (clase en mrv2.usd)": [[13, "mrv2.usd.DrawMode"]], "renderoptions (clase en mrv2.usd)": [[13, "mrv2.usd.RenderOptions"]], "complexity (atributo de mrv2.usd.renderoptions)": [[13, "mrv2.usd.RenderOptions.complexity"]], "diskcachebytecount (atributo de mrv2.usd.renderoptions)": [[13, "mrv2.usd.RenderOptions.diskCacheByteCount"]], "drawmode (atributo de mrv2.usd.renderoptions)": [[13, "mrv2.usd.RenderOptions.drawMode"]], "enablelighting (atributo de mrv2.usd.renderoptions)": [[13, "mrv2.usd.RenderOptions.enableLighting"]], "mrv2.usd": [[13, "module-mrv2.usd"]], "renderoptions() (en el m\u00f3dulo mrv2.usd)": [[13, "mrv2.usd.renderOptions"]], "renderwidth (atributo de mrv2.usd.renderoptions)": [[13, "mrv2.usd.RenderOptions.renderWidth"]], "setrenderoptions() (en el m\u00f3dulo mrv2.usd)": [[13, "mrv2.usd.setRenderOptions"]], "stagecachecount (atributo de mrv2.usd.renderoptions)": [[13, "mrv2.usd.RenderOptions.stageCacheCount"]]}})
\ No newline at end of file
+Search.setIndex({"docnames": ["index", "python_api/annotations", "python_api/cmd", "python_api/image", "python_api/index", "python_api/math", "python_api/media", "python_api/mrv2", "python_api/playlist", "python_api/plug-ins", "python_api/pyFLTK", "python_api/settings", "python_api/sistema-de-plugins", "python_api/timeline", "python_api/usd", "user_docs/getting_started/getting_started", "user_docs/hotkeys", "user_docs/index", "user_docs/interface/interface", "user_docs/notes", "user_docs/overview", "user_docs/panels/panels", "user_docs/playback", "user_docs/preferences", "user_docs/settings", "user_docs/videos"], "filenames": ["index.rst", "python_api/annotations.rst", "python_api/cmd.rst", "python_api/image.rst", "python_api/index.rst", "python_api/math.rst", "python_api/media.rst", "python_api/mrv2.rst", "python_api/playlist.rst", "python_api/plug-ins.rst", "python_api/pyFLTK.rst", "python_api/settings.rst", "python_api/sistema-de-plugins.rst", "python_api/timeline.rst", "python_api/usd.rst", "user_docs/getting_started/getting_started.rst", "user_docs/hotkeys.rst", "user_docs/index.rst", "user_docs/interface/interface.rst", "user_docs/notes.rst", "user_docs/overview.rst", "user_docs/panels/panels.rst", "user_docs/playback.rst", "user_docs/preferences.rst", "user_docs/settings.rst", "user_docs/videos.rst"], "titles": ["Bienvenido a la documentaci\u00f3n de mrv2!", "M\u00f3dulo de anotaciones", "M\u00f3dulo cmd", "M\u00f3dulo image", "Python API", "M\u00f3dulo math", "M\u00f3dulo media", "M\u00f3dulo mrv2", "M\u00f3dulo playlist", "M\u00f3dulo de plugin", "pyFLTK", "M\u00f3dulo settings", "Sistema de Plug-ins", "M\u00f3dulo timeline", "usd module", "Comenzando", "Teclas de Manejo", "Gu\u00eda del Usuario de mrv2", "La interfaz de mrv2", "Notas y Anotaciones", "Introducci\u00f3n", "Paneles", "Reproducci\u00f3n de V\u00eddeo", "Preferencias", "Seteos", "Tutoriales de Video (en Ingl\u00e9s)"], "terms": {"gui": [0, 2, 20], "usuari": [0, 15, 18, 19, 20, 22], "introduccion": [0, 17], "comenz": [0, 17, 21], "La": [0, 7, 15, 17, 19, 20, 21, 22, 23], "interfaz": [0, 17, 20], "panel": [0, 15, 16, 17, 19, 20, 22, 24], "not": [0, 1, 2, 17, 20, 21, 23], "anot": [0, 2, 4, 16, 17, 20, 22], "reproduccion": [0, 2, 7, 8, 16, 17, 18, 20], "vide": [0, 3, 7, 17, 20, 21], "sete": [0, 2, 11, 13, 16, 17, 18, 19, 20, 22, 23], "tecl": [0, 17, 18, 19, 20, 21, 23, 24], "manej": [0, 17, 18, 20, 21], "preferent": [0, 2, 15, 16, 17, 18, 21], "tutorial": [0, 17], "ingles": [0, 17], "python": [0, 9, 10, 12, 16, 17, 20], "api": [0, 20, 21], "modul": [0, 4, 10], "cmd": [0, 4], "imag": [0, 2, 4, 16, 18, 19, 20, 21, 22], "math": [0, 3, 4, 6], "medi": [0, 2, 4, 7, 16, 17, 18, 20, 22], "playlist": [0, 4], "plugin": [0, 4, 12], "settings": [0, 4, 23], "sistem": [0, 4, 15, 16, 20, 21, 23], "plug": [0, 4, 9], "ins": [0, 4], "timelin": [0, 4, 7], "usd": [0, 4, 16, 17, 20], "pagin": 0, "busqued": 0, "m\u00f2dul": [1, 6, 8, 9, 11, 13], "contien": [1, 3, 5, 6, 7, 8, 9, 11, 13, 14, 18, 23], "tod": [1, 2, 3, 5, 6, 8, 9, 11, 13, 14, 15, 16, 18, 19, 20, 21, 23], "clas": [1, 5, 6, 7, 8, 9, 10, 12], "enums": [1, 3, 6, 8, 11, 13, 14], "relacion": [1, 6, 8, 9, 11, 13], "mrv2": [1, 2, 3, 4, 5, 6, 8, 9, 10, 11, 12, 13, 14, 16, 19, 21, 22, 23, 24, 25], "annotations": [1, 2], "add": [1, 3, 4], "args": [1, 7, 8, 13], "kwargs": [1, 7, 8, 13], "overload": [1, 7, 8, 13], "function": [1, 7, 8, 13], "tim": [1, 4, 13], "rationaltim": [1, 4, 7, 13], "str": [1, 2, 3, 7, 8], "non": [1, 2, 3, 6, 8, 11, 13], "agreg": [1, 3, 8, 12, 15, 16, 17, 20, 21], "clip": [1, 3, 7, 8, 15, 16, 18, 19, 21, 22], "actual": [1, 2, 6, 7, 13, 15, 16, 17, 18, 19, 21], "ciert": [1, 18], "tiemp": [1, 2, 7, 13, 16, 17, 19, 20, 21, 22], "fram": [1, 4, 7, 13, 15, 20, 22], "int": [1, 2, 3, 5, 6, 7, 8, 11, 13, 14], "cuadr": [1, 7, 13, 16, 17, 19, 20, 21], "seconds": [1, 4, 7, 13], "float": [1, 2, 3, 5, 6, 7, 11, 13, 14], "segund": [1, 2, 7, 11, 13, 16, 18, 19, 20, 21, 22, 24], "command": 2, "usad": [2, 18, 20, 23], "par": [2, 6, 7, 9, 10, 12, 13, 15, 16, 18, 19, 20, 21, 22], "corr": [2, 15, 21, 22], "comand": [2, 12, 16, 17], "principal": [2, 15, 18, 21, 23, 24], "obten": [2, 14, 22], "set": [2, 4, 6, 11, 13, 14, 15, 19, 21, 22, 23], "opcion": [2, 3, 6, 14, 15, 18, 21], "display": [2, 3, 16, 20, 21, 22], "compar": [2, 4, 6, 16, 17, 20], "lut": [2, 3, 21, 23], "clos": [2, 4, 6], "item": [2, 6, 15], "1": [2, 3, 7, 10], "cerr": [2, 6, 15, 16, 21], "archiv": [2, 3, 6, 7, 8, 12, 15, 16, 17, 18, 20], "closeall": [2, 4, 6], "itemb": 2, "mod": [2, 6, 13, 14, 15, 16, 17, 18, 19, 20], "comparemod": [2, 4, 6], "wip": [2, 6, 20, 21], "2": [2, 5, 7], "dos": [2, 12, 18, 19, 21, 23], "items": [2, 8, 20], "compareoptions": [2, 4, 6], "return": [2, 7, 9, 12], "the": [2, 7, 23], "current": 2, "options": 2, "displayoptions": [2, 3, 4], "retorn": [2, 6, 7, 11, 13, 16], "environmentmapoptions": [2, 3, 4], "map": [2, 3, 16, 17, 23], "entorn": [2, 3, 12, 16, 17, 18, 23], "getlayers": [2, 4], "list": [2, 4, 6, 8, 12, 16, 17, 20, 22, 25], "cap": [2, 6, 7, 18, 21], "line": [2, 13, 16, 17, 19, 20, 21, 22], "imageoptions": [2, 3, 4], "ismut": [2, 4], "bool": [2, 3, 6, 7, 9, 14], "tru": [2, 7, 9], "si": [2, 7, 9, 15, 16, 18, 19, 21, 22, 23, 24], "audi": [2, 7, 13, 18, 20, 21], "silenci": 2, "lutoptions": [2, 3, 4], "oepnsession": [2, 4], "fil": [2, 7], "abrir": [2, 15, 16, 21, 23], "sesion": [2, 16, 20], "open": [2, 4], "filenam": [2, 3, 8, 13], "audiofilenam": 2, "opcional": [2, 7, 9], "sav": [2, 4, 8], "io": [2, 10], "saveoptions": 2, "fals": [2, 9], "ffmpegprofil": 2, "exrcompression": 2, "zip": 2, "zipcompressionlevel": 2, "4": [2, 5], "dwacompressionlevel": 2, "45": 2, "grab": [2, 8, 15, 16, 18, 19, 20, 21], "pelicul": [2, 15, 16, 18, 20, 23], "secuenci": [2, 15, 16, 23], "frent": 2, "savepdf": [2, 4], "dcoument": 2, "pdf": [2, 16, 20, 21], "savesession": [2, 4], "setcompareoptions": [2, 4], "setdisplayoptions": [2, 4], "setenvironmentmapoptions": [2, 4], "setimageoptions": [2, 4], "setlutoptions": [2, 4], "setmut": [2, 4], "mut": [2, 7], "mutism": 2, "setstereo3doptions": [2, 4], "stereo3doptions": [2, 3, 4], "estere": [2, 3, 6, 16, 17], "3d": [2, 3, 16, 17], "setvolum": [2, 4], "volum": [2, 4, 7, 18], "stere": [2, 21], "updat": [2, 4], "llam": [2, 9, 23], "rutin": 2, "fl": 2, "check": 2, "refresc": [2, 21], "interfac": 2, "pas": [2, 18, 23], "obteng": 2, "class": [3, 5, 6, 7, 9, 12, 13, 14], "relat": [3, 8, 14], "control": [3, 16, 19, 20, 21, 23, 24], "alphablend": [3, 4], "members": [3, 6, 13, 14], "straight": 3, "premultipli": 3, "channels": [3, 4], "color": [3, 4, 16, 17, 18, 20, 22], "red": [3, 15, 16, 17, 19, 20], "gre": 3, "blu": 3, "alpha": 3, "environmentmaptyp": [3, 4], "spherical": 3, "cubic": [3, 21], "imagefilt": [3, 4], "nearest": 3, "lin": [3, 20, 21, 22], "inputvideolevels": [3, 4], "fromfil": 3, "fullrang": 3, "legalrang": 3, "lutord": [3, 4], "postcolorconfig": 3, "precolorconfig": 3, "videolevels": [3, 4], "yuvcoefficients": [3, 4], "rec709": 3, "bt2020": 3, "stereo3dinput": [3, 4], "stereo3doutput": [3, 4], "anaglyph": 3, "scanlin": 3, "columns": 3, "checkerboard": 3, "opengl": [3, 20], "mirror": [3, 4], "espej": 3, "x": [3, 5, 6, 16], "volt": [3, 16], "Y": [3, 6, 16, 18, 21, 23], "valor": [3, 7, 9, 18, 21], "enabl": 3, "activ": [3, 6, 9, 14, 18, 20, 21, 22], "transform": [3, 23], "nivel": [3, 21], "vector3f": [3, 4, 5], "brightness": 3, "cambi": [3, 16, 18, 19, 20, 21, 22, 23], "brill": 3, "contrast": 3, "contr": [3, 21], "saturation": 3, "satur": [3, 20, 21], "tint": [3, 20, 21], "0": [3, 7, 15, 17, 18, 21, 24], "invert": [3, 21], "levels": [3, 4], "inlow": 3, "baj": [3, 15, 18, 23], "entrad": [3, 9, 12, 13, 16, 18, 20, 21, 22], "inhigh": 3, "alto": 3, "gamm": 3, "gam": [3, 16, 18, 20, 21], "outlow": 3, "sal": [3, 13, 16, 18, 21, 22], "outhigh": 3, "imagefilters": [3, 4], "filtr": [3, 16, 21, 23], "minify": 3, "minif": [3, 16], "magnify": 3, "magnif": [3, 16], "softclip": [3, 4], "soft": 3, "valu": [3, 6, 7], "canal": [3, 16, 20, 21], "ambos": 3, "nombr": [3, 8, 21], "order": 3, "orden": 3, "oper": [3, 21, 23], "algoritm": 3, "mezcl": [3, 15], "alfa": [3, 16, 21], "type": 3, "tip": [3, 15, 21], "horizontalapertur": 3, "aberturn": 3, "horizontal": [3, 6, 16, 18, 20, 21, 22], "proyeccion": 3, "verticalapertur": 3, "abertur": 3, "vertical": [3, 6, 16, 18, 19, 20, 21], "focallength": 3, "distanci": [3, 7, 21], "focal": [3, 21], "rotatex": 3, "rotacion": [3, 6], "rotatey": 3, "subdivisionx": 3, "subdivision": 3, "subdivisiony": 3, "spin": 3, "gir": 3, "input": 3, "stereoinput": 3, "output": [3, 21], "stereooutput": 3, "eyeseparation": 3, "separ": [3, 12, 20], "ojo": 3, "izquierd": [3, 15, 18, 19, 21, 22, 23], "derech": [3, 15, 17, 18, 19, 22], "swapey": 3, "intercambi": [3, 16], "ojos": 3, "vector2i": [4, 5], "vector2f": [4, 5, 6], "vector4f": [4, 5], "afil": [4, 6], "aindex": [4, 6], "bindex": [4, 6], "bfil": [4, 6], "activefil": [4, 6], "clearb": [4, 6], "firstversion": [4, 6], "lastversion": [4, 6], "layers": [4, 6], "nextversion": [4, 6], "previousversion": [4, 6], "setb": [4, 6], "setlay": [4, 6], "setstere": [4, 6], "toggleb": [4, 6], "path": [4, 7, 15], "timerang": [4, 7, 13], "filemedi": [4, 6, 7, 8], "add_clip": [4, 8], "select": [4, 8], "memory": [4, 11], "readah": [4, 11], "readbehind": [4, 11], "setmemory": [4, 11], "setreadah": [4, 11], "setreadbehind": [4, 11], "filesequenceaudi": [4, 13], "loop": [4, 7, 13], "playback": [4, 7, 13, 15, 16, 20, 22], "timermod": [4, 13], "inoutrang": [4, 7, 13], "playbackwards": [4, 13], "playforwards": [4, 13], "seek": [4, 13], "setin": [4, 13], "setinoutrang": [4, 13], "setloop": [4, 13], "setout": [4, 13], "stop": [4, 13, 18], "renderoptions": [4, 14], "setrenderoptions": [4, 14], "drawmod": [4, 14], "matemat": 5, "vector": [5, 19], "enter": [5, 7, 15], "element": [5, 17], "com": [5, 9, 12, 15, 16, 18, 19, 20, 21, 22, 23, 25], "flotant": [5, 23], "3": [5, 10], "z": [5, 16], "w": [5, 16], "kas": 6, "A": [6, 18, 19, 20, 21, 22], "indic": [6, 8, 12, 19, 22], "b": [6, 16, 18, 20, 21], "borr": [6, 16, 19, 20], "index": 6, "primer": [6, 7, 23], "version": [6, 10, 15, 16, 17, 25], "ultim": [6, 7, 16, 18, 22, 23, 25], "proxim": [6, 16, 22], "previ": [6, 15, 16, 19, 21, 22], "nuev": [6, 7, 9, 10, 12, 18, 20, 21, 23], "lay": 6, "altern": [6, 16, 18, 22], "overlay": [6, 16, 20], "differenc": [6, 20], "til": 6, "superposicion": [6, 23], "sobr": [6, 15, 16, 18, 19, 21, 23], "wipecent": 6, "centr": [6, 16, 18, 23], "limpiaparabris": [6, 16, 21], "wiperotation": 6, "used": 7, "to": [7, 15], "hold": 7, "get": 7, "self": [7, 9, 12], "idx": 7, "directoru": 7, "returns": 7, "getbasenam": 7, "getdirectory": 7, "getextension": 7, "getnumb": 7, "getpadding": 7, "isabsolut": 7, "isempty": 7, "represent": [7, 18], "med": 7, "rt": 7, "rat": 7, "pued": [7, 10, 15, 16, 18, 19, 20, 21, 22, 23, 24, 25], "ser": [7, 15, 16, 18, 19, 20, 21, 22, 23, 25], "re": [7, 16], "escal": [7, 18], "razon": 7, "almost_equal": 7, "other": 7, "delt": 7, "static": 7, "duration_from_start_end_tim": 7, "start_tim": 7, "end_time_exclusiv": 7, "comput": [7, 20, 22], "duracion": 7, "muestrasd": 7, "exceptu": 7, "Esto": [7, 12, 18, 19, 20, 21, 23], "mism": [7, 15, 21], "Por": [7, 15, 18, 20, 22, 23], "ejempl": [7, 9, 12, 20, 21, 23], "10": [7, 15], "15": 7, "5": 7, "El": [7, 15, 18, 19, 20, 21, 22, 23, 24], "result": [7, 22], "duration_from_start_end_time_inclusiv": 7, "end_time_inclusiv": 7, "inclu": [7, 18, 20], "6": [7, 18], "from_fram": 7, "convert": 7, "numer": [7, 20, 21, 22, 23], "objet": 7, "from_seconds": 7, "from_time_string": 7, "time_string": 7, "conviert": 7, "text": [7, 16, 19, 20, 21, 23], "microsegund": 7, "hh": 7, "mm": 7, "ss": 7, "dond": [7, 12, 15, 21, 23], "or": [7, 12, 19, 23], "decimal": [7, 23], "from_timecod": 7, "timecod": [7, 18, 23], "is_invalid_tim": 7, "verdader": 7, "val": 7, "consider": 7, "inval": 7, "valoers": 7, "nan": 7, "menor": [7, 16], "igual": [7, 23], "cer": 7, "is_valid_timecode_rat": 7, "usar": [7, 12, 15, 18, 19, 20, 21, 24], "nearest_valid_timecode_rat": 7, "prim": [7, 15, 16, 18, 21, 22], "tien": [7, 15, 18, 21, 22, 23], "diferent": [7, 16, 18, 21, 23], "dad": [7, 8, 13, 15, 19], "rescaled_t": 7, "new_rat": 7, "to_fram": 7, "bas": [7, 19, 21, 23], "to_seconds": 7, "to_time_string": 7, "to_timecod": 7, "drop_fram": 7, "object": 7, "value_rescaled_t": 7, "rang": [7, 13, 18, 21], "codif": 7, "comienz": [7, 18, 21, 22], "signific": 7, "porcion": [7, 21], "muestr": [7, 18, 20, 21, 23], "calcul": 7, "befor": 7, "epsilon_s": 7, "6041666666666666e": 7, "06": 7, "final": [7, 18, 21], "estrict": 7, "preced": 7, "equival": 7, "Lo": 7, "opuest": 7, "meets": 7, "begins": 7, "clamp": 7, "limit": [7, 16, 22], "acuerd": 7, "parametr": [7, 23], "contains": 7, "anteced": 7, "duration_extended_by": 7, "fuer": [7, 19], "start": 7, "entonc": 7, "porqu": [7, 15], "dat": [7, 16, 21, 22], "14": 7, "24": [7, 15], "9": 7, "duraci\u00f2n": 7, "En": [7, 15, 16, 21, 22, 23, 24], "palabr": [7, 15], "inclus": [7, 12, 21, 23], "fraccional": 7, "extended_by": 7, "contru": 7, "extend": [7, 19], "finish": 7, "this": 7, "intersects": 7, "O": [7, 18, 22], "overlaps": 7, "range_from_start_end_tim": 7, "cre": [7, 10, 12, 15, 19, 20, 21, 25], "end": 7, "s": [7, 16, 18, 23], "exclus": 7, "end_tim": 7, "range_from_start_end_time_inclusiv": 7, "audiopath": 7, "tiempo": 7, "Estado": 7, "playbacks": 7, "currenttim": 7, "videolay": 7, "mud": [7, 18], "audiooffset": 7, "compens": 7, "dereproduccion": 8, "edl": [8, 21], "seleccion": [8, 13, 15, 16, 18, 19, 20, 21, 23], "oti": [8, 15, 20, 23], "camin": [8, 21, 22, 23], "fileitem": 8, "filemodelitem": 8, "playlistindex": 8, "plugins": 9, "deb": [12, 15, 19, 21, 22], "remplaz": [], "import": [9, 10, 12, 20, 21, 23], "from": [9, 10, 12], "demoplugin": 9, "defin": [9, 12, 20], "propi": [15, 19, 20, 22, 23], "variabl": [9, 12, 18, 23], "aqu": [9, 20, 23], "def": [9, 12], "__init__": [9, 12], "sup": [9, 12, 15], "pass": 12, "metod": 9, "ejecu": [], "run": 9, "print": [9, 12], "hell": [9, 12], "est\u00f1a": [], "diccionari": 9, "menu": [9, 12, 16, 17, 19, 20, 23], "clav": [], "menus": [9, 12, 18], "hol": [9, 12], "reproduc": [13, 15, 16, 17, 18, 20, 22], "adel": [11, 13, 16, 18, 21, 24], "playforward": [], "reemplaz": 9, "dict": 9, "funcion": [11, 13, 16, 20, 21, 23], "cach": [11, 14, 17, 21, 24], "gigabyt": [11, 21, 24], "leer": [11, 22], "atras": [11, 13, 16, 18, 21, 22, 24], "arg0": [11, 13], "memori": [11, 21, 24], "suport": 12, "permit": [12, 15, 16, 18, 19, 20, 21, 23, 24], "yend": 12, "mas": [12, 15, 16, 18, 20, 21, 22], "alla": 12, "consol": 12, "mrv2_python_plugins": 12, "directori": [12, 15, 23], "punt": [12, 16, 18, 21, 22], "linux": [12, 15, 23], "mac": [12, 15], "semi": 12, "windows": [12, 15, 23], "resid": 12, "alli": 12, "comun": 12, "py": 12, "ten": [12, 19, 20, 21], "estructur": 12, "holaplugin": 12, "desd": [12, 15, 18, 20, 21, 22], "complet": [12, 16, 18, 21], "refier": [12, 15], "mrv2_hell": 12, "distribu": 12, "basenam": 13, "directory": 13, "property": 13, "nam": 13, "once": 13, "pingpong": 13, "forward": 13, "rev": 13, "system": 13, "bucl": [13, 15, 16, 17, 18], "salt": [13, 18, 19, 20], "univesal": 14, "scen": [14, 20, 23], "description": [14, 20, 23], "rend": [14, 17], "points": 14, "wirefram": 14, "wireframeonsurfac": 14, "shadedflat": 14, "shadedsmooth": 14, "geomonly": 14, "geomflat": 14, "geomsmooth": 14, "renderwidth": 14, "ancho": 14, "complexity": 14, "complej": [14, 23], "model": 14, "dibuj": [14, 16, 17, 18, 20, 21, 22, 23], "enablelighting": 14, "ilumin": 14, "stagecachecount": 14, "escenari": 14, "diskcachebytecount": 14, "conte": 14, "bytes": 14, "disc": [14, 20, 21, 22, 23], "favor": 15, "document": [15, 16, 20, 23, 25], "github": 15, "https": [10, 15, 25], "ggarra13": 15, "usted": [15, 16], "abriend": 15, "dmg": 15, "llev": [15, 19, 21], "icon": [15, 21], "aplic": [15, 20], "recomend": [15, 18, 23], "sobreescrib": 15, "notariz": 15, "cuand": [15, 18, 19, 21, 22, 23], "ejecut": [15, 20, 21], "avis": 15, "segur": [15, 16, 18, 20, 23], "internet": 15, "evit": 15, "necesit": [15, 18, 20, 22], "find": [15, 21], "ir": [15, 22], "presion": [15, 18, 19], "ctrl": [15, 16, 19], "boton": [10, 15, 17, 18, 22, 23], "raton": [15, 17, 23], "Esta": [15, 16, 20, 23], "accion": [15, 18, 19, 21, 22, 23], "tra": 15, "advertent": 15, "per": [15, 18, 21, 22, 25], "vez": [10, 15, 16, 18, 19, 21, 22, 23, 24], "tendr": [15, 18, 23], "abrirl": [15, 21], "hac": [15, 18, 19, 20, 21, 22, 23], "sol": [15, 16, 19, 20, 21], "chrom": 15, "tambien": [15, 18, 19, 21, 22], "protej": 15, "usual": [15, 18], "asegures": 15, "cliqu": [15, 18, 19, 23], "flech": [15, 16, 18, 19, 20, 22], "arrib": [15, 18, 19, 21, 22], "form": [15, 16, 19, 20, 21, 23], "No": [15, 23], "exe": 15, "direct": [15, 18, 19, 20], "carpet": [2, 15, 16, 17, 21], "contenedor": 15, "explor": [15, 21], "descarg": [15, 23], "lueg": 15, "ahi": 15, "mensaj": [15, 21], "azul": [15, 16, 18], "smartscr": 15, "previn": 15, "arranqu": [15, 21, 23], "desconoc": 15, "pon": [15, 23], "pc": 15, "peligr": 15, "clique": [15, 18, 19, 23], "informacion": 15, "dic": 15, "simil": [15, 21], "aparec": [15, 21], "sig": 15, "intrucion": 15, "paquet": 15, "rpm": 15, "requier": 15, "teng": 15, "permis": 15, "administr": 15, "sud": 15, "debi": 15, "ubuntu": 15, "etc": [15, 20, 21, 22], "dpkg": 15, "i": [15, 16, 18, 22], "v0": [15, 17], "7": 15, "amd64": 15, "tar": 15, "gz": 15, "hat": 15, "rocky": 15, "Una": [10, 15, 16, 19], "terminal": [15, 23], "enlac": 15, "simbol": 15, "usr": 15, "bin": 15, "Los": [15, 17, 19, 20, 21, 22, 23], "asoci": [15, 23], "extension": 15, "arranc": [15, 18, 22, 23], "facil": [15, 19, 20, 21], "escritori": [15, 20, 21, 23], "eleg": [15, 18, 21, 23], "organiz": [15, 18, 20], "descomprim": 15, "xf": 15, "Eso": 15, "podr": 15, "usand": [15, 21, 23], "script": 15, "bash": 15, "sh": 15, "encuentr": 15, "subdirectori": 15, "mientr": [15, 19, 20, 21, 22], "defect": [15, 16, 17, 18, 21, 24], "provist": [15, 19, 20], "lug": 15, "ventan": [10, 15, 16, 17, 18, 19, 21], "nautilus": [15, 21], "dej": [15, 18, 23], "recurs": 15, "escan": 15, "clips": [15, 19, 20, 21], "seran": [15, 18, 19, 21, 23], "sequenci": 15, "Sin": 15, "embarg": 15, "nativ": [15, 20], "plataform": [15, 23], "proteg": 15, "OS": 15, "registr": [15, 21], "tampoc": 15, "quier": [15, 18, 19, 21, 22, 23], "hast": [15, 18], "convenient": 15, "poder": [15, 16], "familiaz": 15, "support": [10, 15, 23], "vari": [15, 21, 23, 25], "requ": 15, "tres": [15, 18, 19], "test": 15, "mov": [15, 18, 20, 21], "0001": 15, "exr": [15, 20, 21, 22], "edit": [15, 20], "veloc": [15, 16, 17, 18, 20], "natural": [15, 23], "respet": 15, "codific": 15, "fps": [15, 17, 21], "imagen": [15, 18, 20, 21, 22], "seri": 15, "jpeg": 15, "tga": [15, 20], "usan": 15, "ajust": [15, 16, 18, 20, 22], "window": 15, "dpx": 15, "exrs": [15, 22], "tom": 15, "metadat": [15, 18, 21], "dispon": [15, 18, 19, 20, 21, 23, 24], "visibl": 15, "empez": [15, 18], "verl": [15, 22], "mostr": [15, 17, 19, 21], "f4": [15, 16, 21], "Con": [15, 18, 19, 23], "ver": [15, 20, 22], "comport": [15, 17, 18, 21, 23, 24], "aut": 15, "vien": 16, "Las": [16, 19, 20, 21], "lleng": 16, "busc": [16, 23], "asign": 16, "mayus": 16, "alt": [16, 18], "program": 16, "escap": [16, 19], "h": [16, 18], "enmarc": 16, "pantall": [16, 18, 19, 20, 22], "f": [16, 18], "textur": 16, "are": [16, 17, 19, 20], "d": 16, "mosaic": [16, 20, 21], "c": [16, 23], "roj": [16, 18, 19, 23], "r": [16, 18], "verd": [16, 18, 19], "g": [16, 18], "retroced": 16, "izq": 16, "retrodecd": 16, "avanz": 16, "siguient": [16, 18, 19, 21, 23], "der": 16, "up": [16, 18], "j": 16, "direccion": [16, 21], "espaci": [16, 18, 22], "down": 16, "k": 16, "inici": [16, 22], "fin": [16, 22], "ping": [16, 18, 22], "pong": [16, 18, 22], "pag": 16, "av": 16, "cort": 16, "copi": [16, 21, 23], "peg": [16, 19], "v": [16, 25], "insert": 16, "elimin": 16, "deshac": [16, 19], "edicion": [16, 18, 20], "rehac": [16, 19], "barr": [16, 17, 19, 21, 22], "f1": [16, 18], "superior": [16, 17, 23], "pixel": [16, 17, 18, 19], "f2": [16, 18], "f3": [16, 18], "estatus": [16, 18, 22, 23], "herramient": [16, 18, 19, 20, 21, 23], "f7": [16, 18, 19], "f11": [16, 18], "present": [16, 18, 19, 21], "f12": [16, 18], "flot": 16, "vist": [16, 17, 21], "secundari": 16, "n": [16, 23], "u": 16, "miniatur": [16, 18], "transicion": 16, "marcador": [16, 19], "reset": [16, 18, 23], "gain": 16, "mayor": [16, 20, 22], "exposicion": [16, 18, 20], "men": [16, 18, 23], "oci": [16, 17, 18, 20, 21], "freg": [16, 20], "rectangul": [16, 20, 21, 23], "circul": [16, 20], "t": 16, "tama\u00f1": [16, 18, 19, 20, 22], "lapiz": 16, "establec": [16, 18, 21, 23], "fond": [16, 22, 23], "negr": [16, 18, 23], "hud": 16, "Un": [9, 16, 18, 20, 21], "p": 16, "inform": [10, 16, 17, 18], "f5": 16, "f6": [16, 21], "f8": 16, "disposit": 16, "f9": [16, 21, 24], "histogram": [16, 17], "vectorscopi": [16, 17], "alternalr": 16, "onda": 16, "f10": [16, 23], "bitacor": [16, 17, 23], "acerc": [10, 16, 18, 19], "Qu\u00e9": 17, "8": [17, 18], "descripcion": 17, "general": 17, "compil": 17, "instal": [2, 17], "lanz": 17, "carg": [10, 17, 20, 21, 22], "drag": [17, 20], "and": [17, 20], "drop": [17, 20], "buscador": [17, 21], "recient": 17, "mir": [10, 17], "ocult": [17, 19, 23], "divisor": 17, "context": 17, "modific": [17, 18, 21, 23], "naveg": [17, 20], "especif": [17, 19], "languaj": 17, "posicion": [17, 18, 20], "arhiv": 17, "mape": [17, 21], "error": [17, 18, 21], "prove": 18, "shift": [18, 19, 22], "estan": [18, 20, 21, 23], "tambi": [18, 19, 21], "mous": [18, 23], "tercer": 18, "cuart": 18, "cursor": 18, "desactiv": 18, "imprim": 18, "sab": 18, "scrubbing": 18, "algun": [10, 18, 20, 23], "util": [18, 19, 21, 22, 25], "cualqu": [18, 19, 20], "Estos": [18, 25], "salis": 18, "siempr": [18, 19, 22], "configur": [18, 21, 23, 24], "inspeccion": [18, 20], "sosten": 18, "pan": [18, 20], "grafic": [18, 19, 20, 21, 22, 23], "sosteng": 18, "alej": [18, 19], "rued": [18, 23], "confort": 18, "factor": 18, "zoom": [18, 20], "fit": 18, "hotkey": 18, "porcentaj": 18, "particul": 18, "dig": 18, "2x": 18, "openexr": 18, "gananci": [18, 20], "desliz": 18, "lad": [18, 19], "Este": [18, 23], "opencolori": 18, "junt": [18, 21], "marc": [18, 19, 23], "deriv": 18, "especific": [18, 21], "cg": 18, "config": 18, "nuk": 18, "default": [18, 21, 23], "studi": 18, "precedent": 18, "ondas": 18, "arrastr": [18, 23], "abaj": [18, 19, 21, 22], "rap": [18, 19, 22, 23], "pist": [18, 20, 21], "acercart": 18, "alejart": 18, "inmediat": 18, "normal": 18, "xsecuenci": 18, "digit": 18, "bastant": 18, "universal": [18, 20, 23], "much": [18, 21, 22, 23], "explic": 18, "Hay": [18, 19, 23], "paus": 18, "haci": [18, 22], "delant": [18, 22], "second": [18, 22], "des": 18, "botond": 18, "rapid": [18, 20, 21], "E": 18, "equivalent": 18, "part": 18, "inferior": 18, "prov": [18, 19, 20], "bocin": 18, "establez": 18, "har": 18, "dentendr": 18, "aparient": 18, "film": 18, "masc": [18, 20, 23], "recort": 18, "darl": 18, "aspect": [18, 20], "cinematograf": 18, "determin": 18, "entrar": [18, 19, 21, 22], "heads": 18, "independient": 18, "usa": [18, 21, 23, 24], "gris": 18, "oscur": 18, "vac": 18, "legal": 18, "ningun": [18, 23], "premultiplic": 18, "cerc": [18, 20], "lej": [18, 23], "cercan": 18, "lineal": 18, "soport": [18, 20], "logic": 18, "empotr": [18, 20, 21], "flotat": 18, "arrstra": 18, "peque\u00f1": 18, "amarill": [18, 19], "tal": [18, 23], "grand": 18, "asi": [10, 18, 21, 23], "caracterist": [19, 20, 21, 23], "comentari": 19, "compart": [19, 20, 23], "visual": [19, 20], "coleg": [19, 20], "uso": [19, 20], "fij": 19, "inter": 19, "cualqui": [10, 19, 20, 21, 23], "vec": [19, 21, 23], "empiec": 19, "traz": 19, "visor": [19, 20, 22, 23], "automat": [19, 21, 23], "suav": [19, 21], "dur": [19, 21], "depend": 19, "fantasm": [19, 21], "cuant": [19, 21, 24], "ocurr": [19, 21], "previous": 19, "Entre": 19, "conten": [19, 20], "seccion": [19, 21, 23], "delet": 19, "backspac": 19, "undo": 19, "gom": [19, 20], "parcial": 19, "total": [19, 20], "presenci": 19, "liger": 19, "respect": 19, "entend": 19, "comienc": [19, 23], "figur": 19, "rasteriz": 19, "march": 19, "tarjet": [19, 22], "pincel": [19, 20, 21], "bord": 19, "libr": 19, "bosquej": 19, "prefier": 19, "recuerd": 19, "export": [19, 20], "dentr": [19, 20, 23], "Laser": [19, 21], "persistent": 19, "desaparec": 19, "tras": 19, "revision": [19, 20], "continu": [19, 20], "escrib": [19, 21, 22], "recuadr": 19, "tipograf": [19, 20, 21], "content": 19, "cruz": [19, 23], "descart": 19, "flipbook": 20, "profesional": 20, "codig": [20, 21], "abiert": [20, 23], "industri": 20, "efect": 20, "anim": 20, "focaliz": 20, "intuit": 20, "motor": 20, "performanc": 20, "integr": 20, "pipelin": 20, "estudi": 20, "customiz": [20, 23], "coleccion": 20, "multitud": 20, "format": 20, "especializ": 20, "agrup": 20, "visualiz": 20, "interact": 20, "colabor": 20, "fluj": 20, "esencial": 20, "equip": 20, "post": 20, "production": 20, "demand": [20, 22], "arte": 20, "fuent": 20, "instantan": 20, "pixels": 20, "traves": [10, 20, 23], "multipl": [20, 21], "solucion": 20, "robust": 20, "sid": [20, 22], "despleg": 20, "individu": 20, "diari": 20, "augost": 20, "2022": 20, "fas": 20, "desarroll": [20, 25], "todav": 20, "plen": 20, "trabaj": 20, "resum": 20, "virtual": 20, "hoy": 20, "tif": 20, "jpg": 20, "psd": 20, "mp4": 20, "webm": 20, "use": [20, 21, 22], "constru": 20, "scripts": 20, "reproductor": [20, 21], "revers": 20, "opentimelinei": [20, 21], "fund": 20, "pix": [20, 23], "annot": 20, "individual": 20, "simpl": [20, 23], "opac": 20, "suaviz": 20, "flexibil": 20, "utf": 20, "internacional": 20, "japones": 20, "productor": 20, "precis": 20, "v2": 20, "colour": 20, "management": 20, "interaccion": [20, 21], "correcion": 20, "rgba": 20, "sobreposicion": 20, "predefin": [20, 21], "monitor": 20, "sincron": [20, 21], "sincroniz": 20, "lan": 20, "local": [20, 23], "servidor": [20, 21, 23], "client": [20, 21, 23], "mrv2s": 20, "keys": [20, 23], "prefs": [20, 23], "interpret": 20, "bocet": 21, "podes": [21, 23], "herrameint": 21, "pod": [21, 22], "permanent": 21, "desvanec": 21, "podras": 21, "impres": [21, 23], "grabas": 21, "minim": 21, "maxim": [21, 22], "promedi": 21, "realiz": 21, "sum": 21, "in": [9, 21], "out": 21, "despues": 21, "superpon": 21, "esfer": 21, "Te": 21, "rot": 21, "by": 21, "siet": 21, "click": 21, "emergent": 21, "dand": 21, "acces": 21, "clon": 21, "sub": 21, "portapapel": 21, "recolect": 21, "queres": 21, "email": 21, "archivosr": 21, "abre": [21, 23], "localiz": [21, 23], "emit": 21, "Al": [21, 23], "provien": 21, "tembien": 21, "durant": [21, 25], "ignor": [21, 22, 23], "nunc": 21, "meid": 21, "information": 21, "caball": 21, "batall": 21, "codecs": [21, 22], "session": 21, "maquin": [21, 23], "conect": [21, 23], "dich": 21, "distingu": 21, "ipv4": 21, "ipv6": 21, "ali": 21, "utiliz": 21, "hosts": 21, "ademas": [21, 25], "puert": [21, 23], "55150": 21, "bien": [21, 23], "coneccion": [21, 23], "cab": 21, "asegur": 21, "cortafueg": [21, 23], "permt": 21, "entrant": 21, "salient": 21, "port": [21, 23], "conoc": [21, 23], "edls": 21, "solt": 21, "resolu": [21, 22], "cantid": 21, "asum": 21, "exist": 21, "acced": 21, "cad": [21, 22, 23], "different": 21, "divid": 21, "tipe": 21, "editor": 21, "cache": 21, "mit": [21, 24], "ram": [21, 24], "left": 21, "right": 21, "esteror": 21, "anaglif": 21, "cuadricul": 21, "column": 21, "calid": 21, "van": 21, "signif": 22, "cos": 22, "record": 22, "azar": 22, "widget": 22, "detien": 22, "deten": 22, "trat": 22, "decodific": 22, "guard": [22, 23], "eficient": 22, "entiend": 22, "delg": 22, "obvi": 22, "crec": 22, "ello": 22, "lent": [22, 23], "unas": 22, "alta": 22, "esper": 22, "via": 22, "cas": [22, 23], "capaz": 22, "pes": 22, "optimiz": 22, "mejor": 22, "hardwar": 22, "empat": [22, 23], "rati": 22, "transferent": 22, "comprim": 22, "dwa": 22, "dwb": 22, "caching": 22, "\u00e9ste": 22, "llend": 23, "personal": 23, "filmaur": 23, "hom": 23, "users": 23, "resetsettings": 23, "va": 23, "ataj": 23, "paths": 23, "favorit": 23, "Es": 23, "permanezc": 23, "reescal": 23, "reposicion": 23, "Estas": 23, "Est\u00e1": 23, "section": 23, "aparc": 23, "cuan": 23, "encabez": 23, "aca": 23, "fltk": [10, 23], "gtk": 23, "interaz": 23, "black": 23, "unus": 23, "vent": 23, "rellen": 23, "ls": 23, "Sino": 23, "prend": 23, "reconoc": 23, "desacel": 23, "dramat": 23, "viej": 23, "priv": 23, "tan": 23, "pront": 23, "muev": 23, "wayland": 23, "selccion": 23, "hex": 23, "original": 23, "proces": 23, "hsv": 23, "hsl": 23, "cie": 23, "xyz": 23, "xyy": 23, "lab": 23, "cielab": 23, "luv": 23, "cieluv": 23, "yuv": 23, "analog": 23, "pal": 23, "ydbdr": 23, "secam": 23, "yiq": 23, "ntsc": 23, "itu": 23, "601": 23, "digital": 23, "ycbcr": 23, "709": 23, "hdtv": 23, "luminanc": 23, "lumm": 23, "lightness": 23, "\u00e9stos": 23, "De": 23, "profund": 23, "bits": 23, "repet": 23, "expresion": 23, "regul": 23, "_v": 23, "cheque": 23, "versiond": 23, "remot": 23, "gga": 23, "unix": 23, "as": 23, "agrag": 23, "remuev": 23, "envi": 23, "recib": 23, "nad": 23, "muell": 23, "gb": 24, "usen": 25, "referent": 25, "www": 25, "youtub": 25, "watch": 25, "8jviz": 25, "ppcrg": 25, "plxj9nnbdnfrmd8aq41ajymb7whn99g5c": 25, "dictionary": [], "of": [], "entri": [], "with": [], "callbacks": [], "lik": [], "nem": [], "must": [], "be": [], "overrid": [], "new": 9, "play": [], "your": [], "own": [], "her": [], "exampl": [], "method": [], "for": [], "callback": [], "optional": [], "wheth": [], "is": [], "dem": 10, "constructor": 9, "if": [], "otherwis": [], "rtype": 9, "corresponding": [], "new_menus": [], "sino": 9, "llav": 9, "correspondient": 9, "instanci": 23, "archivi": 23, "\u00e9stas": 23, "redireccion": 23, "notes": 23, "moment": 23, "compor": 23, "tcp": 23, "em": 23, "55120": 23, "abra": 23, "necesari": 23, "pyfltk": [0, 4], "prefspath": [2, 4], "rootpath": [2, 4], "raiz": 2, "fltk14": 10, "widgets": 10, "aunqu": 10, "anterior": 10, "vay": 10, "gitlab": 10, "sourceforg": 10, "docs": 10, "ch0_prefac": 10, "html": 10}, "objects": {"": [[7, 0, 0, "-", "mrv2"]], "mrv2": [[7, 1, 1, "", "FileMedia"], [7, 1, 1, "", "Path"], [7, 1, 1, "", "RationalTime"], [7, 1, 1, "", "TimeRange"], [1, 0, 0, "-", "annotations"], [2, 0, 0, "-", "cmd"], [3, 0, 0, "-", "image"], [5, 0, 0, "-", "math"], [6, 0, 0, "-", "media"], [8, 0, 0, "-", "playlist"], [9, 0, 0, "-", "plugin"], [11, 0, 0, "-", "settings"], [13, 0, 0, "-", "timeline"], [14, 0, 0, "-", "usd"]], "mrv2.FileMedia": [[7, 2, 1, "", "audioOffset"], [7, 2, 1, "", "audioPath"], [7, 2, 1, "", "currentTime"], [7, 2, 1, "", "inOutRange"], [7, 2, 1, "", "loop"], [7, 2, 1, "", "mute"], [7, 2, 1, "", "path"], [7, 2, 1, "", "playback"], [7, 2, 1, "", "timeRange"], [7, 2, 1, "", "videoLayer"], [7, 2, 1, "", "volume"]], "mrv2.Path": [[7, 3, 1, "", "get"], [7, 3, 1, "", "getBaseName"], [7, 3, 1, "", "getDirectory"], [7, 3, 1, "", "getExtension"], [7, 3, 1, "", "getNumber"], [7, 3, 1, "", "getPadding"], [7, 3, 1, "", "isAbsolute"], [7, 3, 1, "", "isEmpty"]], "mrv2.RationalTime": [[7, 3, 1, "", "almost_equal"], [7, 3, 1, "", "duration_from_start_end_time"], [7, 3, 1, "", "duration_from_start_end_time_inclusive"], [7, 3, 1, "", "from_frames"], [7, 3, 1, "", "from_seconds"], [7, 3, 1, "", "from_time_string"], [7, 3, 1, "", "from_timecode"], [7, 3, 1, "", "is_invalid_time"], [7, 3, 1, "", "is_valid_timecode_rate"], [7, 3, 1, "", "nearest_valid_timecode_rate"], [7, 3, 1, "", "rescaled_to"], [7, 3, 1, "", "to_frames"], [7, 3, 1, "", "to_seconds"], [7, 3, 1, "", "to_time_string"], [7, 3, 1, "", "to_timecode"], [7, 3, 1, "", "value_rescaled_to"]], "mrv2.TimeRange": [[7, 3, 1, "", "before"], [7, 3, 1, "", "begins"], [7, 3, 1, "", "clamped"], [7, 3, 1, "", "contains"], [7, 3, 1, "", "duration_extended_by"], [7, 3, 1, "", "end_time_exclusive"], [7, 3, 1, "", "end_time_inclusive"], [7, 3, 1, "", "extended_by"], [7, 3, 1, "", "finishes"], [7, 3, 1, "", "intersects"], [7, 3, 1, "", "meets"], [7, 3, 1, "", "overlaps"], [7, 3, 1, "", "range_from_start_end_time"], [7, 3, 1, "", "range_from_start_end_time_inclusive"]], "mrv2.annotations": [[1, 4, 1, "", "add"]], "mrv2.cmd": [[2, 4, 1, "", "close"], [2, 4, 1, "", "closeAll"], [2, 4, 1, "", "compare"], [2, 4, 1, "", "compareOptions"], [2, 4, 1, "", "displayOptions"], [2, 4, 1, "", "environmentMapOptions"], [2, 4, 1, "", "getLayers"], [2, 4, 1, "", "imageOptions"], [2, 4, 1, "", "isMuted"], [2, 4, 1, "", "lutOptions"], [2, 4, 1, "", "oepnSession"], [2, 4, 1, "", "open"], [2, 4, 1, "", "prefsPath"], [2, 4, 1, "", "rootPath"], [2, 4, 1, "", "save"], [2, 4, 1, "", "savePDF"], [2, 4, 1, "", "saveSession"], [2, 4, 1, "", "saveSessionAs"], [2, 4, 1, "", "setCompareOptions"], [2, 4, 1, "", "setDisplayOptions"], [2, 4, 1, "", "setEnvironmentMapOptions"], [2, 4, 1, "", "setImageOptions"], [2, 4, 1, "", "setLUTOptions"], [2, 4, 1, "", "setMute"], [2, 4, 1, "", "setStereo3DOptions"], [2, 4, 1, "", "setVolume"], [2, 4, 1, "", "stereo3DOptions"], [2, 4, 1, "", "update"], [2, 4, 1, "", "volume"]], "mrv2.image": [[3, 1, 1, "", "AlphaBlend"], [3, 1, 1, "", "Channels"], [3, 1, 1, "", "Color"], [3, 1, 1, "", "DisplayOptions"], [3, 1, 1, "", "EnvironmentMapOptions"], [3, 1, 1, "", "EnvironmentMapType"], [3, 1, 1, "", "ImageFilter"], [3, 1, 1, "", "ImageFilters"], [3, 1, 1, "", "ImageOptions"], [3, 1, 1, "", "InputVideoLevels"], [3, 1, 1, "", "LUTOptions"], [3, 1, 1, "", "LUTOrder"], [3, 1, 1, "", "Levels"], [3, 1, 1, "", "Mirror"], [3, 1, 1, "", "SoftClip"], [3, 1, 1, "", "Stereo3DInput"], [3, 1, 1, "", "Stereo3DOptions"], [3, 1, 1, "", "Stereo3DOutput"], [3, 1, 1, "", "VideoLevels"], [3, 1, 1, "", "YUVCoefficients"]], "mrv2.image.Color": [[3, 2, 1, "", "add"], [3, 2, 1, "", "brightness"], [3, 2, 1, "", "contrast"], [3, 2, 1, "", "enabled"], [3, 2, 1, "", "invert"], [3, 2, 1, "", "saturation"], [3, 2, 1, "", "tint"]], "mrv2.image.DisplayOptions": [[3, 2, 1, "", "channels"], [3, 2, 1, "", "color"], [3, 2, 1, "", "levels"], [3, 2, 1, "", "mirror"], [3, 2, 1, "", "softClip"]], "mrv2.image.EnvironmentMapOptions": [[3, 2, 1, "", "focalLength"], [3, 2, 1, "", "horizontalAperture"], [3, 2, 1, "", "rotateX"], [3, 2, 1, "", "rotateY"], [3, 2, 1, "", "spin"], [3, 2, 1, "", "subdivisionX"], [3, 2, 1, "", "subdivisionY"], [3, 2, 1, "", "type"], [3, 2, 1, "", "verticalAperture"]], "mrv2.image.ImageFilters": [[3, 2, 1, "", "magnify"], [3, 2, 1, "", "minify"]], "mrv2.image.ImageOptions": [[3, 2, 1, "", "alphaBlend"], [3, 2, 1, "", "imageFilters"], [3, 2, 1, "", "videoLevels"]], "mrv2.image.LUTOptions": [[3, 2, 1, "", "fileName"], [3, 2, 1, "", "order"]], "mrv2.image.Levels": [[3, 2, 1, "", "enabled"], [3, 2, 1, "", "gamma"], [3, 2, 1, "", "inHigh"], [3, 2, 1, "", "inLow"], [3, 2, 1, "", "outHigh"], [3, 2, 1, "", "outLow"]], "mrv2.image.Mirror": [[3, 2, 1, "", "x"], [3, 2, 1, "", "y"]], "mrv2.image.SoftClip": [[3, 2, 1, "", "enabled"], [3, 2, 1, "", "value"]], "mrv2.image.Stereo3DOptions": [[3, 2, 1, "", "eyeSeparation"], [3, 2, 1, "", "input"], [3, 2, 1, "", "output"], [3, 2, 1, "", "swapEyes"]], "mrv2.math": [[5, 1, 1, "", "Vector2f"], [5, 1, 1, "", "Vector2i"], [5, 1, 1, "", "Vector3f"], [5, 1, 1, "", "Vector4f"]], "mrv2.math.Vector2f": [[5, 2, 1, "", "x"], [5, 2, 1, "", "y"]], "mrv2.math.Vector2i": [[5, 2, 1, "", "x"], [5, 2, 1, "", "y"]], "mrv2.math.Vector3f": [[5, 2, 1, "", "x"], [5, 2, 1, "", "y"], [5, 2, 1, "", "z"]], "mrv2.math.Vector4f": [[5, 2, 1, "", "w"], [5, 2, 1, "", "x"], [5, 2, 1, "", "y"], [5, 2, 1, "", "z"]], "mrv2.media": [[6, 4, 1, "", "Afile"], [6, 4, 1, "", "Aindex"], [6, 4, 1, "", "BIndexes"], [6, 4, 1, "", "Bfiles"], [6, 1, 1, "", "CompareMode"], [6, 1, 1, "", "CompareOptions"], [6, 4, 1, "", "activeFiles"], [6, 4, 1, "", "clearB"], [6, 4, 1, "", "close"], [6, 4, 1, "", "closeAll"], [6, 4, 1, "", "firstVersion"], [6, 4, 1, "", "lastVersion"], [6, 4, 1, "", "layers"], [6, 4, 1, "", "list"], [6, 4, 1, "", "nextVersion"], [6, 4, 1, "", "previousVersion"], [6, 4, 1, "", "setA"], [6, 4, 1, "", "setB"], [6, 4, 1, "", "setLayer"], [6, 4, 1, "", "setStereo"], [6, 4, 1, "", "toggleB"]], "mrv2.media.CompareOptions": [[6, 2, 1, "", "mode"], [6, 2, 1, "", "overlay"], [6, 2, 1, "", "wipeCenter"], [6, 2, 1, "", "wipeRotation"]], "mrv2.playlist": [[8, 4, 1, "", "add_clip"], [8, 4, 1, "", "list"], [8, 4, 1, "", "save"], [8, 4, 1, "", "select"]], "mrv2.plugin": [[9, 1, 1, "", "Plugin"]], "mrv2.plugin.Plugin": [[9, 3, 1, "", "active"], [9, 3, 1, "", "menus"]], "mrv2.settings": [[11, 4, 1, "", "memory"], [11, 4, 1, "", "readAhead"], [11, 4, 1, "", "readBehind"], [11, 4, 1, "", "setMemory"], [11, 4, 1, "", "setReadAhead"], [11, 4, 1, "", "setReadBehind"]], "mrv2.timeline": [[13, 1, 1, "", "FileSequenceAudio"], [13, 1, 1, "", "Loop"], [13, 1, 1, "", "Playback"], [13, 1, 1, "", "TimerMode"], [13, 4, 1, "", "frame"], [13, 4, 1, "", "inOutRange"], [13, 4, 1, "", "loop"], [13, 4, 1, "", "playBackwards"], [13, 4, 1, "", "playForwards"], [13, 4, 1, "", "seconds"], [13, 4, 1, "", "seek"], [13, 4, 1, "", "setIn"], [13, 4, 1, "", "setInOutRange"], [13, 4, 1, "", "setLoop"], [13, 4, 1, "", "setOut"], [13, 4, 1, "", "stop"], [13, 4, 1, "", "time"], [13, 4, 1, "", "timeRange"]], "mrv2.timeline.FileSequenceAudio": [[13, 5, 1, "", "name"]], "mrv2.timeline.Loop": [[13, 5, 1, "", "name"]], "mrv2.timeline.Playback": [[13, 5, 1, "", "name"]], "mrv2.timeline.TimerMode": [[13, 5, 1, "", "name"]], "mrv2.usd": [[14, 1, 1, "", "DrawMode"], [14, 1, 1, "", "RenderOptions"], [14, 4, 1, "", "renderOptions"], [14, 4, 1, "", "setRenderOptions"]], "mrv2.usd.RenderOptions": [[14, 2, 1, "", "complexity"], [14, 2, 1, "", "diskCacheByteCount"], [14, 2, 1, "", "drawMode"], [14, 2, 1, "", "enableLighting"], [14, 2, 1, "", "renderWidth"], [14, 2, 1, "", "stageCacheCount"]]}, "objtypes": {"0": "py:module", "1": "py:class", "2": "py:attribute", "3": "py:method", "4": "py:function", "5": "py:property"}, "objnames": {"0": ["py", "module", "Python m\u00f3dulo"], "1": ["py", "class", "Python clase"], "2": ["py", "attribute", "Python atributo"], "3": ["py", "method", "Python m\u00e9todo"], "4": ["py", "function", "Python funci\u00f3n"], "5": ["py", "property", "Python propiedad"]}, "titleterms": {"bienven": 0, "document": 0, "mrv2": [0, 7, 15, 17, 18, 20], "tabl": 0, "conten": 0, "indic": [0, 18], "modul": [1, 2, 3, 5, 6, 7, 8, 9, 11, 13, 14], "anot": [1, 19, 21], "cmd": 2, "imag": [3, 23], "python": [4, 21], "api": 4, "math": 5, "medi": [6, 15, 21], "playlist": 8, "plugin": 9, "settings": 11, "sistem": 12, "plug": 12, "ins": 12, "timelin": 13, "usd": [14, 21, 23], "comenz": [15, 23], "compil": 15, "instal": 15, "lanz": 15, "carg": [15, 23], "drag": 15, "and": [15, 18, 23], "drop": 15, "buscador": [15, 23], "menu": [15, 18, 21], "recient": 15, "line": [15, 18, 23], "comand": 15, "mir": 15, "tecl": [16, 22], "manej": 16, "gui": [17, 18], "usuari": [17, 23], "La": 18, "interfaz": [18, 23], "ocult": 18, "mostr": [18, 23], "element": [18, 23], "personaliz": 18, "interaccion": 18, "raton": [18, 21], "visor": 18, "barr": [18, 23], "superior": 18, "tiemp": [18, 23], "cuadr": [18, 22, 23], "control": 18, "transport": 18, "fps": [18, 22, 23], "start": 18, "end": 18, "fram": [18, 23], "indicator": 18, "play": 18, "view": 18, "controls": 18, "vist": [18, 23], "saf": [18, 23], "are": [18, 21, 23], "dat": 18, "window": 18, "display": [18, 23], "mask": 18, "hud": [18, 23], "rend": 18, "canal": 18, "volt": 18, "fond": 18, "nivel": 18, "vide": [18, 22, 25], "mezcl": 18, "alfa": 18, "filtr": 18, "minif": 18, "magnif": 18, "Los": 18, "panel": [18, 21, 23], "divisor": 18, "not": 19, "agreg": [19, 23], "dibuj": 19, "modific": 19, "naveg": 19, "introduccion": 20, "Qu\u00e9": 20, "version": [20, 23], "actual": [20, 22, 23], "v0": 20, "8": 20, "0": 20, "descripcion": 20, "general": 20, "color": [21, 23], "compar": 21, "map": 21, "entorn": 21, "archiv": [21, 23], "context": 21, "boton": 21, "derech": 21, "histogram": 21, "bitacor": 21, "inform": 21, "red": [21, 23], "list": 21, "reproduccion": [21, 22], "sete": [21, 24], "estere": 21, "3d": 21, "vectorscopi": 21, "mod": [22, 23], "bucl": [22, 23], "veloc": [22, 23], "especif": 22, "comport": 22, "cach": 22, "preferent": 23, "siempr": 23, "arrib": 23, "flot": 23, "secundari": 23, "Una": 23, "instanc": 23, "aut": 23, "reencuadr": 23, "normal": 23, "pantall": 23, "complet": 23, "present": 23, "ui": 23, "Las": 23, "menus": 23, "mac": 23, "tool": 23, "dock": 23, "Un": 23, "sol": 23, "ventan": 23, "gananci": 23, "gam": 23, "recort": 23, "zoom": 23, "languaj": 23, "lenguaj": 23, "esquem": 23, "tem": 23, "posicion": 23, "grab": 23, "sal": 23, "fij": 23, "tama\u00f1": 23, "tom": 23, "valor": 23, "arhiv": 23, "click": 23, "par": 23, "viaj": 23, "carpet": 23, "miniatur": 23, "activ": 23, "previ": 23, "usar": 23, "nativ": 23, "reproduc": 23, "per": 23, "second": 23, "segund": 23, "sensit": 23, "freg": 23, "edicion": 23, "transicion": 23, "marcador": 23, "pixel": 23, "rgba": 23, "lumin": 23, "oci": 23, "config": 23, "defect": 23, "use": 23, "displays": 23, "espaci": 23, "entrad": 23, "faltant": 23, "regex": 23, "maxim": 23, "imagen": 23, "apart": 23, "mape": 23, "elimin": 23, "error": 23, "tutorial": 25, "ingles": 25, "pyfltk": 10}, "envversion": {"sphinx.domains.c": 3, "sphinx.domains.changeset": 1, "sphinx.domains.citation": 1, "sphinx.domains.cpp": 9, "sphinx.domains.index": 1, "sphinx.domains.javascript": 3, "sphinx.domains.math": 2, "sphinx.domains.python": 4, "sphinx.domains.rst": 2, "sphinx.domains.std": 2, "sphinx.ext.intersphinx": 1, "sphinx.ext.todo": 2, "sphinx.ext.viewcode": 1, "sphinx": 60}, "alltitles": {"Bienvenido a la documentaci\u00f3n de mrv2!": [[0, "bienvenido-a-la-documentacion-de-mrv2"]], "Tabla de Contenidos": [[0, "tabla-de-contenidos"]], "\u00cdndices y tablas": [[0, "indices-y-tablas"]], "M\u00f3dulo de anotaciones": [[1, "module-mrv2.annotations"]], "M\u00f3dulo cmd": [[2, "module-mrv2.cmd"]], "M\u00f3dulo image": [[3, "module-mrv2.image"]], "Python API": [[4, "python-api"]], "M\u00f3dulo math": [[5, "module-mrv2.math"]], "M\u00f3dulo media": [[6, "module-mrv2.media"]], "M\u00f3dulo mrv2": [[7, "module-mrv2"]], "M\u00f3dulo playlist": [[8, "module-mrv2.playlist"]], "M\u00f3dulo de plugin": [[9, "module-mrv2.plugin"]], "pyFLTK": [[10, "pyfltk"]], "M\u00f3dulo settings": [[11, "module-mrv2.settings"]], "Sistema de Plug-ins": [[12, "sistema-de-plug-ins"]], "Plug-ins": [[12, "plug-ins"]], "M\u00f3dulo timeline": [[13, "module-mrv2.timeline"]], "usd module": [[14, "module-mrv2.usd"]], "Comenzando": [[15, "comenzando"]], "Compilando mrv2": [[15, "compilando-mrv2"]], "Instalando mrv2": [[15, "instalando-mrv2"]], "Lanzando mrv2": [[15, "lanzando-mrv2"]], "Cargando Medios (Drag and Drop)": [[15, "cargando-medios-drag-and-drop"]], "Cargando Medios (Buscador de mrv2)": [[15, "cargando-medios-buscador-de-mrv2"]], "Cargando Medios (Menu Reciente)": [[15, "cargando-medios-menu-reciente"]], "Cargando Medios (L\u00ednea de comandos)": [[15, "cargando-medios-linea-de-comandos"]], "Mirando Medios": [[15, "mirando-medios"]], "Teclas de Manejo": [[16, "teclas-de-manejo"]], "Gu\u00eda del Usuario de mrv2": [[17, "guia-del-usuario-de-mrv2"]], "La interfaz de mrv2": [[18, "la-interfaz-de-mrv2"]], "Ocultando/Mostrando Elementos de la GUI": [[18, "ocultando-mostrando-elementos-de-la-gui"]], "Personalizando la Interfaz": [[18, "personalizando-la-interfaz"]], "Interacci\u00f3n del Rat\u00f3n en el Visor": [[18, "interaccion-del-raton-en-el-visor"]], "La Barra Superior": [[18, "la-barra-superior"]], "La L\u00ednea de Tiempo": [[18, "la-linea-de-tiempo"]], "Indicador de Cuadro": [[18, "indicador-de-cuadro"]], "Controles de Transporte": [[18, "controles-de-transporte"]], "FPS": [[18, "fps"]], "Start and End Frame Indicator": [[18, "start-and-end-frame-indicator"]], "Player/Viewer Controls": [[18, "player-viewer-controls"]], "Menu de Vista": [[18, "menu-de-vista"]], "Safe Areas": [[18, null], [23, null]], "Data Window": [[18, null]], "Display Window": [[18, null]], "Mask": [[18, null]], "HUD": [[18, null], [23, null]], "Men\u00fa de Render": [[18, "menu-de-render"]], "Canales": [[18, null]], "Voltear": [[18, null]], "Fondo": [[18, null]], "Niveles de V\u00eddeo": [[18, null]], "Mezcla Alfa": [[18, null]], "Filtros de Minificaci\u00f3n y Magnificaci\u00f3n": [[18, null]], "Los Paneles": [[18, "los-paneles"]], "Divisor": [[18, "divisor"]], "Notas y Anotaciones": [[19, "notas-y-anotaciones"]], "Agregando una Nota o Dibujo": [[19, "agregando-una-nota-o-dibujo"]], "Modificando una Nota": [[19, "modificando-una-nota"]], "Navegando Notas": [[19, "navegando-notas"]], "Dibujando Anotaciones": [[19, "dibujando-anotaciones"]], "Introducci\u00f3n": [[20, "introduccion"]], "\u00bfQu\u00e9 es mrv2?": [[20, "que-es-mrv2"]], "Versi\u00f3n Actual: v0.8.0 - Descripci\u00f3n General": [[20, "version-actual-v0-8-0-descripcion-general"]], "Paneles": [[21, "paneles"]], "Panel de Anotaciones": [[21, "panel-de-anotaciones"]], "Panel de \u00c1rea de Color": [[21, "panel-de-area-de-color"]], "Panel de Color": [[21, "panel-de-color"]], "Panel de Comparar": [[21, "panel-de-comparar"]], "Panel de Mapa de Entorno": [[21, "panel-de-mapa-de-entorno"]], "Panel de Archivos": [[21, "panel-de-archivos"]], "Men\u00fa de Contexto del Panel de Archivos (Bot\u00f3n derecho del rat\u00f3n)": [[21, "menu-de-contexto-del-panel-de-archivos-boton-derecho-del-raton"]], "Panel de Histograma": [[21, "panel-de-histograma"]], "Panel de Bit\u00e1cora": [[21, "panel-de-bitacora"]], "Panel de Informaci\u00f3n del Medio": [[21, "panel-de-informacion-del-medio"]], "Panel de Red": [[21, "panel-de-red"]], "Panel de Lista de Reproducci\u00f3n": [[21, "panel-de-lista-de-reproduccion"]], "Panel de Python": [[21, "panel-de-python"]], "Panel de Seteos": [[21, "panel-de-seteos"]], "Panel de Est\u00e9reo 3D": [[21, "panel-de-estereo-3d"]], "Panel de USD": [[21, "panel-de-usd"]], "Panel de Vectorscopio": [[21, "panel-de-vectorscopio"]], "Reproducci\u00f3n de V\u00eddeo": [[22, "reproduccion-de-video"]], "Cuadro Actual": [[22, "cuadro-actual"]], "Modos de Bucle": [[22, "modos-de-bucle"]], "Velocidad de FPS": [[22, "velocidad-de-fps"]], "Teclas Espec\u00edficas de Reproducci\u00f3n": [[22, "teclas-especificas-de-reproduccion"]], "Comportamiento del Cache": [[22, "comportamiento-del-cache"]], "Preferencias": [[23, "preferencias"]], "Interfaz del Usuario": [[23, "interfaz-del-usuario"]], "Siempre Arriba y Flotar Vista Secundaria": [[23, null]], "Una Instance": [[23, null]], "Auto Reencuadrar la imagen": [[23, null]], "Normal, Pantalla Completa and Presentaci\u00f3n": [[23, null]], "Elementos de UI": [[23, "elementos-de-ui"]], "Las barras de la UI": [[23, null]], "Menus macOS": [[23, null]], "Tool Dock": [[23, null]], "Un Solo Panel": [[23, null]], "Ventana de Vista": [[23, "ventana-de-vista"]], "Ganancia y Gama": [[23, null]], "Recorte": [[23, null]], "Velocidad de Zoom": [[23, null]], "Languaje y Colores": [[23, "languaje-y-colores"]], "Lenguaje": [[23, null]], "Esquema": [[23, null]], "Tema de Color": [[23, null]], "Colores de Vista": [[23, null]], "Posicionado": [[23, "posicionado"]], "Siempre Grabe al Salir": [[23, null]], "Posici\u00f3n Fija": [[23, null]], "Tama\u00f1o Fijo": [[23, null]], "Tomar los Valores Actuales de la Ventana": [[23, null]], "Buscador de Arhivos": [[23, "buscador-de-arhivos"]], "Un Solo Click para Viajar por Carpetas": [[23, null]], "Miniaturas Activas": [[23, null]], "Vista Previa de Miniaturas de USD": [[23, null]], "Usar el Buscador de Archivos Nativo": [[23, null]], "Reproducir": [[23, "reproducir"]], "Auto Reproducir": [[23, null]], "FPS (Frames per Second o Cuadros por Segundo)": [[23, null]], "Modo de Bucle": [[23, null]], "Sensitividad de Fregado": [[23, null]], "L\u00ednea de Tiempo": [[23, "linea-de-tiempo"]], "Display": [[23, null]], "Vista Previa de Miniaturas": [[23, null], [23, null]], "Ventana de Edici\u00f3n": [[23, "ventana-de-edicion"]], "Comenzar en Modo de Edici\u00f3n": [[23, null]], "Mostrar Transiciones": [[23, null]], "Mostrar Marcadores": [[23, null]], "Barra de Pixel": [[23, "barra-de-pixel"]], "Display RGBA": [[23, null]], "Valores de Pixel": [[23, null]], "Display Secundario": [[23, null]], "Luminancia": [[23, null]], "OCIO": [[23, "ocio"]], "Archivo Config de OCIO": [[23, null]], "OCIO por Defecto": [[23, "ocio-por-defecto"]], "Use Vistas Activas y Displays Activos": [[23, null]], "Espacio de Entrada de Color": [[23, null]], "Cargando": [[23, "cargando"]], "Cuadro Faltante": [[23, null]], "Regex de Versi\u00f3n": [[23, null]], "M\u00e1ximas Im\u00e1genes Aparte": [[23, null]], "Mapeo de Carpetas": [[23, "mapeo-de-carpetas"]], "Agregar Carpetas": [[23, null]], "Eliminar Carpetas": [[23, null]], "Red": [[23, "red"]], "Errores": [[23, "errores"]], "Seteos": [[24, "seteos"]], "Tutoriales de Video (en Ingl\u00e9s)": [[25, "tutoriales-de-video-en-ingles"]]}, "indexentries": {"add() (en el m\u00f3dulo mrv2.annotations)": [[1, "mrv2.annotations.add"]], "module": [[1, "module-mrv2.annotations"], [2, "module-mrv2.cmd"], [3, "module-mrv2.image"], [5, "module-mrv2.math"], [6, "module-mrv2.media"], [7, "module-mrv2"], [8, "module-mrv2.playlist"], [9, "module-mrv2.plugin"], [11, "module-mrv2.settings"], [13, "module-mrv2.timeline"], [14, "module-mrv2.usd"]], "mrv2.annotations": [[1, "module-mrv2.annotations"]], "close() (en el m\u00f3dulo mrv2.cmd)": [[2, "mrv2.cmd.close"]], "closeall() (en el m\u00f3dulo mrv2.cmd)": [[2, "mrv2.cmd.closeAll"]], "compare() (en el m\u00f3dulo mrv2.cmd)": [[2, "mrv2.cmd.compare"]], "compareoptions() (en el m\u00f3dulo mrv2.cmd)": [[2, "mrv2.cmd.compareOptions"]], "displayoptions() (en el m\u00f3dulo mrv2.cmd)": [[2, "mrv2.cmd.displayOptions"]], "environmentmapoptions() (en el m\u00f3dulo mrv2.cmd)": [[2, "mrv2.cmd.environmentMapOptions"]], "getlayers() (en el m\u00f3dulo mrv2.cmd)": [[2, "mrv2.cmd.getLayers"]], "imageoptions() (en el m\u00f3dulo mrv2.cmd)": [[2, "mrv2.cmd.imageOptions"]], "ismuted() (en el m\u00f3dulo mrv2.cmd)": [[2, "mrv2.cmd.isMuted"]], "lutoptions() (en el m\u00f3dulo mrv2.cmd)": [[2, "mrv2.cmd.lutOptions"]], "mrv2.cmd": [[2, "module-mrv2.cmd"]], "oepnsession() (en el m\u00f3dulo mrv2.cmd)": [[2, "mrv2.cmd.oepnSession"]], "open() (en el m\u00f3dulo mrv2.cmd)": [[2, "mrv2.cmd.open"]], "prefspath() (en el m\u00f3dulo mrv2.cmd)": [[2, "mrv2.cmd.prefsPath"]], "rootpath() (en el m\u00f3dulo mrv2.cmd)": [[2, "mrv2.cmd.rootPath"]], "save() (en el m\u00f3dulo mrv2.cmd)": [[2, "mrv2.cmd.save"]], "savepdf() (en el m\u00f3dulo mrv2.cmd)": [[2, "mrv2.cmd.savePDF"]], "savesession() (en el m\u00f3dulo mrv2.cmd)": [[2, "mrv2.cmd.saveSession"]], "savesessionas() (en el m\u00f3dulo mrv2.cmd)": [[2, "mrv2.cmd.saveSessionAs"]], "setcompareoptions() (en el m\u00f3dulo mrv2.cmd)": [[2, "mrv2.cmd.setCompareOptions"]], "setdisplayoptions() (en el m\u00f3dulo mrv2.cmd)": [[2, "mrv2.cmd.setDisplayOptions"]], "setenvironmentmapoptions() (en el m\u00f3dulo mrv2.cmd)": [[2, "mrv2.cmd.setEnvironmentMapOptions"]], "setimageoptions() (en el m\u00f3dulo mrv2.cmd)": [[2, "mrv2.cmd.setImageOptions"]], "setlutoptions() (en el m\u00f3dulo mrv2.cmd)": [[2, "mrv2.cmd.setLUTOptions"]], "setmute() (en el m\u00f3dulo mrv2.cmd)": [[2, "mrv2.cmd.setMute"]], "setstereo3doptions() (en el m\u00f3dulo mrv2.cmd)": [[2, "mrv2.cmd.setStereo3DOptions"]], "setvolume() (en el m\u00f3dulo mrv2.cmd)": [[2, "mrv2.cmd.setVolume"]], "stereo3doptions() (en el m\u00f3dulo mrv2.cmd)": [[2, "mrv2.cmd.stereo3DOptions"]], "update() (en el m\u00f3dulo mrv2.cmd)": [[2, "mrv2.cmd.update"]], "volume() (en el m\u00f3dulo mrv2.cmd)": [[2, "mrv2.cmd.volume"]], "alphablend (clase en mrv2.image)": [[3, "mrv2.image.AlphaBlend"]], "channels (clase en mrv2.image)": [[3, "mrv2.image.Channels"]], "color (clase en mrv2.image)": [[3, "mrv2.image.Color"]], "displayoptions (clase en mrv2.image)": [[3, "mrv2.image.DisplayOptions"]], "environmentmapoptions (clase en mrv2.image)": [[3, "mrv2.image.EnvironmentMapOptions"]], "environmentmaptype (clase en mrv2.image)": [[3, "mrv2.image.EnvironmentMapType"]], "imagefilter (clase en mrv2.image)": [[3, "mrv2.image.ImageFilter"]], "imagefilters (clase en mrv2.image)": [[3, "mrv2.image.ImageFilters"]], "imageoptions (clase en mrv2.image)": [[3, "mrv2.image.ImageOptions"]], "inputvideolevels (clase en mrv2.image)": [[3, "mrv2.image.InputVideoLevels"]], "lutoptions (clase en mrv2.image)": [[3, "mrv2.image.LUTOptions"]], "lutorder (clase en mrv2.image)": [[3, "mrv2.image.LUTOrder"]], "levels (clase en mrv2.image)": [[3, "mrv2.image.Levels"]], "mirror (clase en mrv2.image)": [[3, "mrv2.image.Mirror"]], "softclip (clase en mrv2.image)": [[3, "mrv2.image.SoftClip"]], "stereo3dinput (clase en mrv2.image)": [[3, "mrv2.image.Stereo3DInput"]], "stereo3doptions (clase en mrv2.image)": [[3, "mrv2.image.Stereo3DOptions"]], "stereo3doutput (clase en mrv2.image)": [[3, "mrv2.image.Stereo3DOutput"]], "videolevels (clase en mrv2.image)": [[3, "mrv2.image.VideoLevels"]], "yuvcoefficients (clase en mrv2.image)": [[3, "mrv2.image.YUVCoefficients"]], "add (atributo de mrv2.image.color)": [[3, "mrv2.image.Color.add"]], "alphablend (atributo de mrv2.image.imageoptions)": [[3, "mrv2.image.ImageOptions.alphaBlend"]], "brightness (atributo de mrv2.image.color)": [[3, "mrv2.image.Color.brightness"]], "channels (atributo de mrv2.image.displayoptions)": [[3, "mrv2.image.DisplayOptions.channels"]], "color (atributo de mrv2.image.displayoptions)": [[3, "mrv2.image.DisplayOptions.color"]], "contrast (atributo de mrv2.image.color)": [[3, "mrv2.image.Color.contrast"]], "enabled (atributo de mrv2.image.color)": [[3, "mrv2.image.Color.enabled"]], "enabled (atributo de mrv2.image.levels)": [[3, "mrv2.image.Levels.enabled"]], "enabled (atributo de mrv2.image.softclip)": [[3, "mrv2.image.SoftClip.enabled"]], "eyeseparation (atributo de mrv2.image.stereo3doptions)": [[3, "mrv2.image.Stereo3DOptions.eyeSeparation"]], "filename (atributo de mrv2.image.lutoptions)": [[3, "mrv2.image.LUTOptions.fileName"]], "focallength (atributo de mrv2.image.environmentmapoptions)": [[3, "mrv2.image.EnvironmentMapOptions.focalLength"]], "gamma (atributo de mrv2.image.levels)": [[3, "mrv2.image.Levels.gamma"]], "horizontalaperture (atributo de mrv2.image.environmentmapoptions)": [[3, "mrv2.image.EnvironmentMapOptions.horizontalAperture"]], "imagefilters (atributo de mrv2.image.imageoptions)": [[3, "mrv2.image.ImageOptions.imageFilters"]], "inhigh (atributo de mrv2.image.levels)": [[3, "mrv2.image.Levels.inHigh"]], "inlow (atributo de mrv2.image.levels)": [[3, "mrv2.image.Levels.inLow"]], "input (atributo de mrv2.image.stereo3doptions)": [[3, "mrv2.image.Stereo3DOptions.input"]], "invert (atributo de mrv2.image.color)": [[3, "mrv2.image.Color.invert"]], "levels (atributo de mrv2.image.displayoptions)": [[3, "mrv2.image.DisplayOptions.levels"]], "magnify (atributo de mrv2.image.imagefilters)": [[3, "mrv2.image.ImageFilters.magnify"]], "minify (atributo de mrv2.image.imagefilters)": [[3, "mrv2.image.ImageFilters.minify"]], "mirror (atributo de mrv2.image.displayoptions)": [[3, "mrv2.image.DisplayOptions.mirror"]], "mrv2.image": [[3, "module-mrv2.image"]], "order (atributo de mrv2.image.lutoptions)": [[3, "mrv2.image.LUTOptions.order"]], "outhigh (atributo de mrv2.image.levels)": [[3, "mrv2.image.Levels.outHigh"]], "outlow (atributo de mrv2.image.levels)": [[3, "mrv2.image.Levels.outLow"]], "output (atributo de mrv2.image.stereo3doptions)": [[3, "mrv2.image.Stereo3DOptions.output"]], "rotatex (atributo de mrv2.image.environmentmapoptions)": [[3, "mrv2.image.EnvironmentMapOptions.rotateX"]], "rotatey (atributo de mrv2.image.environmentmapoptions)": [[3, "mrv2.image.EnvironmentMapOptions.rotateY"]], "saturation (atributo de mrv2.image.color)": [[3, "mrv2.image.Color.saturation"]], "softclip (atributo de mrv2.image.displayoptions)": [[3, "mrv2.image.DisplayOptions.softClip"]], "spin (atributo de mrv2.image.environmentmapoptions)": [[3, "mrv2.image.EnvironmentMapOptions.spin"]], "subdivisionx (atributo de mrv2.image.environmentmapoptions)": [[3, "mrv2.image.EnvironmentMapOptions.subdivisionX"]], "subdivisiony (atributo de mrv2.image.environmentmapoptions)": [[3, "mrv2.image.EnvironmentMapOptions.subdivisionY"]], "swapeyes (atributo de mrv2.image.stereo3doptions)": [[3, "mrv2.image.Stereo3DOptions.swapEyes"]], "tint (atributo de mrv2.image.color)": [[3, "mrv2.image.Color.tint"]], "type (atributo de mrv2.image.environmentmapoptions)": [[3, "mrv2.image.EnvironmentMapOptions.type"]], "value (atributo de mrv2.image.softclip)": [[3, "mrv2.image.SoftClip.value"]], "verticalaperture (atributo de mrv2.image.environmentmapoptions)": [[3, "mrv2.image.EnvironmentMapOptions.verticalAperture"]], "videolevels (atributo de mrv2.image.imageoptions)": [[3, "mrv2.image.ImageOptions.videoLevels"]], "x (atributo de mrv2.image.mirror)": [[3, "mrv2.image.Mirror.x"]], "y (atributo de mrv2.image.mirror)": [[3, "mrv2.image.Mirror.y"]], "vector2f (clase en mrv2.math)": [[5, "mrv2.math.Vector2f"]], "vector2i (clase en mrv2.math)": [[5, "mrv2.math.Vector2i"]], "vector3f (clase en mrv2.math)": [[5, "mrv2.math.Vector3f"]], "vector4f (clase en mrv2.math)": [[5, "mrv2.math.Vector4f"]], "mrv2.math": [[5, "module-mrv2.math"]], "w (atributo de mrv2.math.vector4f)": [[5, "mrv2.math.Vector4f.w"]], "x (atributo de mrv2.math.vector2f)": [[5, "mrv2.math.Vector2f.x"]], "x (atributo de mrv2.math.vector2i)": [[5, "mrv2.math.Vector2i.x"]], "x (atributo de mrv2.math.vector3f)": [[5, "mrv2.math.Vector3f.x"]], "x (atributo de mrv2.math.vector4f)": [[5, "mrv2.math.Vector4f.x"]], "y (atributo de mrv2.math.vector2f)": [[5, "mrv2.math.Vector2f.y"]], "y (atributo de mrv2.math.vector2i)": [[5, "mrv2.math.Vector2i.y"]], "y (atributo de mrv2.math.vector3f)": [[5, "mrv2.math.Vector3f.y"]], "y (atributo de mrv2.math.vector4f)": [[5, "mrv2.math.Vector4f.y"]], "z (atributo de mrv2.math.vector3f)": [[5, "mrv2.math.Vector3f.z"]], "z (atributo de mrv2.math.vector4f)": [[5, "mrv2.math.Vector4f.z"]], "afile() (en el m\u00f3dulo mrv2.media)": [[6, "mrv2.media.Afile"]], "aindex() (en el m\u00f3dulo mrv2.media)": [[6, "mrv2.media.Aindex"]], "bindexes() (en el m\u00f3dulo mrv2.media)": [[6, "mrv2.media.BIndexes"]], "bfiles() (en el m\u00f3dulo mrv2.media)": [[6, "mrv2.media.Bfiles"]], "comparemode (clase en mrv2.media)": [[6, "mrv2.media.CompareMode"]], "compareoptions (clase en mrv2.media)": [[6, "mrv2.media.CompareOptions"]], "activefiles() (en el m\u00f3dulo mrv2.media)": [[6, "mrv2.media.activeFiles"]], "clearb() (en el m\u00f3dulo mrv2.media)": [[6, "mrv2.media.clearB"]], "close() (en el m\u00f3dulo mrv2.media)": [[6, "mrv2.media.close"]], "closeall() (en el m\u00f3dulo mrv2.media)": [[6, "mrv2.media.closeAll"]], "firstversion() (en el m\u00f3dulo mrv2.media)": [[6, "mrv2.media.firstVersion"]], "lastversion() (en el m\u00f3dulo mrv2.media)": [[6, "mrv2.media.lastVersion"]], "layers() (en el m\u00f3dulo mrv2.media)": [[6, "mrv2.media.layers"]], "list() (en el m\u00f3dulo mrv2.media)": [[6, "mrv2.media.list"]], "mode (atributo de mrv2.media.compareoptions)": [[6, "mrv2.media.CompareOptions.mode"]], "mrv2.media": [[6, "module-mrv2.media"]], "nextversion() (en el m\u00f3dulo mrv2.media)": [[6, "mrv2.media.nextVersion"]], "overlay (atributo de mrv2.media.compareoptions)": [[6, "mrv2.media.CompareOptions.overlay"]], "previousversion() (en el m\u00f3dulo mrv2.media)": [[6, "mrv2.media.previousVersion"]], "seta() (en el m\u00f3dulo mrv2.media)": [[6, "mrv2.media.setA"]], "setb() (en el m\u00f3dulo mrv2.media)": [[6, "mrv2.media.setB"]], "setlayer() (en el m\u00f3dulo mrv2.media)": [[6, "mrv2.media.setLayer"]], "setstereo() (en el m\u00f3dulo mrv2.media)": [[6, "mrv2.media.setStereo"]], "toggleb() (en el m\u00f3dulo mrv2.media)": [[6, "mrv2.media.toggleB"]], "wipecenter (atributo de mrv2.media.compareoptions)": [[6, "mrv2.media.CompareOptions.wipeCenter"]], "wiperotation (atributo de mrv2.media.compareoptions)": [[6, "mrv2.media.CompareOptions.wipeRotation"]], "filemedia (clase en mrv2)": [[7, "mrv2.FileMedia"]], "path (clase en mrv2)": [[7, "mrv2.Path"]], "rationaltime (clase en mrv2)": [[7, "mrv2.RationalTime"]], "timerange (clase en mrv2)": [[7, "mrv2.TimeRange"]], "almost_equal() (m\u00e9todo de mrv2.rationaltime)": [[7, "mrv2.RationalTime.almost_equal"]], "audiooffset (atributo de mrv2.filemedia)": [[7, "mrv2.FileMedia.audioOffset"]], "audiopath (atributo de mrv2.filemedia)": [[7, "mrv2.FileMedia.audioPath"]], "before() (m\u00e9todo de mrv2.timerange)": [[7, "mrv2.TimeRange.before"]], "begins() (m\u00e9todo de mrv2.timerange)": [[7, "mrv2.TimeRange.begins"]], "clamped() (m\u00e9todo de mrv2.timerange)": [[7, "mrv2.TimeRange.clamped"]], "contains() (m\u00e9todo de mrv2.timerange)": [[7, "mrv2.TimeRange.contains"]], "currenttime (atributo de mrv2.filemedia)": [[7, "mrv2.FileMedia.currentTime"]], "duration_extended_by() (m\u00e9todo de mrv2.timerange)": [[7, "mrv2.TimeRange.duration_extended_by"]], "duration_from_start_end_time() (m\u00e9todo est\u00e1tico de mrv2.rationaltime)": [[7, "mrv2.RationalTime.duration_from_start_end_time"]], "duration_from_start_end_time_inclusive() (m\u00e9todo est\u00e1tico de mrv2.rationaltime)": [[7, "mrv2.RationalTime.duration_from_start_end_time_inclusive"]], "end_time_exclusive() (m\u00e9todo de mrv2.timerange)": [[7, "mrv2.TimeRange.end_time_exclusive"]], "end_time_inclusive() (m\u00e9todo de mrv2.timerange)": [[7, "mrv2.TimeRange.end_time_inclusive"]], "extended_by() (m\u00e9todo de mrv2.timerange)": [[7, "mrv2.TimeRange.extended_by"]], "finishes() (m\u00e9todo de mrv2.timerange)": [[7, "mrv2.TimeRange.finishes"]], "from_frames() (m\u00e9todo est\u00e1tico de mrv2.rationaltime)": [[7, "mrv2.RationalTime.from_frames"]], "from_seconds() (m\u00e9todo est\u00e1tico de mrv2.rationaltime)": [[7, "mrv2.RationalTime.from_seconds"]], "from_time_string() (m\u00e9todo est\u00e1tico de mrv2.rationaltime)": [[7, "mrv2.RationalTime.from_time_string"]], "from_timecode() (m\u00e9todo est\u00e1tico de mrv2.rationaltime)": [[7, "mrv2.RationalTime.from_timecode"]], "get() (m\u00e9todo de mrv2.path)": [[7, "mrv2.Path.get"]], "getbasename() (m\u00e9todo de mrv2.path)": [[7, "mrv2.Path.getBaseName"]], "getdirectory() (m\u00e9todo de mrv2.path)": [[7, "mrv2.Path.getDirectory"]], "getextension() (m\u00e9todo de mrv2.path)": [[7, "mrv2.Path.getExtension"]], "getnumber() (m\u00e9todo de mrv2.path)": [[7, "mrv2.Path.getNumber"]], "getpadding() (m\u00e9todo de mrv2.path)": [[7, "mrv2.Path.getPadding"]], "inoutrange (atributo de mrv2.filemedia)": [[7, "mrv2.FileMedia.inOutRange"]], "intersects() (m\u00e9todo de mrv2.timerange)": [[7, "mrv2.TimeRange.intersects"]], "isabsolute() (m\u00e9todo de mrv2.path)": [[7, "mrv2.Path.isAbsolute"]], "isempty() (m\u00e9todo de mrv2.path)": [[7, "mrv2.Path.isEmpty"]], "is_invalid_time() (m\u00e9todo de mrv2.rationaltime)": [[7, "mrv2.RationalTime.is_invalid_time"]], "is_valid_timecode_rate() (m\u00e9todo est\u00e1tico de mrv2.rationaltime)": [[7, "mrv2.RationalTime.is_valid_timecode_rate"]], "loop (atributo de mrv2.filemedia)": [[7, "mrv2.FileMedia.loop"]], "meets() (m\u00e9todo de mrv2.timerange)": [[7, "mrv2.TimeRange.meets"]], "mrv2": [[7, "module-mrv2"]], "mute (atributo de mrv2.filemedia)": [[7, "mrv2.FileMedia.mute"]], "nearest_valid_timecode_rate() (m\u00e9todo est\u00e1tico de mrv2.rationaltime)": [[7, "mrv2.RationalTime.nearest_valid_timecode_rate"]], "overlaps() (m\u00e9todo de mrv2.timerange)": [[7, "mrv2.TimeRange.overlaps"]], "path (atributo de mrv2.filemedia)": [[7, "mrv2.FileMedia.path"]], "playback (atributo de mrv2.filemedia)": [[7, "mrv2.FileMedia.playback"]], "range_from_start_end_time() (m\u00e9todo est\u00e1tico de mrv2.timerange)": [[7, "mrv2.TimeRange.range_from_start_end_time"]], "range_from_start_end_time_inclusive() (m\u00e9todo est\u00e1tico de mrv2.timerange)": [[7, "mrv2.TimeRange.range_from_start_end_time_inclusive"]], "rescaled_to() (m\u00e9todo de mrv2.rationaltime)": [[7, "mrv2.RationalTime.rescaled_to"]], "timerange (atributo de mrv2.filemedia)": [[7, "mrv2.FileMedia.timeRange"]], "to_frames() (m\u00e9todo de mrv2.rationaltime)": [[7, "mrv2.RationalTime.to_frames"]], "to_seconds() (m\u00e9todo de mrv2.rationaltime)": [[7, "mrv2.RationalTime.to_seconds"]], "to_time_string() (m\u00e9todo de mrv2.rationaltime)": [[7, "mrv2.RationalTime.to_time_string"]], "to_timecode() (m\u00e9todo de mrv2.rationaltime)": [[7, "mrv2.RationalTime.to_timecode"]], "value_rescaled_to() (m\u00e9todo de mrv2.rationaltime)": [[7, "mrv2.RationalTime.value_rescaled_to"]], "videolayer (atributo de mrv2.filemedia)": [[7, "mrv2.FileMedia.videoLayer"]], "volume (atributo de mrv2.filemedia)": [[7, "mrv2.FileMedia.volume"]], "add_clip() (en el m\u00f3dulo mrv2.playlist)": [[8, "mrv2.playlist.add_clip"]], "list() (en el m\u00f3dulo mrv2.playlist)": [[8, "mrv2.playlist.list"]], "mrv2.playlist": [[8, "module-mrv2.playlist"]], "save() (en el m\u00f3dulo mrv2.playlist)": [[8, "mrv2.playlist.save"]], "select() (en el m\u00f3dulo mrv2.playlist)": [[8, "mrv2.playlist.select"]], "plugin (clase en mrv2.plugin)": [[9, "mrv2.plugin.Plugin"]], "active() (m\u00e9todo de mrv2.plugin.plugin)": [[9, "mrv2.plugin.Plugin.active"]], "menus() (m\u00e9todo de mrv2.plugin.plugin)": [[9, "mrv2.plugin.Plugin.menus"]], "mrv2.plugin": [[9, "module-mrv2.plugin"]], "memory() (en el m\u00f3dulo mrv2.settings)": [[11, "mrv2.settings.memory"]], "mrv2.settings": [[11, "module-mrv2.settings"]], "readahead() (en el m\u00f3dulo mrv2.settings)": [[11, "mrv2.settings.readAhead"]], "readbehind() (en el m\u00f3dulo mrv2.settings)": [[11, "mrv2.settings.readBehind"]], "setmemory() (en el m\u00f3dulo mrv2.settings)": [[11, "mrv2.settings.setMemory"]], "setreadahead() (en el m\u00f3dulo mrv2.settings)": [[11, "mrv2.settings.setReadAhead"]], "setreadbehind() (en el m\u00f3dulo mrv2.settings)": [[11, "mrv2.settings.setReadBehind"]], "filesequenceaudio (clase en mrv2.timeline)": [[13, "mrv2.timeline.FileSequenceAudio"]], "loop (clase en mrv2.timeline)": [[13, "mrv2.timeline.Loop"]], "playback (clase en mrv2.timeline)": [[13, "mrv2.timeline.Playback"]], "timermode (clase en mrv2.timeline)": [[13, "mrv2.timeline.TimerMode"]], "frame() (en el m\u00f3dulo mrv2.timeline)": [[13, "mrv2.timeline.frame"]], "inoutrange() (en el m\u00f3dulo mrv2.timeline)": [[13, "mrv2.timeline.inOutRange"]], "loop() (en el m\u00f3dulo mrv2.timeline)": [[13, "mrv2.timeline.loop"]], "mrv2.timeline": [[13, "module-mrv2.timeline"]], "name (mrv2.timeline.filesequenceaudio propiedad)": [[13, "mrv2.timeline.FileSequenceAudio.name"]], "name (mrv2.timeline.loop propiedad)": [[13, "mrv2.timeline.Loop.name"]], "name (mrv2.timeline.playback propiedad)": [[13, "mrv2.timeline.Playback.name"]], "name (mrv2.timeline.timermode propiedad)": [[13, "mrv2.timeline.TimerMode.name"]], "playbackwards() (en el m\u00f3dulo mrv2.timeline)": [[13, "mrv2.timeline.playBackwards"]], "playforwards() (en el m\u00f3dulo mrv2.timeline)": [[13, "mrv2.timeline.playForwards"]], "seconds() (en el m\u00f3dulo mrv2.timeline)": [[13, "mrv2.timeline.seconds"]], "seek() (en el m\u00f3dulo mrv2.timeline)": [[13, "mrv2.timeline.seek"]], "setin() (en el m\u00f3dulo mrv2.timeline)": [[13, "mrv2.timeline.setIn"]], "setinoutrange() (en el m\u00f3dulo mrv2.timeline)": [[13, "mrv2.timeline.setInOutRange"]], "setloop() (en el m\u00f3dulo mrv2.timeline)": [[13, "mrv2.timeline.setLoop"]], "setout() (en el m\u00f3dulo mrv2.timeline)": [[13, "mrv2.timeline.setOut"]], "stop() (en el m\u00f3dulo mrv2.timeline)": [[13, "mrv2.timeline.stop"]], "time() (en el m\u00f3dulo mrv2.timeline)": [[13, "mrv2.timeline.time"]], "timerange() (en el m\u00f3dulo mrv2.timeline)": [[13, "mrv2.timeline.timeRange"]], "drawmode (clase en mrv2.usd)": [[14, "mrv2.usd.DrawMode"]], "renderoptions (clase en mrv2.usd)": [[14, "mrv2.usd.RenderOptions"]], "complexity (atributo de mrv2.usd.renderoptions)": [[14, "mrv2.usd.RenderOptions.complexity"]], "diskcachebytecount (atributo de mrv2.usd.renderoptions)": [[14, "mrv2.usd.RenderOptions.diskCacheByteCount"]], "drawmode (atributo de mrv2.usd.renderoptions)": [[14, "mrv2.usd.RenderOptions.drawMode"]], "enablelighting (atributo de mrv2.usd.renderoptions)": [[14, "mrv2.usd.RenderOptions.enableLighting"]], "mrv2.usd": [[14, "module-mrv2.usd"]], "renderoptions() (en el m\u00f3dulo mrv2.usd)": [[14, "mrv2.usd.renderOptions"]], "renderwidth (atributo de mrv2.usd.renderoptions)": [[14, "mrv2.usd.RenderOptions.renderWidth"]], "setrenderoptions() (en el m\u00f3dulo mrv2.usd)": [[14, "mrv2.usd.setRenderOptions"]], "stagecachecount (atributo de mrv2.usd.renderoptions)": [[14, "mrv2.usd.RenderOptions.stageCacheCount"]]}})
\ No newline at end of file
diff --git a/mrv2/lib/mrvFLU/Flu_File_Chooser.cpp b/mrv2/lib/mrvFLU/Flu_File_Chooser.cpp
index 0a2cbbf90..ce09d85d9 100644
--- a/mrv2/lib/mrvFLU/Flu_File_Chooser.cpp
+++ b/mrv2/lib/mrvFLU/Flu_File_Chooser.cpp
@@ -138,33 +138,32 @@ std::string Flu_File_Chooser::renameErrTxt = "Unable to rename '%s' to '%s'";
#define DEFAULT_ENTRY_WIDTH 235
-Fl_Pixmap up_folder_img((char* const*)big_folder_up_xpm),
- trash((char* const*)trash_xpm),
- new_folder((char* const*)big_folder_new_xpm),
- reload((char* const*)reload_xpm), preview_img((char* const*)monalisa_xpm),
- file_list_img((char* const*)filelist_xpm),
- file_listwide_img((char* const*)filelistwide_xpm),
- fileDetails((char* const*)filedetails_xpm),
- add_to_favorite_folder((char* const*)folder_favorite_xpm),
- home((char* const*)bighome_xpm), favorites((char* const*)bigfavorites_xpm),
- desktop((char* const*)desktop_xpm),
- folder_closed((char* const*)folder_closed_xpm),
- default_file((char* const*)textdoc_xpm),
- my_computer((char* const*)my_computer_xpm),
- computer((char* const*)computer_xpm),
- disk_drive((char* const*)disk_drive_xpm),
- cd_drive((char* const*)cd_drive_xpm),
- floppy_drive((char* const*)floppy_drive_xpm),
- removable_drive((char* const*)removable_drive_xpm),
- ram_drive((char* const*)ram_drive_xpm),
- network_drive((char* const*)network_drive_xpm),
- documents((char* const*)filled_folder_xpm),
- littlehome((char* const*)home_xpm),
- little_favorites((char* const*)mini_folder_favorites_xpm),
- little_desktop((char* const*)mini_desktop_xpm),
- bigdocuments((char* const*)bigdocuments_xpm),
- bigtemporary((char* const*)bigtemporary_xpm), reel((char* const*)reel_xpm),
- picture((char* const*)image_xpm), music((char* const*)music_xpm);
+Fl_Pixmap up_folder_img((char*const*)big_folder_up_xpm),
+ trash((char*const*)trash_xpm), new_folder((char*const*)big_folder_new_xpm),
+ reload((char*const*)reload_xpm), preview_img((char*const*)monalisa_xpm),
+ file_list_img((char*const*)filelist_xpm),
+ file_listwide_img((char*const*)filelistwide_xpm),
+ fileDetails((char*const*)filedetails_xpm),
+ add_to_favorite_folder((char*const*)folder_favorite_xpm),
+ home((char*const*)bighome_xpm), favorites((char*const*)bigfavorites_xpm),
+ desktop((char*const*)desktop_xpm),
+ folder_closed((char*const*)folder_closed_xpm),
+ default_file((char*const*)textdoc_xpm),
+ my_computer((char*const*)my_computer_xpm),
+ computer((char*const*)computer_xpm),
+ disk_drive((char*const*)disk_drive_xpm),
+ cd_drive((char*const*)cd_drive_xpm),
+ floppy_drive((char*const*)floppy_drive_xpm),
+ removable_drive((char*const*)removable_drive_xpm),
+ ram_drive((char*const*)ram_drive_xpm),
+ network_drive((char*const*)network_drive_xpm),
+ documents((char*const*)filled_folder_xpm),
+ littlehome((char*const*)home_xpm),
+ little_favorites((char*const*)mini_folder_favorites_xpm),
+ little_desktop((char*const*)mini_desktop_xpm),
+ bigdocuments((char*const*)bigdocuments_xpm),
+ bigtemporary((char*const*)bigtemporary_xpm), reel((char*const*)reel_xpm),
+ picture((char*const*)image_xpm), music((char*const*)music_xpm);
#define streq(a, b) (strcmp(a, b) == 0)
@@ -1832,23 +1831,15 @@ void Flu_File_Chooser::okCB()
}
else
{
- if (strlen(filename.value()) != 0)
+ const char* file = filename.value();
+ if (strlen(file) != 0)
{
- if (_isProbablyAPattern(filename.value()))
+ if (mrv::is_directory(file))
{
- cd(filename.value());
+ cd(file);
+ filename.value("");
return;
}
-#ifdef _WIN32
- if (filename.value()[1] == ':')
-#else
- if (filename.value()[0] == '/')
-#endif
- if (fl_filename_isdir(filename.value()))
- {
- filename.value("");
- return;
- }
Fl_Group* g = getEntryGroup();
Entry* e = nullptr;
diff --git a/mrv2/lib/mrvFl/mrvPreferences.cpp b/mrv2/lib/mrvFl/mrvPreferences.cpp
index 356951f56..6954e503e 100644
--- a/mrv2/lib/mrvFl/mrvPreferences.cpp
+++ b/mrv2/lib/mrvFl/mrvPreferences.cpp
@@ -130,7 +130,8 @@ namespace mrv
LOG_INFO(msg);
- Fl_Preferences base(prefspath().c_str(), "filmaura", "mrv2");
+ Fl_Preferences base(
+ prefspath().c_str(), "filmaura", "mrv2", Fl_Preferences::C_LOCALE);
base.get("version", version, 7);
@@ -689,7 +690,8 @@ namespace mrv
char key[256];
Fl_Preferences path_mapping(
- prefspath().c_str(), "filmaura", "mrv2.paths");
+ prefspath().c_str(), "filmaura", "mrv2.paths",
+ Fl_Preferences::C_LOCALE);
num = path_mapping.entries();
for (int i = 0; i < num; ++i)
{
@@ -912,7 +914,10 @@ namespace mrv
visible = 1;
settingsObject->setValue("gui/DockGroup/Visible", visible);
- Fl_Preferences base(prefspath().c_str(), "filmaura", "mrv2");
+ Fl_Preferences base(
+ prefspath().c_str(), "filmaura", "mrv2",
+ (Fl_Preferences::Root)(
+ (int)Fl_Preferences::C_LOCALE | (int)Fl_Preferences::CLEAR));
base.set("version", 7);
Fl_Preferences fltk_settings(base, "settings");
@@ -1233,7 +1238,9 @@ namespace mrv
char key[256];
Fl_Preferences path_mapping(
- prefspath().c_str(), "filmaura", "mrv2.paths");
+ prefspath().c_str(), "filmaura", "mrv2.paths",
+ (Fl_Preferences::Root)(
+ (int)Fl_Preferences::C_LOCALE | (int)Fl_Preferences::CLEAR));
path_mapping.clear();
for (int i = 2; i <= uiPrefs->PathMappings->size(); ++i)
{
@@ -1281,7 +1288,10 @@ namespace mrv
{
Fl_Preferences keys(
- prefspath().c_str(), "filmaura", hotkeys_file.c_str());
+ prefspath().c_str(), "filmaura", hotkeys_file.c_str(),
+ (Fl_Preferences::Root)(
+ (int)Fl_Preferences::C_LOCALE |
+ (int)Fl_Preferences::CLEAR));
save_hotkeys(keys);
msg = tl::string::Format(
@@ -1711,7 +1721,8 @@ namespace mrv
}
}
- Fl_Preferences base(prefspath().c_str(), "filmaura", "mrv2");
+ Fl_Preferences base(
+ prefspath().c_str(), "filmaura", "mrv2", Fl_Preferences::C_LOCALE);
Fl_Preferences gui(base, "ui");
gui.set("single_instance", uiPrefs->uiPrefsSingleInstance->value());
gui.set(
diff --git a/mrv2/lib/mrvPy/Cmds.cpp b/mrv2/lib/mrvPy/Cmds.cpp
index b7db86969..bbe1413a8 100644
--- a/mrv2/lib/mrvPy/Cmds.cpp
+++ b/mrv2/lib/mrvPy/Cmds.cpp
@@ -348,6 +348,16 @@ namespace mrv2
}
#endif
+ /**
+ * \brief Returns the current session file.
+ *
+ * @param file The path to the session file, like: test.mrv2s
+ */
+ std::string currentSession()
+ {
+ return current_session();
+ }
+
/**
* \brief Open a session file.
*
@@ -509,7 +519,11 @@ Used to run main commands and get and set the display, image, compare, LUT optio
#endif
cmds.def(
- "oepnSession", &mrv2::cmd::openSession, _("Open a session file."),
+ "currentSession", &mrv2::cmd::currentSession,
+ _("Returns current session file."));
+
+ cmds.def(
+ "openSession", &mrv2::cmd::openSession, _("Open a session file."),
py::arg("file"));
cmds.def("saveSession", &mrv2::cmd::saveSession, _("Save a session file."));
diff --git a/mrv2/lib/mrvWidgets/mrViewer.fl b/mrv2/lib/mrvWidgets/mrViewer.fl
index 12bc32dd0..d0192b4fc 100644
--- a/mrv2/lib/mrvWidgets/mrViewer.fl
+++ b/mrv2/lib/mrvWidgets/mrViewer.fl
@@ -3,15 +3,10 @@ version 1.0400
i18n_type 1
i18n_include {}
i18n_conditional {}
-i18n_function gettext
-i18n_static_function gettext_noop
+i18n_gnu_function gettext
+i18n_gnu_static_function gettext_noop
header_name {.h}
code_name {.cxx}
-snap {
- ver 1
- current_suite FLTK
- current_preset 0
-}
decl {\#include "FL/Fl_Flex.H"} {public global
}
@@ -425,7 +420,7 @@ widget_class TimelineClass {open
Fl_Group {} {open
xywh {4 0 686 29}
} {
- Fl_Group {} {open
+ Fl_Group {} {
xywh {4 3 94 26}
} {
Fl_Menu_Button uiTimecodeSwitch {
@@ -473,7 +468,7 @@ ui->uiView->take_focus();}
Fl_Group {} {open
xywh {99 1 411 28}
} {
- Fl_Group {} {open
+ Fl_Group {} {
xywh {99 3 240 26}
} {
Fl_Button {} {
@@ -570,9 +565,14 @@ player->setLoop( loop );}
label FPS
user_data this user_data_type {ViewerUI*}
callback {int idx = o->value();
+std::cerr << idx << ") " << o->text(idx)
+ << std::endl;
+const char* locale = setlocale(LC_NUMERIC, NULL);
+if (locale)
+ std::cerr << "locale is " << locale << std::endl;
double speed = atof( o->text( idx ) );
uiFPS->value( speed );
-uiFPS->do_callback();} open
+uiFPS->do_callback();}
tooltip {Some default frame rate settings.} xywh {341 1 40 24} labelsize 10 align 16
code0 {o->disable_label();}
class {mrv::PopupMenu}
@@ -639,14 +639,13 @@ uiFPS->do_callback();} open
callback {double speed = o->value();
auto player = ui->uiView->getTimelinePlayer();
- if ( speed <= 0.0 )
- {
- speed = player->defaultSpeed();
- o->value(speed);
- o->redraw();
- }
- player->setSpeed( speed );
-ui->uiView->take_focus();}
+if ( speed <= 0.0 )
+{
+ speed = player->defaultSpeed();
+ o->value(speed);
+ o->redraw();
+}
+player->setSpeed( speed );} selected
tooltip {Allows you to adjust frame rate playback.} xywh {386 3 42 24} color -1733777408 selection_color 0
code0 {o->textcolor( FL_BLACK );
o->value(24);}
@@ -1185,7 +1184,7 @@ settingsObject->setValue( mrv::kPenColorA, a);}
xywh {0 577 690 25} color 0
} {
Fl_Group uiStatusBar {
- label {Everything OK. } open selected
+ label {Everything OK. } open
xywh {0 577 690 25} box FLAT_BOX labelsize 10 align 84
code0 {o->save_colors();}
class {mrv::StatusBar}
diff --git a/mrv2/po/es.po b/mrv2/po/es.po
index d83201ac6..85db9248d 100644
--- a/mrv2/po/es.po
+++ b/mrv2/po/es.po
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: mrv2 v0.7.7\n"
"Report-Msgid-Bugs-To: ggarra13@gmail.com\n"
-"POT-Creation-Date: 2023-10-07 20:02-0300\n"
+"POT-Creation-Date: 2023-10-07 20:10-0300\n"
"PO-Revision-Date: 2023-02-11 13:42-0300\n"
"Last-Translator: Gonzalo Garramuño \n"
"Language-Team: Spanish \n"
@@ -906,7 +906,7 @@ msgid "50"
msgstr "50"
msgid "59.94"
-msgstr "59.94"
+msgstr "59,94"
msgid "60"
msgstr "60"
diff --git a/mrv2/python/demos/fltk/arc.py b/mrv2/python/demos/fltk/arc.py
index b0207247b..aabf63028 100644
--- a/mrv2/python/demos/fltk/arc.py
+++ b/mrv2/python/demos/fltk/arc.py
@@ -108,8 +108,6 @@ def slider_cb(ptr, v):
window.end()
-#window.show(len(sys.argv),sys.argv)
-#window.show()
window.show()
d.redraw()
diff --git a/tlRender b/tlRender
index 6e260118b..870f18b1b 160000
--- a/tlRender
+++ b/tlRender
@@ -1 +1 @@
-Subproject commit 6e260118b3326c8e29991f5fd4dd3ff5f8992184
+Subproject commit 870f18b1b74b12c4048e1d9921d36ce1f405e731