From 55264cacd83a7b0d1f47db099ab5c91844cb8024 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Gonzalo=20Garramu=C3=B1o?= Date: Mon, 9 Oct 2023 14:14:34 -0300 Subject: [PATCH 1/9] Updated Python plug-in API to support adding dividers to menu entries. --- mrv2/lib/mrvPy/Plugin.cpp | 35 ++++++++++++++++++++++-- mrv2/lib/mrvUI/mrvMenus.cpp | 44 ++++++++++++++++++++++++------ mrv2/python/plug-ins/mrv2_hello.py | 8 ++++-- 3 files changed, 73 insertions(+), 14 deletions(-) diff --git a/mrv2/lib/mrvPy/Plugin.cpp b/mrv2/lib/mrvPy/Plugin.cpp index be64ede3d..46ddda4d8 100644 --- a/mrv2/lib/mrvPy/Plugin.cpp +++ b/mrv2/lib/mrvPy/Plugin.cpp @@ -152,15 +152,44 @@ namespace mrv void run_python_method_cb(Fl_Menu_* m, void* d) { ViewerUI* ui = App::ui; - py::handle func = *(static_cast(d)); + const py::handle& obj = *(static_cast(d)); try { PyStdErrOutStreamRedirect pyRedirect; - func(); + if (py::isinstance(obj)) + { + // obj is a Python function + py::function func = py::reinterpret_borrow(obj); + func(); + } + else if (py::isinstance(obj)) + { + // obj is a Python tuple + py::tuple tup = py::reinterpret_borrow(obj); + if (tup.size() == 2 && py::isinstance(tup[0]) && + py::isinstance(tup[1])) + { + py::function func(tup[0]); + py::str str(tup[1]); + func(); + } + else + { + throw std::runtime_error( + _("Expected a tuple containing a Python function and a " + "string with menu options in it.")); + } + } + else + { + throw std::runtime_error( + _("Expected a handle to a Python function or to a tuple " + "containing a Python function and a " + "string with menu options in it.")); + } const std::string& out = pyRedirect.stdoutString(); const std::string& err = pyRedirect.stderrString(); - if (!out.empty() || !err.empty()) { if (!pythonPanel) diff --git a/mrv2/lib/mrvUI/mrvMenus.cpp b/mrv2/lib/mrvUI/mrvMenus.cpp index fdc848a65..baaef8906 100644 --- a/mrv2/lib/mrvUI/mrvMenus.cpp +++ b/mrv2/lib/mrvUI/mrvMenus.cpp @@ -2,6 +2,8 @@ // mrv2 // Copyright Contributors to the mrv2 Project. All rights reserved. +#include + #include "mrvCore/mrvI8N.h" #include "mrvCore/mrvHotkey.h" #include "mrvCore/mrvMath.h" @@ -1132,26 +1134,50 @@ namespace mrv } #ifdef MRV2_PYBIND11 - idx = -1; for (const auto& entry : pythonMenus) { - if (entry == "__divider__") + int mode = 0; + const py::handle& obj = pythonMenus.at(entry); + if (!py::isinstance(obj) && + !py::isinstance(obj)) { - if (idx < 0) + std::string msg = + string::Format(_("In '{0}' expected a function as a value " + "or a tuple containing a Python function " + "and a string with menu options in it.")) + .arg(entry); + LOG_ERROR(msg); + continue; + } + if (py::isinstance(obj)) + { + // obj is a Python tuple + py::tuple tup = py::reinterpret_borrow(obj); + if (tup.size() == 2 && py::isinstance(tup[0]) && + py::isinstance(tup[1])) { - LOG_ERROR( - _("__divider__ cannot be the first item in the menu.")); + py::str str(tup[1]); + const std::string modes = str.cast(); + if (modes.find("__divider__") != std::string::npos) + { + mode |= FL_MENU_DIVIDER; + } } else { - item = (Fl_Menu_Item*)&(menu->menu()[idx]); - item->flags |= FL_MENU_DIVIDER; + std::string msg = + string::Format( + _("In '{0}' expected a function a tuple " + "containing a Python function and a string " + "with menu options in it.")) + .arg(entry); + LOG_ERROR(msg); + continue; } - continue; } idx = menu->add( entry.c_str(), 0, (Fl_Callback*)run_python_method_cb, - (void*)&pythonMenus.at(entry)); + (void*)&pythonMenus.at(entry), mode); } #endif diff --git a/mrv2/python/plug-ins/mrv2_hello.py b/mrv2/python/plug-ins/mrv2_hello.py index ecf211953..b9da855b3 100644 --- a/mrv2/python/plug-ins/mrv2_hello.py +++ b/mrv2/python/plug-ins/mrv2_hello.py @@ -42,6 +42,8 @@ def run(self): Returns: dict: a dictionary of key for menu entries and values as methods. + The value can be a tuple to add options like a divider for a menu + entry. """ def menus(self): menus = { @@ -83,11 +85,13 @@ def play(self): Returns: dict: a dictionary of key for menu entries and values as methods. + The value can be a tuple to add options like a divider for a menu + entry. """ def menus(self): menus = { - "Python/Play/Forwards" : self.play, # call a method - "__divider__" : None, # add a divider + # Call a method and place a divider line after the menu + "Python/Play/Forwards" : (self.play, '__divider__'), "Python/Play/Backwards" : timeline.playBackwards # call a function } return menus From 5bcd483d1f9c9c539bf59bc7ab487d3605b079e7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Gonzalo=20Garramu=C3=B1o?= Date: Mon, 9 Oct 2023 15:21:23 -0300 Subject: [PATCH 2/9] Fixed redirecting of python's stdout/stderr. --- mrv2/lib/mrvApp/App.cpp | 6 +++ mrv2/lib/mrvPanels/mrvPythonPanel.cpp | 10 ----- mrv2/lib/mrvPy/CMakeLists.txt | 1 + mrv2/lib/mrvPy/Cmds.h | 1 + mrv2/lib/mrvPy/FLTKRedirectOutput.cpp | 57 +++++++++++++++++++++++++++ mrv2/lib/mrvPy/Plugin.cpp | 20 ---------- mrv2/lib/mrvPy/PyStdErrOutRedirect.h | 20 +++------- mrv2/src/main.cpp | 1 + 8 files changed, 71 insertions(+), 45 deletions(-) create mode 100644 mrv2/lib/mrvPy/FLTKRedirectOutput.cpp diff --git a/mrv2/lib/mrvApp/App.cpp b/mrv2/lib/mrvApp/App.cpp index 13b26a61b..b9583c7d6 100644 --- a/mrv2/lib/mrvApp/App.cpp +++ b/mrv2/lib/mrvApp/App.cpp @@ -63,6 +63,8 @@ namespace py = pybind11; #include "mrvApp/mrvOpenSeparateAudioDialog.h" #include "mrvApp/mrvSettingsObject.h" +#include "mrvPy/PyStdErrOutRedirect.h" + #include "mrvPreferencesUI.h" #include "mrViewer.h" @@ -163,6 +165,7 @@ namespace mrv ImageListener* imageListener = nullptr; #endif + std::unique_ptr pythonStdErrOutRedirect; std::shared_ptr playlistsModel; std::shared_ptr filesModel; std::shared_ptr< @@ -533,6 +536,9 @@ namespace mrv // plug-ins. py::module::import("mrv2"); + // Redirect stdout/stderr to my own class + p.pythonStdErrOutRedirect.reset(new PyStdErrOutStreamRedirect); + // Discover python plugins mrv2_discover_python_plugins(); #endif diff --git a/mrv2/lib/mrvPanels/mrvPythonPanel.cpp b/mrv2/lib/mrvPanels/mrvPythonPanel.cpp index f86ae26e2..a16ee4559 100644 --- a/mrv2/lib/mrvPanels/mrvPythonPanel.cpp +++ b/mrv2/lib/mrvPanels/mrvPythonPanel.cpp @@ -430,16 +430,6 @@ from mrv2 import playlist, timeline, usd, settings py::object result = py::eval(eval); py::print(result); } - const std::string& out = pyRedirect.stdoutString(); - if (!out.empty()) - { - outputDisplay->info(out.c_str()); - } - const std::string& err = pyRedirect.stderrString(); - if (!err.empty()) - { - outputDisplay->error(out.c_str()); - } } catch (const std::exception& e) { diff --git a/mrv2/lib/mrvPy/CMakeLists.txt b/mrv2/lib/mrvPy/CMakeLists.txt index 4da784715..63c2bf6b6 100644 --- a/mrv2/lib/mrvPy/CMakeLists.txt +++ b/mrv2/lib/mrvPy/CMakeLists.txt @@ -12,6 +12,7 @@ set(SOURCES Cmds.cpp Enums.cpp IO.cpp + FLTKRedirectOutput.cpp FileItem.cpp FilesModel.cpp FilePath.cpp diff --git a/mrv2/lib/mrvPy/Cmds.h b/mrv2/lib/mrvPy/Cmds.h index 2a774ecb9..0aeae81d2 100644 --- a/mrv2/lib/mrvPy/Cmds.h +++ b/mrv2/lib/mrvPy/Cmds.h @@ -23,4 +23,5 @@ extern void mrv2_annotations(py::module& m); extern void mrv2_usd(py::module& m); extern void mrv2_commands(py::module& m); extern void mrv2_python_plugins(py::module& m); +extern void mrv2_python_redirect(py::module& m); extern void mrv2_discover_python_plugins(); diff --git a/mrv2/lib/mrvPy/FLTKRedirectOutput.cpp b/mrv2/lib/mrvPy/FLTKRedirectOutput.cpp new file mode 100644 index 000000000..934fdb07c --- /dev/null +++ b/mrv2/lib/mrvPy/FLTKRedirectOutput.cpp @@ -0,0 +1,57 @@ +#include +#include + +#include "mrvWidgets/mrvPythonOutput.h" + +#include "mrvPanels/mrvPanelsCallbacks.h" + +#include "mrvApp/App.h" + +namespace py = pybind11; + +namespace mrv +{ + + class FLTKRedirectOutput + { + public: + void write(const std::string& message) + { + if (!pythonPanel) + python_panel_cb(nullptr, App::ui); + PythonOutput* output = PythonPanel::output(); + output->info(message.c_str()); + std::cout << message << std::endl; + } + + void flush() {} + }; + + class FLTKRedirectError + { + public: + void write(const std::string& message) + { + if (!pythonPanel) + python_panel_cb(nullptr, App::ui); + PythonOutput* output = PythonPanel::output(); + output->error(message.c_str()); + std::cerr << message << std::endl; + } + void flush() {} + }; + +} // namespace mrv + +void mrv2_python_redirect(pybind11::module& m) +{ + py::class_(m, "FLTKRedirectOutput") + .def(py::init<>()) + .def("write", &mrv::FLTKRedirectOutput::write) + .def("flush", &mrv::FLTKRedirectOutput::flush); + + py::class_(m, "FLTKRedirectError") + .def(py::init<>()) + .def("write", &mrv::FLTKRedirectError::write) + .def("flush", &mrv::FLTKRedirectError::flush); +} diff --git a/mrv2/lib/mrvPy/Plugin.cpp b/mrv2/lib/mrvPy/Plugin.cpp index 46ddda4d8..505412128 100644 --- a/mrv2/lib/mrvPy/Plugin.cpp +++ b/mrv2/lib/mrvPy/Plugin.cpp @@ -187,26 +187,6 @@ namespace mrv "containing a Python function and a " "string with menu options in it.")); } - - const std::string& out = pyRedirect.stdoutString(); - const std::string& err = pyRedirect.stderrString(); - if (!out.empty() || !err.empty()) - { - if (!pythonPanel) - python_panel_cb(nullptr, ui); - PythonOutput* output = PythonPanel::output(); - if (output) - { - if (!out.empty()) - { - output->info(out.c_str()); - } - if (!err.empty()) - { - output->error(out.c_str()); - } - } - } } catch (const std::exception& e) { diff --git a/mrv2/lib/mrvPy/PyStdErrOutRedirect.h b/mrv2/lib/mrvPy/PyStdErrOutRedirect.h index 778f2c2fe..5708ee9df 100644 --- a/mrv2/lib/mrvPy/PyStdErrOutRedirect.h +++ b/mrv2/lib/mrvPy/PyStdErrOutRedirect.h @@ -10,7 +10,7 @@ namespace py = pybind11; namespace mrv { - //! Class used to redirect stdout and stderr to two python strings + //! Class used to redirect stdout and stderr to FLTK widget class PyStdErrOutStreamRedirect { py::object _stdout; @@ -24,24 +24,14 @@ namespace mrv auto sysm = py::module::import("sys"); _stdout = sysm.attr("stdout"); _stderr = sysm.attr("stderr"); - auto stringio = py::module::import("io").attr("StringIO"); - _stdout_buffer = - stringio(); // Other filelike object can be used here as well, + auto stdout = py::module::import("mrv2").attr("FLTKRedirectOutput"); + auto stderr = py::module::import("mrv2").attr("FLTKRedirectError"); + _stdout_buffer = stdout(); // such as objects created by pybind11 - _stderr_buffer = stringio(); + _stderr_buffer = stderr(); sysm.attr("stdout") = _stdout_buffer; sysm.attr("stderr") = _stderr_buffer; } - std::string stdoutString() - { - _stdout_buffer.attr("seek")(0); - return py::str(_stdout_buffer.attr("read")()); - } - std::string stderrString() - { - _stderr_buffer.attr("seek")(0); - return py::str(_stderr_buffer.attr("read")()); - } ~PyStdErrOutStreamRedirect() { auto sysm = py::module::import("sys"); diff --git a/mrv2/src/main.cpp b/mrv2/src/main.cpp index 6f8a099c8..ef06fff5b 100644 --- a/mrv2/src/main.cpp +++ b/mrv2/src/main.cpp @@ -46,6 +46,7 @@ PYBIND11_EMBEDDED_MODULE(mrv2, m) # endif mrv2_commands(m); mrv2_python_plugins(m); + mrv2_python_redirect(m); } #endif From 6be8aeb003ee21082f3bd6acc5e835b4b7362e1f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Gonzalo=20Garramu=C3=B1o?= Date: Mon, 9 Oct 2023 15:40:48 -0300 Subject: [PATCH 3/9] Added saveOTIO to Python. Updated docs. --- mrv2/docs/en/genindex.html | 2 + mrv2/docs/en/objects.inv | Bin 2484 -> 2492 bytes mrv2/docs/en/python_api/cmd.html | 7 + mrv2/docs/en/python_api/index.html | 1 + mrv2/docs/en/searchindex.js | 2 +- mrv2/docs/es/genindex.html | 6 +- mrv2/docs/es/objects.inv | Bin 2472 -> 2478 bytes mrv2/docs/es/python_api/cmd.html | 7 + mrv2/docs/es/python_api/index.html | 1 + mrv2/docs/es/searchindex.js | 2 +- mrv2/lib/mrvPy/Cmds.cpp | 15 + mrv2/po/es.po | 32 +- mrv2/po/messages.pot | 456 +++++++++++++++-------------- 13 files changed, 312 insertions(+), 219 deletions(-) diff --git a/mrv2/docs/en/genindex.html b/mrv2/docs/en/genindex.html index 553b38080..7708ecae1 100644 --- a/mrv2/docs/en/genindex.html +++ b/mrv2/docs/en/genindex.html @@ -662,6 +662,8 @@

S

  • SaveOptions (class in mrv2.io) +
  • +
  • saveOTIO() (in module mrv2.cmd)
  • savePDF() (in module mrv2.cmd)
  • diff --git a/mrv2/docs/en/objects.inv b/mrv2/docs/en/objects.inv index 6e871991d06b79cc73f2e96d9e79ae5cf8bd7642..8b6b62f6c2d0a1c0533b1a80e3984c00dbaecd80 100644 GIT binary patch delta 2320 zcmV+r3Geo_6TB0Uivp}uk&P*TF7YB*vF%Suz5BVMc~e62gZwQvlq^w=zprFkx)D|R zok_j=XL2>uH*awX50GP|(5yt9CqLTBV_wD4OWBaYY6K7i8J`!FlzJH|L8{SE2|*)+M+!uSj#Rin;It|+VIy0n zkqr{$)aT)FdtT?&Bk2kX${?gPiLNo>L8!E{sv!?!DG?~N;J!nXGXfZYwJ9*cd;?)V z#Y6y;526UeD}X?fZh@7k4uhHc8#&gVp%&Dzh!84toO0K?ZIH#jd>dwvb1m_Nt~eeR3NRX|{Yv<4Ew1h#9Je80QBOHntM!-%T?%}>#Ir7S z?joLAiQj*D4u>DwMZ72WBqtR>-+c%#_@&tHO)C3bb<&80cBhjvaB1D9o@dx3@{h?PZjPW!ZL}H{VvUS_wj1?+jdm)o5%-CgY z;8Fya%$Ld{^PCx}gkzQ=0_kyp~T(!{CDAOs$pR_lqn3 zaY031V{%EkW|iYDR&$`=|39*qti0IOmuzp<-{S0|q4eBZ==A{U8Qd){1+W;FN5QH5 zO>nUba>7^$$LWOjLqj-4qghatA?DV=$8l=r1!(wCa!2ZaM!bwgy!SZn^fg9+HX_yrDG_SKLqCD? zYC?mhZxLmtVLjW^V4mh>atB7mT`!{FMTJSUYiHg4_}AiiM<-Ev?r_PNJ>e%(5soD)>`<*;n zQS_*sbit?^#5{;6wZA$Y!PC^?+aFh(o>0kO(V)t@jUv?GjU6~JP^c)X8rB212I_pn zbxifDcDLPnBvKtCvWAgPdC>>3ekxpV+k4uMO%5!7C*fTASOAy zg^<^GiUc0SDszL#_MO*5dlbnQPp8=F!RuT+ty&XYO?JF*VAHQs-MkFNIDGoF!vu-V zOCMj3z*~&La%!{1wBZpF9K<}3yAI^~L;C@&S&M|gg09ykc-pMqkaTTp8&tY<`?%7l zqC8(_?V{aY_*m#zVLHH0(bH!@PSQ}y0XcwwZ`S4=gWYq@`U<-arWrO}^b(d)W~^XG z+y2vatnMs{3P{5}6=b9eOxDhmd0o1__I+vvRr?u--ScCaW1a!Z=NtJaPU0Fim_%r( z10Inzkv~4iSEf}7tdBaXSz_WmQPHK_8?{eWgZUHu*#OC4uD)M$#P?Y444ss;+vqia zqv}o6&QI^Y{R%C>6op2Xz8HK@7GOb#M_Qo{>#~W7@!5Q&9r~LGcYvP4$DbsIX>=bY zhS6$FxR&klidfF$WNs;oR2h5#5-I>+V`yeLCY1t@jfmhyOzGXJ`*1qU ze+_q@ZpuwgW*JqIW;CcyfSWGR6&k@Qo|9XS64P5U8 z+|Xw7OxIb01GhxTn0HwB>d0REO;&^$(^tRYeDZ|RIZ9lhHE4f@`HCI3zdcm#u%6ub z^J^ex|B8$J=Mt@;Os;-Ry1P1GqPMAJPCYF$AFn_@1{w}*nbVAae~|6)+LYXX-n{Cx zelgd{lewPlO_G{Qe_+jTP|5&@M9@T4{(pb{nq=hetJy&JM1c$4rU&I( zzuFnPa^kz5WQdq=5dI4j(5f%Q0w9BHPjZ+q=YMv*3r(aF{l7$9!=&f~kw7 zZK<^N;Ot;~*}?TY&xy`-Y_8ddcEJ5ELt?U7a20$Gy88~yMCdWwZ&=v*(NaC>Guw2` zy4I;PSoS9EO5d$=#dlmlbwaGo)wZR%nLO!xBhlUM{qw(ES~{^cOaGpKSr&EQ{nxozYYx=`$besL6$0qU)j)mE{Or9`*~Cr{Ozu_e$O!J{TMj%Qj=)+%x4p zne>Hx5NCaNomWTZ7kQcd(%^ica%yB4y25WbIT}9p_=bwFu;X^^HqmJO zYA$96)w7d>UdLTu%OK-_QnQanwy|hW$(|Y<71K#Z;*-vWNS@61efvN~y*t@rc(n_4 zsogw4Fd2(_N-=W`W_F$9@va-~26?(I0J}oB!q@Q2fB%yMO}b_OP=!GOOl^v|Oxb5> q4cXrq=-B#-|I?uudb`u>DpB93S`XuY~&ho_=Jpkp6Cb6AQP1B0@#ml0tm;H1hAi)YGq2p6I`G? z$7JnGVm@DSS%w1q$&XbneEjo>gmeljyN=?#@*h$uDl5vx68>yZ8JKdKH%vb+3r4FY z7l=tgk}n1Jswrn{E-}e}%7)`@u(}p4n5@Y>N`ga1Ngk)6bHrs+_o{1los8zeKEYi2 zb&EL8!E{sv!?!DG?|%;l4wYGXfZYxhXKgd;?)V z#Y6y;4N-*Q6+j?Kx4=qNhrvw!jT~#wPzx$pLclPb1Jue?EAp>?R&Fn^E}`rH?jtAM}+X$>TV2`tx|LBYFK zqz}j_6(Jl)TL@tmA8tdiK(`FgxpxtA5I0dxRS873R<2gvF%4DQRV^8iBy<&L15kxlQ2obe>V2Fzd2_R@yLQGCD zkyFN+v=?$eDW(e%v2=)rB#hW`mj-X^Je}wsOV_m9V{#Nfl=7GB$Bqh?^4E zL0Zls$gAkADrrG~GgRIKSx=rh_^NIw!{5|mzns^ywKNPaD9+TH2Y$b};vW}OalsXg@TBQ#6_dMHymV4SXD@W)3pLhmt!|H{xY1;^n7*@r*wZO$%K12bSJ>80b)z z0}B@EV82`h`b}d|Grd+~jj9U82w?K7oc6{k+|$<>0osUI8>B?25fA+Y%Bu(smcB)# znTGXjPlI`ym&qL%RquKceWny9(XO3!_v4?77)xr z)gb0UJfZEW*~v6@c#7jH(-SKBD;i{3mr;Zoys-lZ1_~8LRl|DV)G zuQsadK-OxcLtgYns-Ftisd-P^vB`nuB)kiUahSn>IL2TcVeq>!55J4?@Vg?);PhKC z{5~wV?~C*`BFzX_y^nF#dw*ATH;Sz-R^Q#UH(4Dt?|K{i_WFQ71To3sErh(jQzY;p zR+$?_wr5@s?Uf>1eLBTX4_@cuY1NwGD&li>%w>(;C8S<)4L3l<^z~pLwa0d#4$?!i zWVdR6&mgR*vl0-y4kIV;S)2eT?^?Lo0y8dNfK4Bzx_Ma@fwvfg z<D)*^b(d)W~^XG+y2vaJ?<=t z3P{5}6=Y2nn5>;Q?7DD!?)%URs`hgXyXVI;$2^@!5Q&9s1h^cLhC#k3TI8)95}f45QVUa4pN@ z6|tPh$=p&FsWSMGBUAvs#?a!9MB?$~sU}`gMJfe8HzI-;F{yXA=fmkR|25osPhAGt zyLuJyfuYxlj-+Qt(4+d$f=w^3&mi@G1@sc$u$WpBpCgoG{`CfB8@S#HxS`GDovyP4 z2X2XwF=tr!>dIdGZB>LA(@($QeDa3TIZ9lhHE4f@`HCHuzrCv3VLiF==hr~Y{uLMb z&m~$xnOyytbZ>RML~m2cn0i`dK0<+f3^W|rGN&2;{vg`nvq`yqdDUtCVxE(KC-Xep zn*)4Rk(v*3rd;V^9Ej``wl1XCAD+f-@m!P&v~ zvV-e)o)aDE*j%#@?ST7ThQvg(;HvUD=x`xnNgw%GM@=s55?vRas3=F^@~~g9w1)4@+bj8Y*f2OCmTktod1umlGT{r^5NCaN z9aq=PFY+<@rNQ|?<>l07vzGNyx!#3vmKkvy62`}To~Iy>27c(n_4q1`+{Fj*J% zlw#%>%prefsPath()
  • rootPath()
  • save()
  • +
  • saveOTIO()
  • savePDF()
  • saveSession()
  • saveSessionAs()
  • @@ -224,6 +225,12 @@

    Save a movie or sequence from the front layer.

    +
    +
    +mrv2.cmd.saveOTIO(file: str) None
    +

    Save an .otio file from the current selected image.

    +
    +
    mrv2.cmd.savePDF(file: str) bool
    diff --git a/mrv2/docs/en/python_api/index.html b/mrv2/docs/en/python_api/index.html index 07450332c..75e362893 100644 --- a/mrv2/docs/en/python_api/index.html +++ b/mrv2/docs/en/python_api/index.html @@ -115,6 +115,7 @@
  • prefsPath()
  • rootPath()
  • save()
  • +
  • saveOTIO()
  • savePDF()
  • saveSession()
  • saveSessionAs()
  • diff --git a/mrv2/docs/en/searchindex.js b/mrv2/docs/en/searchindex.js index fa1f04041..89dd23198 100644 --- a/mrv2/docs/en/searchindex.js +++ b/mrv2/docs/en/searchindex.js @@ -1 +1 @@ -Search.setIndex({"docnames": ["index", "python_api/annotations", "python_api/cmd", "python_api/image", "python_api/index", "python_api/io", "python_api/math", "python_api/media", "python_api/mrv2", "python_api/playlist", "python_api/plug-ins", "python_api/plug-ins-system", "python_api/pyFLTK", "python_api/settings", "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/io.rst", "python_api/math.rst", "python_api/media.rst", "python_api/mrv2.rst", "python_api/playlist.rst", "python_api/plug-ins.rst", "python_api/plug-ins-system.rst", "python_api/pyFLTK.rst", "python_api/settings.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": ["Welcome to mrv2\u2019s documentation!", "annotations module", "cmd module", "image module", "Python API", "io Module", "math module", "media module", "mrv2 module", "playlist module", "plugin module", "Plug-in System", "pyFLTK", "settings module", "timeline module", "usd module", "Getting Started", "Hotkeys", "mrv2 User Guide", "The mrv2 Interface", "Notes and Annotations", "Introduction", "Panels", "V\u00eddeo Playback", "Preferences", "Settings", "Video Tutorials"], "terms": {"user": [0, 16, 19, 20, 21, 23], "guid": [0, 21], "introduct": [0, 18], "get": [0, 2, 8, 15, 18, 19, 20, 23], "start": [0, 8, 18, 20, 21, 22, 23], "The": [0, 8, 16, 17, 18, 20, 21, 22, 23, 25], "interfac": [0, 18, 21], "panel": [0, 16, 17, 18, 20, 21, 23, 25], "note": [0, 1, 2, 18, 21, 22, 24], "annot": [0, 2, 4, 5, 17, 18, 21, 23], "v\u00eddeo": [0, 18], "playback": [0, 2, 4, 8, 14, 16, 17, 18, 21], "set": [0, 2, 4, 7, 14, 15, 16, 17, 18, 19, 20, 21, 23, 24], "hotkei": [0, 18, 19, 20, 21, 22, 24, 25], "prefer": [0, 2, 16, 17, 18, 19, 20, 22], "video": [0, 3, 8, 18, 22, 23], "tutori": [0, 18], "python": [0, 10, 11, 12, 17, 18, 21], "api": [0, 21, 22], "modul": [0, 4, 12], "cmd": [0, 4], "imag": [0, 2, 4, 16, 17, 19, 20, 21, 22, 23], "io": [0, 2, 4, 12], "math": [0, 3, 4, 7], "media": [0, 2, 4, 8, 17, 18, 19, 20, 21, 23], "playlist": [0, 4, 17, 18, 21, 23], "plugin": [0, 4, 11], "plug": [0, 4, 10], "system": [0, 4, 14, 16, 17, 21, 24], "timelin": [0, 2, 4, 8, 17, 18, 20, 21, 22, 23], "usd": [0, 4, 17, 18, 21], "index": [0, 7, 9], "search": [0, 16, 17, 24], "page": 0, "contain": [1, 3, 6, 7, 8, 9, 10, 13, 14, 15, 19], "all": [1, 2, 3, 6, 7, 9, 10, 13, 14, 15, 16, 17, 19, 20, 21, 22, 24], "function": [1, 8, 9, 13, 14, 17], "class": [1, 3, 5, 6, 7, 8, 9, 10, 11, 14, 15], "relat": [1, 3, 7, 9, 10, 14, 15], "annotationss": 1, "mrv2": [1, 2, 3, 4, 5, 6, 7, 9, 10, 11, 12, 13, 14, 15, 17, 20, 22, 23, 24, 25, 26], "add": [1, 3, 4, 9, 11, 20, 21, 22], "arg": [1, 8, 9, 14], "kwarg": [1, 8, 9, 14], "overload": [1, 8, 9, 14], "time": [1, 4, 8, 14, 16, 19, 22, 24], "rationaltim": [1, 4, 8, 14], "str": [1, 2, 3, 8, 9], "none": [1, 2, 3, 5, 7, 9, 13, 14, 19, 24], "current": [1, 2, 7, 8, 9, 14, 16, 17, 18, 19, 20, 22], "clip": [1, 3, 8, 9, 16, 17, 19, 21, 22, 23], "certain": [1, 19], "frame": [1, 4, 8, 14, 16, 17, 18, 20, 21, 22], "int": [1, 2, 3, 5, 6, 7, 8, 9, 13, 14, 15], "second": [1, 2, 4, 8, 13, 14, 19, 20, 22, 23, 24, 25], "float": [1, 2, 3, 5, 6, 7, 8, 13, 14, 15, 17, 19, 24], "command": [2, 11, 17, 18], "us": [2, 8, 10, 11, 16, 19, 20, 21, 22, 23, 25, 26], "run": [2, 10, 16, 22], "main": [2, 11, 16, 17, 19, 24], "displai": [2, 3, 17, 20, 21, 22, 23], "compar": [2, 4, 7, 17, 18, 21], "lut": [2, 3, 22, 24], "option": [2, 3, 5, 7, 10, 15, 16, 19, 22], "close": [2, 4, 7, 16, 17, 21, 22], "item": [2, 7, 8, 9, 16, 20, 21, 22], "1": [2, 3, 8, 12, 19], "file": [2, 7, 8, 9, 11, 16, 17, 18, 19, 20, 21], "closeal": [2, 4, 7], "itema": 2, "itemb": 2, "mode": [2, 7, 14, 15, 16, 17, 18, 19, 20, 21], "comparemod": [2, 4, 7], "wipe": [2, 7, 17, 21, 22], "2": [2, 6, 8], "two": [2, 19, 22], "compareopt": [2, 4, 7], "return": [2, 7, 8, 10, 11, 14, 17], "displayopt": [2, 3, 4], "environmentmapopt": [2, 3, 4], "environ": [2, 3, 11, 17, 18, 19, 24], "map": [2, 3, 17, 18], "getlay": [2, 4], "list": [2, 4, 7, 9, 11, 17, 19, 22, 24, 26], "layer": [2, 4, 7, 8, 19, 22], "gui": 2, "imageopt": [2, 3, 4], "ismut": [2, 4], "bool": [2, 3, 5, 7, 8, 10, 15], "true": [2, 8, 10], "audio": [2, 8, 14, 19, 21, 22], "i": [2, 8, 10, 16, 17, 18, 19, 20, 22, 23, 24, 25], "mute": [2, 8, 19], "lutopt": [2, 3, 4], "oepnsess": [], "open": [2, 4, 16, 17, 21, 22, 24], "session": [2, 17, 21, 22], "filenam": [2, 3, 9, 14, 22], "audiofilenam": 2, "save": [2, 4, 5, 9, 16, 17, 19, 20, 21, 22], "saveopt": [2, 4, 5], "fals": [2, 10], "ffmpegprofil": [2, 5], "exrcompress": [2, 5], "zip": [2, 5], "zipcompressionlevel": [2, 5], "4": [2, 6], "dwacompressionlevel": [2, 5], "45": 2, "movi": [2, 16, 17, 19, 20, 21, 24], "sequenc": [2, 16, 17, 19, 24], "from": [2, 8, 10, 11, 12, 16, 19, 20, 21, 22, 23, 24], "front": 2, "savepdf": [2, 4], "pdf": [2, 17, 21, 22], "document": [2, 16, 17, 21, 24, 26], "savesess": [2, 4], "savesessiona": [2, 4], "setcompareopt": [2, 4], "setdisplayopt": [2, 4], "setenvironmentmapopt": [2, 4], "setimageopt": [2, 4], "setlutopt": [2, 4], "setmut": [2, 4], "setstereo3dopt": [2, 4], "stereo3dopt": [2, 3, 4], "stereo": [2, 3, 7, 17, 18], "3d": [2, 3, 17, 18], "setvolum": [2, 4], "volum": [2, 4, 8, 19], "updat": [2, 4], "call": [2, 24], "fl": 2, "check": 2, "number": [2, 8, 21, 22, 23, 24], "elaps": 2, "enum": [3, 7, 15], "control": [3, 14, 17, 20, 21, 22, 24, 25], "alphablend": [3, 4], "member": [3, 5, 7, 14, 15], "straight": [3, 19], "premultipli": [3, 19], "channel": [3, 4, 17, 21, 22], "color": [3, 4, 17, 18, 19, 21, 23], "red": [3, 16, 17, 19, 20, 24], "green": [3, 17, 19, 20], "blue": [3, 16, 17, 19], "alpha": [3, 17, 22], "environmentmaptyp": [3, 4], "spheric": [3, 22], "cubic": [3, 22], "imagefilt": [3, 4], "nearest": [3, 19], "linear": [3, 19], "inputvideolevel": [3, 4], "fromfil": 3, "fullrang": 3, "legalrang": 3, "lutord": [3, 4], "postcolorconfig": 3, "precolorconfig": 3, "videolevel": [3, 4], "yuvcoeffici": [3, 4], "rec709": 3, "bt2020": 3, "stereo3dinput": [3, 4], "stereo3doutput": [3, 4], "anaglyph": [3, 22], "scanlin": [3, 22], "column": 3, "checkerboard": [3, 22], "opengl": [3, 21], "mirror": [3, 4], "x": [3, 6, 7, 17], "flip": [3, 17], "y": [3, 6, 7, 17, 19, 24], "valu": [3, 7, 8, 10, 19, 22], "enabl": [3, 15, 21], "level": [3, 4, 5, 22], "vector3f": [3, 4, 6], "bright": 3, "chang": [3, 17, 19, 20, 21, 22, 24], "contrast": [3, 22], "satur": [3, 21, 22], "tint": [3, 21, 22], "between": [3, 19, 21, 22, 23, 24], "0": [3, 8, 16, 18, 19, 22, 25], "invert": [3, 22], "inlow": 3, "In": [3, 8, 11, 17, 19, 22, 23, 24, 25, 26], "low": 3, "inhigh": 3, "high": [3, 21, 23], "gamma": [3, 17, 19, 21, 22], "outlow": 3, "out": [3, 8, 14, 17, 19, 20, 21, 22, 23, 24], "outhigh": 3, "filter": [3, 17, 22, 24], "minifi": [3, 17], "magnifi": [3, 17], "softclip": [3, 4], "soft": [3, 20, 22], "both": [3, 20], "order": [3, 16, 22], "transform": [3, 24], "blend": 3, "algorithm": 3, "environmentmap": 3, "type": [3, 16, 20, 22, 23], "horizontalapertur": 3, "horizont": [3, 7, 17, 19, 21, 22, 23], "apertur": 3, "verticalapertur": 3, "vertic": [3, 7, 17, 19, 21, 22], "focallength": 3, "focal": 3, "length": 3, "rotatex": 3, "rotat": [3, 7, 22], "rotatei": 3, "subdivisionx": 3, "subdivis": 3, "subdivisioni": 3, "spin": 3, "stereo3d": 3, "input": [3, 17, 19, 22], "stereoinput": 3, "output": [3, 22], "stereooutput": 3, "eyesepar": 3, "separ": [3, 21], "left": [3, 16, 17, 19, 20, 22, 23], "right": [3, 16, 17, 18, 19, 20, 23, 24], "ey": 3, "swapey": 3, "swap": 3, "profil": [4, 5], "compress": [4, 5, 23], "vector2i": [4, 6], "vector2f": [4, 6, 7], "vector4f": [4, 6], "afil": [4, 7], "aindex": [4, 7], "bindex": [4, 7], "bfile": [4, 7], "activefil": [4, 7], "clearb": [4, 7], "firstvers": [4, 7], "lastvers": [4, 7], "nextvers": [4, 7], "previousvers": [4, 7], "seta": [4, 7], "setb": [4, 7], "setlay": [4, 7], "setstereo": [4, 7], "toggleb": [4, 7], "path": [2, 4, 8, 9, 11, 16, 18, 22], "timerang": [4, 8, 14], "filemedia": [4, 7, 8, 9], "add_clip": [4, 9], "select": [4, 9, 14, 16, 17, 19, 20, 21, 22, 23, 24], "ins": 4, "memori": [4, 13, 22, 25], "readahead": [4, 13], "readbehind": [4, 13], "setmemori": [4, 13], "setreadahead": [4, 13], "setreadbehind": [4, 13], "filesequenceaudio": [4, 14], "loop": [4, 8, 14, 16, 17, 18, 19, 21], "timermod": [4, 14], "inoutrang": [4, 8, 14], "playbackward": [4, 14], "playforward": [4, 14], "seek": [4, 14, 21], "setin": [4, 14], "setinoutrang": [4, 14], "setloop": [4, 14], "setout": [4, 14], "stop": [4, 14, 17, 19, 21, 23], "renderopt": [4, 15], "setrenderopt": [4, 15], "drawmod": [4, 15], "h264": 5, "prore": 5, "prores_proxi": 5, "prores_lt": 5, "prores_hq": 5, "prores_4444": 5, "prores_xq": 5, "rle": 5, "piz": 5, "pxr24": 5, "b44": 5, "b44a": 5, "dwaa": 5, "dwab": 5, "ffmpeg": 5, "openexr": [5, 19], "": [5, 8, 16, 17, 19, 20, 21, 22, 23, 24], "dwa": [5, 23], "vector": [6, 20], "integ": [6, 8], "3": [6, 12], "z": [6, 17], "w": [6, 17], "A": [7, 10, 19, 20, 21, 22, 24], "b": [7, 17, 19, 21, 22], "activ": [7, 10, 21, 23], "clear": [7, 17], "first": [7, 8, 16, 17, 19, 23, 24], "version": [7, 16, 17, 18, 26], "last": [7, 8, 17, 19, 23, 24], "next": [7, 17, 19, 20, 22, 23, 24], "previou": [7, 17, 19, 20, 22, 23, 24], "new": [7, 8, 10, 11, 12, 19, 20, 21, 22, 24], "toggl": [7, 17, 19, 23, 24], "overlai": [7, 17, 21, 22, 24], "differ": [7, 8, 16, 17, 19, 21, 22, 24], "tile": [7, 17, 21, 22], "comparison": [7, 21, 22], "over": [7, 19, 20], "wipecent": 7, "center": [7, 17, 19, 24], "wiperot": 7, "hold": [8, 19, 24], "self": [8, 10, 11], "idx": 8, "directoru": 8, "getbasenam": 8, "getdirectori": 8, "getextens": 8, "getnumb": 8, "getpad": 8, "isabsolut": 8, "isempti": 8, "repres": 8, "measur": 8, "rt": 8, "rate": [8, 16, 18, 19, 21], "It": [8, 19, 22, 24], "can": [8, 12, 16, 17, 19, 20, 21, 22, 23, 24, 25], "rescal": [8, 24], "anoth": [8, 24], "almost_equ": 8, "other": [8, 12, 16, 21, 22, 23, 24], "delta": 8, "static": 8, "duration_from_start_end_tim": 8, "start_tim": 8, "end_time_exclus": 8, "comput": [8, 21, 23], "durat": 8, "sampl": 8, "exclud": 8, "thi": [8, 11, 16, 17, 19, 20, 21, 22, 23, 24, 26], "same": [8, 16, 22], "distanc": 8, "For": [8, 12, 16, 19, 21, 22, 23], "exampl": [8, 10, 21, 22, 24], "10": [8, 16], "15": 8, "5": 8, "result": [8, 23], "duration_from_start_end_time_inclus": 8, "end_time_inclus": 8, "includ": [8, 21], "6": [8, 19], "from_fram": 8, "turn": 8, "object": 8, "from_second": 8, "from_time_str": 8, "time_str": 8, "convert": 8, "microsecond": 8, "string": 8, "hh": 8, "mm": 8, "ss": 8, "where": [8, 11, 22, 24], "an": [8, 16, 19, 20, 21, 22, 24], "decim": [8, 24], "from_timecod": 8, "timecod": [8, 19, 24], "is_invalid_tim": 8, "invalid": 8, "consid": 8, "ar": [8, 19, 20, 21, 22, 23, 24], "nan": 8, "less": [8, 17], "than": [8, 11, 20, 23, 24], "equal": 8, "zero": 8, "is_valid_timecode_r": 8, "valid": 8, "nearest_valid_timecode_r": 8, "ha": [8, 19, 21, 22, 23, 24], "least": 8, "given": [8, 16, 20], "rescaled_to": 8, "new_rat": 8, "to_fram": 8, "base": [8, 20, 22, 25], "to_second": 8, "to_time_str": 8, "to_timecod": 8, "drop_fram": 8, "value_rescaled_to": 8, "rang": [8, 14, 19, 22], "encod": [8, 16], "mean": [8, 22, 23], "portion": [8, 22], "befor": [8, 22, 23], "epsilon_": 8, "6041666666666666e": 8, "06": 8, "end": [8, 17, 23], "strictli": 8, "preced": [8, 19], "convers": 8, "would": [8, 16, 24], "meet": 8, "begin": 8, "clamp": 8, "accord": 8, "bound": 8, "argument": 8, "anteced": 8, "duration_extended_bi": 8, "outsid": [8, 20], "If": [8, 10, 16, 19, 20, 22, 24], "becaus": 8, "data": [8, 17, 22, 23], "14": 8, "24": 8, "9": 8, "word": [8, 16], "even": [8, 11, 21, 22, 24], "fraction": 8, "extended_bi": 8, "construct": 8, "one": [8, 17, 19, 21, 22, 23, 24], "extend": [8, 20], "finish": 8, "intersect": 8, "OR": 8, "overlap": 8, "range_from_start_end_tim": 8, "creat": [8, 11, 12, 16, 20, 21, 22, 26], "exclus": 8, "end_tim": 8, "have": [8, 11, 16, 19, 20, 21, 22, 24], "range_from_start_end_time_inclus": 8, "inclus": 8, "audiopath": 8, "ani": [8, 12, 16, 19, 20, 21, 22, 24], "state": [8, 21], "currenttim": 8, "videolay": 8, "audiooffset": 8, "offset": 8, "edl": [9, 22], "otio": [9, 16, 21, 24], "rel": 9, "fileitem": 9, "filemodelitem": 9, "playlistindex": 9, "must": [11, 22], "overriden": 10, "like": [10, 12, 16, 19, 23, 24], "import": [10, 11, 12, 21, 22, 24], "demoplugin": 10, "defin": [10, 11, 21], "your": [10, 16, 19, 20, 21, 22, 23, 24, 25], "own": [10, 20, 21], "variabl": [10, 11, 19, 24], "here": [10, 21, 24], "def": [10, 11], "__init__": [10, 11], "super": [10, 11], "pass": 11, "method": [10, 21], "callback": 10, "print": [10, 11, 19, 22, 24], "hello": [10, 11], "whether": [10, 19, 22, 24], "dictionari": 10, "menu": [10, 11, 17, 18, 20, 21], "entri": [10, 11, 21], "kei": [10, 17, 19, 20, 21, 22, 24], "plai": [14, 16, 17, 19, 21, 23, 24], "forward": [14, 17, 19, 23], "default": [10, 16, 17, 18, 19, 22, 25], "dict": 10, "nem": 10, "support": [11, 12, 16, 19, 21, 24], "allow": [11, 16, 17, 19, 20, 21, 22, 24, 25], "you": [11, 12, 16, 17, 19, 20, 21, 22, 23, 24, 25], "actual": [11, 20], "go": [11, 12, 16, 17, 23, 24], "farther": 11, "what": [11, 18, 19, 24], "consol": 11, "To": [11, 16, 19, 20], "mrv2_python_plugin": 11, "colon": 11, "linux": [11, 16, 24], "maco": [11, 16], "semi": 11, "window": [11, 12, 16, 17, 18, 22], "resid": 11, "py": 11, "basic": 11, "structur": 11, "helloplugin": 11, "retriev": 13, "cach": [13, 15, 18, 22, 25], "gigabyt": [13, 22, 25], "read": [13, 22, 23, 25], "ahead": [13, 22, 25], "behind": [13, 22, 25], "arg0": [13, 14], "basenam": 14, "directori": [14, 16, 17, 24], "properti": 14, "name": [14, 22], "onc": [12, 14, 16, 17, 19, 20, 23], "pingpong": 14, "revers": [14, 21], "backward": [14, 17, 19, 23], "univers": [15, 19, 21, 24], "scene": [15, 21, 24], "descript": [15, 21, 24], "render": [15, 18, 20], "point": [15, 17, 19, 22, 23], "wirefram": 15, "wireframeonsurfac": 15, "shadedflat": 15, "shadedsmooth": 15, "geomonli": 15, "geomflat": 15, "geomsmooth": 15, "renderwidth": 15, "width": 15, "complex": [15, 24], "model": 15, "draw": [15, 17, 18, 19, 21, 22, 23, 24], "enablelight": 15, "light": [15, 20, 24], "stagecachecount": 15, "stage": 15, "count": 15, "diskcachebytecount": 15, "disk": [15, 21, 23], "byte": 15, "pleas": 16, "refer": [16, 26], "github": 16, "http": [12, 16, 26], "com": [16, 26], "ggarra13": 16, "On": [16, 17, 20, 21], "dmg": 16, "icon": [16, 19], "applic": [16, 21], "alreadi": 16, "we": [16, 24], "recommend": [16, 24], "overwrit": 16, "notar": 16, "so": [16, 19, 20, 22, 24], "when": [16, 19, 20, 22, 23, 24], "abl": [16, 23], "warn": 16, "secur": 16, "wa": [16, 24], "download": [16, 24], "internet": 16, "avoid": 16, "need": [16, 19, 20, 21, 22, 23, 24], "finder": 16, "ctrl": [16, 17, 20], "mous": [16, 18, 24], "click": [16, 19, 20, 22], "That": [16, 24], "bring": [16, 22, 24], "up": [16, 17, 19, 21, 22, 23, 24], "button": [12, 16, 18, 19, 23, 24], "onli": [16, 17, 20, 22], "do": [16, 20, 21, 24], "chrome": 16, "also": [16, 19, 20, 22, 23], "protect": 16, "mai": [16, 22, 24, 26], "usual": [16, 19, 24], "archiv": 16, "make": [16, 19, 20, 22, 24], "sure": [16, 22], "arrow": [16, 17, 19, 20, 21, 23], "anywai": 16, "cannot": 16, "ex": 16, "directli": [16, 19, 20, 21], "explor": 16, "should": [16, 20, 22, 23], "Then": 16, "popup": [16, 19, 22, 24], "box": [16, 20, 21], "tell": 16, "smartscreen": 16, "prevent": 16, "unknown": 16, "aplic": 16, "place": [16, 20, 22], "pc": 16, "risk": 16, "more": [16, 17, 19, 21, 22], "inform": [12, 16, 18, 19], "text": [16, 17, 20, 21, 22, 24], "sai": [16, 19], "similar": [16, 22], "appear": [16, 19, 22], "follow": [16, 19, 22], "standard": 16, "instruct": 16, "rpm": 16, "deb": 16, "packag": 16, "requir": [16, 23], "sudo": 16, "permiss": 16, "debian": 16, "ubuntu": 16, "etc": [16, 21, 22, 23], "dpkg": 16, "v0": [16, 18], "7": 16, "amd64": 16, "tar": 16, "gz": 16, "hat": 16, "rocki": 16, "just": [16, 19, 20, 22], "shell": 16, "symlink": 16, "execut": [16, 21, 22], "usr": 16, "bin": 16, "associ": 16, "extens": 16, "easi": [16, 20, 21], "desktop": [16, 21, 22, 24], "choos": [16, 19, 24], "lack": 16, "organ": [16, 19], "uncompress": 16, "xf": 16, "folder": [16, 22, 24], "direcori": 16, "sh": 16, "script": [16, 21], "subdirectori": 16, "while": [16, 20, 22], "termin": [16, 24], "provid": [16, 19, 20, 21], "locat": [16, 22], "wai": [16, 20, 21], "recurs": 16, "thei": [16, 20, 21, 22, 24, 26], "ad": [16, 17, 18, 21, 22], "request": [16, 18], "By": [16, 19], "custom": [16, 19, 21, 24], "howev": 16, "nativ": [16, 21], "chooser": 16, "which": [16, 17, 19, 23, 24], "platform": 16, "might": 16, "o": [16, 17, 19, 21, 22, 23, 24], "won": 16, "t": [16, 17, 19, 22, 23, 24], "due": 16, "being": 16, "regist": [16, 22], "appl": 16, "either": [16, 22], "want": [16, 19, 20, 22, 23], "previous": 16, "conveni": 16, "power": [16, 17], "familiar": 16, "syntax": 16, "variou": 16, "mix": 16, "three": [16, 19, 20], "test": 16, "mov": [16, 21], "0001": 16, "exr": [16, 21, 22, 23], "edit": [16, 17, 19, 21], "back": [16, 21, 23], "natur": [16, 24], "respect": 16, "e": [16, 17, 19], "g": [16, 17, 19], "seri": 16, "jpeg": 16, "tga": [16, 21], "24fp": 16, "adjust": [16, 21, 23], "dpx": 16, "speed": [16, 17, 23], "taken": 16, "metadata": [16, 19], "avail": [16, 19, 21, 22, 24, 25], "made": [16, 19], "visibl": 16, "through": [12, 16, 21, 23, 24], "look": [12, 16], "f4": [16, 17, 22], "With": [16, 19, 20, 24], "see": [16, 21, 23], "behavior": [16, 18, 22, 24, 25], "auto": [16, 19], "come": [17, 19, 22], "assign": 17, "shift": [17, 19, 20, 23], "alt": [17, 19], "As": [17, 20], "quit": [17, 26], "program": 17, "escap": [17, 20], "h": [17, 19], "fit": [17, 19], "screen": [17, 20, 21, 23], "f": [17, 19], "resiz": 17, "textur": 17, "safe": [17, 21], "area": [17, 18, 20, 21], "d": 17, "c": [17, 24], "r": [17, 19], "step": [17, 19, 21, 23], "fp": [17, 18, 22], "j": 17, "direct": 17, "space": [17, 19], "down": [17, 19, 23, 24], "k": 17, "home": [17, 19, 23, 24], "ping": [17, 19, 23], "pong": [17, 19, 23], "pageup": 17, "pagedown": 17, "limit": [17, 23], "cut": 17, "copi": [17, 22, 24], "past": [17, 20], "v": [17, 26], "insert": 17, "slice": 17, "remov": 17, "undo": [17, 20], "redo": [17, 20], "bar": [17, 18, 20, 23], "f1": [17, 19], "top": [17, 18], "pixel": [17, 18, 19, 20, 21], "f2": [17, 19], "f3": [17, 19], "statu": [17, 19, 23, 24], "tool": [17, 19, 20, 21, 22], "dock": [17, 19, 22], "f7": [17, 19, 20], "full": [17, 19, 21, 22, 24], "f11": [17, 19], "present": [17, 19, 20, 22], "f12": [17, 19], "secondari": 17, "network": [17, 18], "n": [17, 24], "u": 17, "thumbnail": [17, 19], "transit": 17, "marker": 17, "reset": [17, 19, 22, 24], "gain": [17, 19, 21], "exposur": [17, 19, 21], "ocio": [17, 18, 19, 21, 22], "view": [17, 18, 21, 22, 23], "scrub": [17, 19, 21], "eras": [17, 20, 21], "rectangl": [17, 24], "circl": [17, 21], "pen": [17, 21], "size": [17, 19, 21, 23], "switch": [17, 19, 22, 23, 24], "black": [17, 19, 24], "background": [17, 23, 24], "hud": 17, "One": 17, "p": 17, "info": 17, "f5": 17, "f6": [17, 22], "f8": 17, "devic": 17, "f9": [17, 22, 25], "histogram": [17, 18], "vectorscop": [17, 18], "waveform": [17, 19], "f10": [17, 24], "log": [17, 18, 24], "about": [12, 17, 22], "8": [18, 19], "overview": 18, "build": [18, 21], "instal": 18, "launch": 18, "load": [18, 21, 22, 23], "drag": [18, 19, 20, 21, 22, 24], "drop": [18, 21], "browser": [18, 21, 22, 24], "recent": 18, "line": [18, 21], "hide": [18, 24], "show": [18, 22], "ui": [18, 21], "element": [18, 22], "divid": [18, 22], "context": 18, "sketch": [18, 21, 22], "modifi": [18, 19], "navig": [18, 21], "specif": 18, "languag": 18, "posit": [18, 21], "toolbar": [18, 19, 23], "error": [18, 19, 22], "hidden": [19, 20], "shown": [19, 20, 24], "third": 19, "viewport": [19, 20, 22], "fourth": 19, "under": [19, 24], "cursor": 19, "final": [19, 22], "let": 19, "know": [19, 24], "action": [19, 23, 24], "some": [12, 19, 21, 24], "shortcut": [19, 23, 24], "topbar": 19, "fullscreen": 19, "These": [19, 24, 26], "exit": 19, "alwai": [19, 20, 23], "configur": [19, 22, 24, 25], "closer": 19, "inspect": [19, 21], "middl": [19, 22], "pan": [19, 21], "within": [19, 21], "keyboard": [19, 20, 24], "perform": [19, 21], "centr": 19, "zoom": [19, 20, 21], "mousewheel": [19, 22, 24], "confort": 19, "factor": 19, "pulldown": 19, "without": [19, 20, 24], "particular": 19, "percentag": 19, "2x": 19, "pull": 19, "slider": 19, "driven": [19, 21], "opencolorio": 19, "gama": 19, "deriv": 19, "specifi": [19, 22], "cg": 19, "config": [19, 22], "ship": 19, "nuke": 19, "studio": 19, "ones": 19, "take": [19, 22], "scale": [19, 21], "quick": [19, 20], "track": [19, 21, 22], "pictur": 19, "immedi": 19, "how": [19, 20, 22, 23, 24, 25], "absolut": 19, "digit": [19, 24], "pretti": 19, "don": [19, 22, 24], "much": [19, 22, 25], "explan": 19, "There": [19, 20, 24], "paus": 19, "jump": [19, 20, 21], "per": [19, 23, 24], "desir": 19, "quickli": [19, 21, 22], "equival": 19, "press": 19, "bottom": [19, 22], "speaker": 19, "behaviour": [19, 23], "film": 19, "crop": 19, "aspect": [19, 21], "enter": [19, 20, 22, 23], "head": 19, "lot": 19, "independ": 19, "dark": 19, "grai": 19, "empti": [19, 20], "instead": [19, 22, 24, 25], "legal": 19, "handl": [19, 21], "logic": 19, "bigger": 19, "smaller": 19, "featur": [20, 21, 22], "tag": 20, "comment": 20, "record": [20, 22], "share": [20, 21, 24], "written": 20, "visual": [20, 21], "feedback": [20, 21], "colleagu": [20, 21], "bookmark": [20, 21], "mark": 20, "hit": 20, "twice": [20, 24], "stroke": [20, 21], "shape": [20, 21], "viewer": [20, 21, 22, 23, 24], "automat": [20, 22, 24], "hard": [20, 22], "depend": 20, "attach": [20, 22], "ghost": [20, 22], "mani": [20, 23, 24], "happen": [20, 22], "remain": [20, 24], "content": 20, "delet": 20, "partial": 20, "total": [20, 21], "presenc": 20, "indic": [20, 23], "yellow": 20, "veric": 20, "grip": 20, "caption": [20, 21], "onto": 20, "abov": [20, 22, 24], "rather": 20, "rasteris": 20, "fly": 20, "graphic": [20, 21, 23], "card": [20, 23], "brush": [20, 21, 22], "boundari": 20, "free": 20, "side": 20, "below": [20, 22], "rememb": [20, 23], "later": 20, "export": 20, "insid": [20, 24], "laser": [20, 22], "non": 20, "persist": 20, "fade": 20, "until": 20, "disappear": 20, "coupl": 20, "highlight": 20, "review": [20, 21], "continu": [20, 21], "still": [20, 21, 26], "around": [20, 22], "font": [20, 21, 22], "happi": 20, "cross": [20, 24], "discard": 20, "clean": 20, "sourc": 21, "profession": 21, "flipbook": 21, "effect": 21, "anim": 21, "industri": 21, "focus": 21, "intuit": 21, "highest": 21, "engin": 21, "its": [21, 22, 23, 24], "code": [21, 22], "pipelin": 21, "integr": 21, "customis": 21, "flexibl": 21, "collect": 21, "specialis": 21, "format": [21, 24], "colour": 21, "manag": 21, "organis": 21, "group": 21, "subset": 21, "highli": 21, "interact": 21, "collabor": 21, "workflow": [21, 23], "essenti": 21, "team": 21, "vfx": 21, "post": 21, "product": 21, "who": 21, "demand": [21, 23], "artwork": 21, "instantan": 21, "across": 21, "multipl": [21, 22], "robust": 21, "solut": 21, "been": [21, 23], "deploi": 21, "facil": 21, "individu": 21, "daili": 21, "sinc": 21, "august": 21, "2022": 21, "develop": [21, 26], "phase": 21, "swing": 21, "work": [21, 22, 24], "major": 21, "virtual": 21, "common": [21, 23], "todai": 21, "tif": 21, "jpg": 21, "psd": 21, "mp4": 21, "webm": 21, "player": 21, "embed": [21, 24], "sound": 21, "opentimelineio": [21, 22], "dissolv": 21, "pixar": [21, 24], "them": [21, 24], "built": [21, 24], "todo": 21, "lo": 21, "cuadro": 21, "respons": 21, "opac": 21, "easili": 21, "staff": 21, "accur": 21, "v2": 21, "correct": 21, "rgba": 21, "predefin": 21, "mask": [21, 24], "pop": [21, 22], "2nd": 21, "dual": 21, "sync": [21, 22], "synchron": 21, "lan": 21, "server": [21, 22, 24], "client": [21, 22, 24], "pref": [21, 24], "interpret": 21, "straightforward": 21, "And": 22, "perman": 22, "vanish": 22, "drawn": 22, "rectangular": 22, "minimum": 22, "maximum": [22, 23], "averag": 22, "after": 22, "field": 22, "seven": 22, "temporari": 22, "give": 22, "access": 22, "clone": 22, "again": 22, "refresh": 22, "re": 22, "sub": 22, "clipboard": 22, "gather": 22, "email": 22, "filemanag": 22, "messag": 22, "emit": 22, "dure": [22, 26], "oper": 22, "occur": 22, "ignor": [22, 23, 24], "hors": 22, "codec": [22, 23], "machin": [22, 24], "connect": [22, 24], "distinguis": 22, "ipv4": 22, "ipv6": 22, "address": 22, "host": 22, "alia": 22, "addit": [22, 26], "port": [22, 24], "fine": 22, "firewal": [22, 24], "incom": 22, "outgo": 22, "aka": 22, "append": 22, "sever": [22, 24, 26], "togeth": 22, "done": 22, "releas": 22, "resolutiono": 22, "match": [22, 23, 24], "assum": 22, "exist": 22, "each": [22, 23, 24], "section": [22, 24], "keypad": 22, "editor": 22, "mainli": [22, 25], "gb": [22, 25], "doe": [22, 23, 24, 25], "half": [22, 25], "ram": [22, 25], "qualiti": 22, "asset": [22, 24], "thing": 23, "random": 23, "widget": [12, 23], "spacebar": 23, "try": 23, "decod": 23, "store": [23, 24], "readi": 23, "effici": 23, "understand": 23, "obviou": 23, "grow": 23, "thu": 23, "slow": [23, 24], "off": 23, "resolut": 23, "wait": 23, "via": 23, "most": 23, "case": [23, 24], "although": 23, "optimis": 23, "veri": 23, "hardwar": 23, "transfer": 23, "faster": 23, "stream": 23, "dwb": 23, "larg": 23, "filmaura": 24, "usernam": 24, "resetset": 24, "old": 24, "calll": 24, "favorit": 24, "someth": 24, "wan": 24, "whole": 24, "behav": 24, "unus": 24, "reposit": 24, "withing": 24, "establish": 24, "fast": 24, "label": 24, "paramet": 24, "fltk": [12, 24], "stick": 24, "gtk": 24, "fill": 24, "well": 24, "otherwis": [10, 24], "those": 24, "recogn": 24, "dramat": 24, "privat": 24, "unless": 24, "soon": 24, "move": 24, "hex": 24, "origin": 24, "process": 24, "hsv": 24, "hsl": 24, "cie": 24, "xyz": 24, "xyi": 24, "lab": 24, "cielab": 24, "luv": 24, "cieluv": 24, "yuv": 24, "analog": 24, "pal": 24, "ydbdr": 24, "secam": 24, "yiq": 24, "ntsc": 24, "itu": 24, "601": 24, "ycbcr": 24, "709": 24, "hdtv": 24, "lumma": 24, "bit": 24, "depth": 24, "repeat": 24, "scratch": 24, "regular": 24, "express": 24, "_v": 24, "far": 24, "drive": 24, "remot": 24, "gga": 24, "unix": 24, "simpl": 24, "local": 24, "sent": 24, "receiv": 24, "noth": 24, "were": 26, "latest": 26, "www": 26, "youtub": 26, "watch": 26, "8jviz": 26, "ppcrg": 26, "plxj9nnbdnfrmd8aq41ajymb7whn99g5c": 26, "demo": 12, "constructor": 10, "rtype": 10, "correspond": 10, "new_menu": [], "redirect": 24, "tcp": 24, "55120": 24, "necessari": 24, "pyfltk": [0, 4], "prefspath": [2, 4], "rootpath": [2, 4], "root": 2, "insal": 2, "fltk14": 12, "sort": 12, "albeit": 12, "older": 12, "gitlab": 12, "sourceforg": 12, "doc": 12, "ch0_prefac": 12, "html": 12, "currentsess": [2, 4], "opensess": [2, 4], "setcurrentsess": [2, 4]}, "objects": {"": [[8, 0, 0, "-", "mrv2"]], "mrv2": [[8, 1, 1, "", "FileMedia"], [8, 1, 1, "", "Path"], [8, 1, 1, "", "RationalTime"], [8, 1, 1, "", "TimeRange"], [1, 0, 0, "-", "annotations"], [2, 0, 0, "-", "cmd"], [3, 0, 0, "-", "image"], [5, 0, 0, "-", "io"], [6, 0, 0, "-", "math"], [7, 0, 0, "-", "media"], [9, 0, 0, "-", "playlist"], [10, 0, 0, "-", "plugin"], [13, 0, 0, "-", "settings"], [14, 0, 0, "-", "timeline"], [15, 0, 0, "-", "usd"]], "mrv2.FileMedia": [[8, 2, 1, "", "audioOffset"], [8, 2, 1, "", "audioPath"], [8, 2, 1, "", "currentTime"], [8, 2, 1, "", "inOutRange"], [8, 2, 1, "", "loop"], [8, 2, 1, "", "mute"], [8, 2, 1, "", "path"], [8, 2, 1, "", "playback"], [8, 2, 1, "", "timeRange"], [8, 2, 1, "", "videoLayer"], [8, 2, 1, "", "volume"]], "mrv2.Path": [[8, 3, 1, "", "get"], [8, 3, 1, "", "getBaseName"], [8, 3, 1, "", "getDirectory"], [8, 3, 1, "", "getExtension"], [8, 3, 1, "", "getNumber"], [8, 3, 1, "", "getPadding"], [8, 3, 1, "", "isAbsolute"], [8, 3, 1, "", "isEmpty"]], "mrv2.RationalTime": [[8, 3, 1, "", "almost_equal"], [8, 3, 1, "", "duration_from_start_end_time"], [8, 3, 1, "", "duration_from_start_end_time_inclusive"], [8, 3, 1, "", "from_frames"], [8, 3, 1, "", "from_seconds"], [8, 3, 1, "", "from_time_string"], [8, 3, 1, "", "from_timecode"], [8, 3, 1, "", "is_invalid_time"], [8, 3, 1, "", "is_valid_timecode_rate"], [8, 3, 1, "", "nearest_valid_timecode_rate"], [8, 3, 1, "", "rescaled_to"], [8, 3, 1, "", "to_frames"], [8, 3, 1, "", "to_seconds"], [8, 3, 1, "", "to_time_string"], [8, 3, 1, "", "to_timecode"], [8, 3, 1, "", "value_rescaled_to"]], "mrv2.TimeRange": [[8, 3, 1, "", "before"], [8, 3, 1, "", "begins"], [8, 3, 1, "", "clamped"], [8, 3, 1, "", "contains"], [8, 3, 1, "", "duration_extended_by"], [8, 3, 1, "", "end_time_exclusive"], [8, 3, 1, "", "end_time_inclusive"], [8, 3, 1, "", "extended_by"], [8, 3, 1, "", "finishes"], [8, 3, 1, "", "intersects"], [8, 3, 1, "", "meets"], [8, 3, 1, "", "overlaps"], [8, 3, 1, "", "range_from_start_end_time"], [8, 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, "", "currentSession"], [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, "", "open"], [2, 4, 1, "", "openSession"], [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, "", "setCurrentSession"], [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.io": [[5, 1, 1, "", "Compression"], [5, 1, 1, "", "Profile"], [5, 1, 1, "", "SaveOptions"]], "mrv2.io.SaveOptions": [[5, 2, 1, "", "annotations"], [5, 2, 1, "", "dwaCompressionLevel"], [5, 2, 1, "", "exrCompression"], [5, 2, 1, "", "ffmpegProfile"], [5, 2, 1, "", "zipCompressionLevel"]], "mrv2.math": [[6, 1, 1, "", "Vector2f"], [6, 1, 1, "", "Vector2i"], [6, 1, 1, "", "Vector3f"], [6, 1, 1, "", "Vector4f"]], "mrv2.math.Vector2f": [[6, 2, 1, "", "x"], [6, 2, 1, "", "y"]], "mrv2.math.Vector2i": [[6, 2, 1, "", "x"], [6, 2, 1, "", "y"]], "mrv2.math.Vector3f": [[6, 2, 1, "", "x"], [6, 2, 1, "", "y"], [6, 2, 1, "", "z"]], "mrv2.math.Vector4f": [[6, 2, 1, "", "w"], [6, 2, 1, "", "x"], [6, 2, 1, "", "y"], [6, 2, 1, "", "z"]], "mrv2.media": [[7, 4, 1, "", "Afile"], [7, 4, 1, "", "Aindex"], [7, 4, 1, "", "BIndexes"], [7, 4, 1, "", "Bfiles"], [7, 1, 1, "", "CompareMode"], [7, 1, 1, "", "CompareOptions"], [7, 4, 1, "", "activeFiles"], [7, 4, 1, "", "clearB"], [7, 4, 1, "", "close"], [7, 4, 1, "", "closeAll"], [7, 4, 1, "", "firstVersion"], [7, 4, 1, "", "lastVersion"], [7, 4, 1, "", "layers"], [7, 4, 1, "", "list"], [7, 4, 1, "", "nextVersion"], [7, 4, 1, "", "previousVersion"], [7, 4, 1, "", "setA"], [7, 4, 1, "", "setB"], [7, 4, 1, "", "setLayer"], [7, 4, 1, "", "setStereo"], [7, 4, 1, "", "toggleB"]], "mrv2.media.CompareOptions": [[7, 2, 1, "", "mode"], [7, 2, 1, "", "overlay"], [7, 2, 1, "", "wipeCenter"], [7, 2, 1, "", "wipeRotation"]], "mrv2.playlist": [[9, 4, 1, "", "add_clip"], [9, 4, 1, "", "list"], [9, 4, 1, "", "save"], [9, 4, 1, "", "select"]], "mrv2.plugin": [[10, 1, 1, "", "Plugin"]], "mrv2.plugin.Plugin": [[10, 3, 1, "", "active"], [10, 3, 1, "", "menus"]], "mrv2.settings": [[13, 4, 1, "", "memory"], [13, 4, 1, "", "readAhead"], [13, 4, 1, "", "readBehind"], [13, 4, 1, "", "setMemory"], [13, 4, 1, "", "setReadAhead"], [13, 4, 1, "", "setReadBehind"]], "mrv2.timeline": [[14, 1, 1, "", "FileSequenceAudio"], [14, 1, 1, "", "Loop"], [14, 1, 1, "", "Playback"], [14, 1, 1, "", "TimerMode"], [14, 4, 1, "", "frame"], [14, 4, 1, "", "inOutRange"], [14, 4, 1, "", "loop"], [14, 4, 1, "", "playBackwards"], [14, 4, 1, "", "playForwards"], [14, 4, 1, "", "seconds"], [14, 4, 1, "", "seek"], [14, 4, 1, "", "setIn"], [14, 4, 1, "", "setInOutRange"], [14, 4, 1, "", "setLoop"], [14, 4, 1, "", "setOut"], [14, 4, 1, "", "stop"], [14, 4, 1, "", "time"], [14, 4, 1, "", "timeRange"]], "mrv2.timeline.FileSequenceAudio": [[14, 5, 1, "", "name"]], "mrv2.timeline.Loop": [[14, 5, 1, "", "name"]], "mrv2.timeline.Playback": [[14, 5, 1, "", "name"]], "mrv2.timeline.TimerMode": [[14, 5, 1, "", "name"]], "mrv2.usd": [[15, 1, 1, "", "DrawMode"], [15, 1, 1, "", "RenderOptions"], [15, 4, 1, "", "renderOptions"], [15, 4, 1, "", "setRenderOptions"]], "mrv2.usd.RenderOptions": [[15, 2, 1, "", "complexity"], [15, 2, 1, "", "diskCacheByteCount"], [15, 2, 1, "", "drawMode"], [15, 2, 1, "", "enableLighting"], [15, 2, 1, "", "renderWidth"], [15, 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 module"], "1": ["py", "class", "Python class"], "2": ["py", "attribute", "Python attribute"], "3": ["py", "method", "Python method"], "4": ["py", "function", "Python function"], "5": ["py", "property", "Python property"]}, "titleterms": {"welcom": 0, "mrv2": [0, 8, 16, 18, 19, 21], "": 0, "document": 0, "tabl": 0, "content": 0, "indic": [0, 19], "annot": [1, 20, 22], "modul": [1, 2, 3, 5, 6, 7, 8, 9, 10, 13, 14, 15], "cmd": 2, "imag": [3, 24], "python": [4, 22], "api": 4, "io": 5, "math": 6, "media": [7, 16, 22], "playlist": [9, 22], "plugin": 10, "plug": 11, "system": 11, "ins": 11, "set": [13, 22, 25], "timelin": [14, 19, 24], "usd": [15, 22, 24], "get": 16, "start": [16, 19, 24], "build": 16, "instal": 16, "launch": 16, "load": [16, 24], "drag": 16, "drop": 16, "browser": 16, "recent": 16, "menu": [16, 19, 22, 24], "command": 16, "line": 16, "view": [16, 19, 24], "hotkei": [17, 23], "user": [18, 24], "guid": 18, "The": [19, 24], "interfac": [19, 24], "hide": 19, "show": [19, 24], "ui": [19, 24], "element": [19, 24], "customis": 19, "mous": [19, 22], "interact": 19, "viewer": 19, "top": [19, 24], "bar": [19, 24], "frame": [19, 23, 24], "transport": 19, "control": 19, "fp": [19, 23, 24], "end": 19, "player": 19, "safe": [19, 24], "area": [19, 22, 24], "data": 19, "window": [19, 24], "displai": [19, 24], "mask": 19, "hud": [19, 24], "render": 19, "channel": 19, "mirror": 19, "background": 19, "video": [19, 26], "level": 19, "alpha": 19, "blend": 19, "minifi": 19, "magnifi": 19, "filter": 19, "panel": [19, 22, 24], "divid": 19, "note": 20, "ad": 20, "sketch": 20, "modifi": 20, "navig": 20, "draw": 20, "introduct": 21, "what": 21, "i": 21, "current": [21, 23, 24], "version": [21, 24], "v0": 21, "8": 21, "0": 21, "overview": 21, "color": [22, 24], "compar": 22, "environ": 22, "map": [22, 24], "file": [22, 24], "context": 22, "right": 22, "button": 22, "histogram": 22, "log": 22, "inform": 22, "network": [22, 24], "stereo": 22, "3d": 22, "vectorscop": 22, "v\u00eddeo": 23, "playback": [23, 24], "loop": [23, 24], "mode": [23, 24], "rate": 23, "specif": 23, "cach": 23, "behavior": 23, "prefer": 24, "alwai": 24, "secondari": 24, "On": 24, "singl": 24, "instanc": 24, "auto": 24, "refit": 24, "normal": 24, "fullscreen": 24, "present": 24, "maco": 24, "tool": 24, "dock": 24, "onli": 24, "One": 24, "gain": 24, "gamma": 24, "crop": 24, "zoom": 24, "speed": 24, "languag": 24, "scheme": 24, "theme": 24, "posit": 24, "save": 24, "exit": 24, "fix": 24, "size": 24, "take": 24, "valu": 24, "request": 24, "click": 24, "travel": 24, "drawer": 24, "thumbnail": 24, "activ": 24, "us": 24, "nativ": 24, "chooser": 24, "scrub": 24, "sensit": 24, "preview": 24, "edit": 24, "transit": 24, "marker": 24, "pixel": 24, "toolbar": 24, "rgba": 24, "lumin": 24, "ocio": 24, "config": 24, "default": 24, "input": 24, "space": 24, "miss": 24, "regex": 24, "maximum": 24, "apart": 24, "path": 24, "add": 24, "remov": 24, "error": 24, "tutori": 26, "viewport": 24, "pyfltk": 12}, "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": {"Welcome to mrv2\u2019s documentation!": [[0, "welcome-to-mrv2-s-documentation"]], "Table of Contents": [[0, "table-of-contents"]], "Indices and tables": [[0, "indices-and-tables"]], "annotations module": [[1, "module-mrv2.annotations"]], "cmd module": [[2, "module-mrv2.cmd"]], "image module": [[3, "module-mrv2.image"]], "Python API": [[4, "python-api"]], "io Module": [[5, "module-mrv2.io"]], "math module": [[6, "module-mrv2.math"]], "media module": [[7, "module-mrv2.media"]], "mrv2 module": [[8, "module-mrv2"]], "playlist module": [[9, "module-mrv2.playlist"]], "plugin module": [[10, "module-mrv2.plugin"]], "Plug-in System": [[11, "plug-in-system"]], "Plug-ins": [[11, "plug-ins"]], "pyFLTK": [[12, "pyfltk"]], "settings module": [[13, "module-mrv2.settings"]], "timeline module": [[14, "module-mrv2.timeline"]], "usd module": [[15, "module-mrv2.usd"]], "Getting Started": [[16, "getting-started"]], "Building mrv2": [[16, "building-mrv2"]], "Installing mrv2": [[16, "installing-mrv2"]], "Launching mrv2": [[16, "launching-mrv2"]], "Loading Media (Drag and Drop)": [[16, "loading-media-drag-and-drop"]], "Loading Media (mrv2 Browser)": [[16, "loading-media-mrv2-browser"]], "Loading Media (Recent menu)": [[16, "loading-media-recent-menu"]], "Loading Media (command line)": [[16, "loading-media-command-line"]], "Viewing Media": [[16, "viewing-media"]], "Hotkeys": [[17, "hotkeys"]], "mrv2 User Guide": [[18, "mrv2-user-guide"]], "The mrv2 Interface": [[19, "the-mrv2-interface"]], "Hiding/Showing UI elements": [[19, "hiding-showing-ui-elements"]], "Customising the Interface": [[19, "customising-the-interface"]], "Mouse interaction in the Viewer": [[19, "mouse-interaction-in-the-viewer"]], "The Top Bar": [[19, "the-top-bar"]], "The Timeline": [[19, "the-timeline"]], "Frame Indicator": [[19, "frame-indicator"]], "Transport Controls": [[19, "transport-controls"]], "FPS": [[19, "fps"], [24, null]], "Start and End Frame Indicator": [[19, "start-and-end-frame-indicator"]], "Player/Viewer Controls": [[19, "player-viewer-controls"]], "View Menu": [[19, "view-menu"]], "Safe Areas": [[19, null], [24, null]], "Data Window": [[19, null]], "Display Window": [[19, null]], "Mask": [[19, null]], "HUD": [[19, null], [24, null]], "Render Menu": [[19, "render-menu"]], "Channels": [[19, null]], "Mirror": [[19, null]], "Background": [[19, null]], "Video Levels": [[19, null]], "Alpha Blend": [[19, null]], "Minify and Magnify Filters": [[19, null]], "The Panels": [[19, "the-panels"]], "Divider": [[19, "divider"]], "Notes and Annotations": [[20, "notes-and-annotations"]], "Adding a Note or Sketch": [[20, "adding-a-note-or-sketch"]], "Modifying a Note": [[20, "modifying-a-note"]], "Navigating Notes": [[20, "navigating-notes"]], "Drawing Annotations": [[20, "drawing-annotations"]], "Introduction": [[21, "introduction"]], "What is mrv2 ?": [[21, "what-is-mrv2"]], "Current Version: v0.8.0 - Overview": [[21, "current-version-v0-8-0-overview"]], "Panels": [[22, "panels"]], "Annotations Panel": [[22, "annotations-panel"]], "Color Area Panel": [[22, "color-area-panel"]], "Color Panel": [[22, "color-panel"]], "Compare Panel": [[22, "compare-panel"]], "Environment Map Panel": [[22, "environment-map-panel"]], "Files Panel": [[22, "files-panel"]], "Files Panel Context Menu (right mouse button)": [[22, "files-panel-context-menu-right-mouse-button"]], "Histogram Panel": [[22, "histogram-panel"]], "Logs Panel": [[22, "logs-panel"]], "Media Information Panel": [[22, "media-information-panel"]], "Network Panel": [[22, "network-panel"]], "Playlist Panel": [[22, "playlist-panel"]], "Python Panel": [[22, "python-panel"]], "Settings Panel": [[22, "settings-panel"]], "Stereo 3D Panel": [[22, "stereo-3d-panel"]], "USD Panel": [[22, "usd-panel"]], "Vectorscope Panel": [[22, "vectorscope-panel"]], "V\u00eddeo Playback": [[23, "video-playback"]], "Current Frame": [[23, "current-frame"]], "Loop Modes": [[23, "loop-modes"]], "FPS Rate": [[23, "fps-rate"]], "Playback Specific Hotkeys": [[23, "playback-specific-hotkeys"]], "Cache Behavior": [[23, "cache-behavior"]], "Preferences": [[24, "preferences"]], "User Interface": [[24, "user-interface"]], "Always on Top and Secondary On Top": [[24, null]], "Single Instance": [[24, null]], "Auto Refit Image": [[24, null]], "Normal, Fullscreen and Presentation": [[24, null]], "UI Elements": [[24, "ui-elements"]], "The UI bars": [[24, null]], "macOS Menus": [[24, null]], "Tool Dock": [[24, null]], "Only One Panel": [[24, null]], "View Window": [[24, "view-window"]], "Gain and Gamma": [[24, null]], "Crop": [[24, null]], "Zoom Speed": [[24, null]], "Language and Colors": [[24, "language-and-colors"]], "Language": [[24, null]], "Scheme": [[24, null]], "Color Theme": [[24, null]], "View Colors": [[24, null]], "Positioning": [[24, "positioning"]], "Always Save on Exit": [[24, null]], "Fixed Position": [[24, null]], "Fixed Size": [[24, null]], "Take Current Window Values": [[24, null]], "File Requester": [[24, "file-requester"]], "Single Click to Travel Drawers": [[24, null]], "Thumbnails Active": [[24, null]], "USD Thumbnails": [[24, null]], "Use Native File Chooser": [[24, null]], "Playback": [[24, "playback"]], "Auto Playback": [[24, null]], "Looping Mode": [[24, null]], "Scrub Sensitivity": [[24, null]], "Timeline": [[24, "timeline"]], "Display": [[24, null]], "Preview Thumbnails": [[24, null]], "Edit Viewport": [[24, "edit-viewport"]], "Start in Edit mode": [[24, null]], "Thumbnails": [[24, null]], "Show Transitions": [[24, null]], "Show Markers": [[24, null]], "Pixel Toolbar": [[24, "pixel-toolbar"]], "RGBA Display": [[24, null]], "Pixel Values": [[24, null]], "Secondary Display": [[24, null]], "Luminance": [[24, null]], "OCIO": [[24, "ocio"]], "OCIO Config File": [[24, null]], "OCIO Defaults": [[24, "ocio-defaults"]], "Use Active Views and Active Displays": [[24, null]], "Input Color Space": [[24, null]], "Loading": [[24, "loading"]], "Missing Frame": [[24, null]], "Version Regex": [[24, null]], "Maximum Images Apart": [[24, null]], "Path Mapping": [[24, "path-mapping"]], "Add Path": [[24, null]], "Remove Path": [[24, null]], "Network": [[24, "network"]], "Errors": [[24, "errors"]], "Settings": [[25, "settings"]], "Video Tutorials": [[26, "video-tutorials"]]}, "indexentries": {"add() (in module mrv2.annotations)": [[1, "mrv2.annotations.add"]], "module": [[1, "module-mrv2.annotations"], [2, "module-mrv2.cmd"], [3, "module-mrv2.image"], [5, "module-mrv2.io"], [6, "module-mrv2.math"], [7, "module-mrv2.media"], [8, "module-mrv2"], [9, "module-mrv2.playlist"], [10, "module-mrv2.plugin"], [13, "module-mrv2.settings"], [14, "module-mrv2.timeline"], [15, "module-mrv2.usd"]], "mrv2.annotations": [[1, "module-mrv2.annotations"]], "close() (in module mrv2.cmd)": [[2, "mrv2.cmd.close"]], "closeall() (in module mrv2.cmd)": [[2, "mrv2.cmd.closeAll"]], "compare() (in module mrv2.cmd)": [[2, "mrv2.cmd.compare"]], "compareoptions() (in module mrv2.cmd)": [[2, "mrv2.cmd.compareOptions"]], "currentsession() (in module mrv2.cmd)": [[2, "mrv2.cmd.currentSession"]], "displayoptions() (in module mrv2.cmd)": [[2, "mrv2.cmd.displayOptions"]], "environmentmapoptions() (in module mrv2.cmd)": [[2, "mrv2.cmd.environmentMapOptions"]], "getlayers() (in module mrv2.cmd)": [[2, "mrv2.cmd.getLayers"]], "imageoptions() (in module mrv2.cmd)": [[2, "mrv2.cmd.imageOptions"]], "ismuted() (in module mrv2.cmd)": [[2, "mrv2.cmd.isMuted"]], "lutoptions() (in module mrv2.cmd)": [[2, "mrv2.cmd.lutOptions"]], "mrv2.cmd": [[2, "module-mrv2.cmd"]], "open() (in module mrv2.cmd)": [[2, "mrv2.cmd.open"]], "opensession() (in module mrv2.cmd)": [[2, "mrv2.cmd.openSession"]], "prefspath() (in module mrv2.cmd)": [[2, "mrv2.cmd.prefsPath"]], "rootpath() (in module mrv2.cmd)": [[2, "mrv2.cmd.rootPath"]], "save() (in module mrv2.cmd)": [[2, "mrv2.cmd.save"]], "savepdf() (in module mrv2.cmd)": [[2, "mrv2.cmd.savePDF"]], "savesession() (in module mrv2.cmd)": [[2, "mrv2.cmd.saveSession"]], "savesessionas() (in module mrv2.cmd)": [[2, "mrv2.cmd.saveSessionAs"]], "setcompareoptions() (in module mrv2.cmd)": [[2, "mrv2.cmd.setCompareOptions"]], "setcurrentsession() (in module mrv2.cmd)": [[2, "mrv2.cmd.setCurrentSession"]], "setdisplayoptions() (in module mrv2.cmd)": [[2, "mrv2.cmd.setDisplayOptions"]], "setenvironmentmapoptions() (in module mrv2.cmd)": [[2, "mrv2.cmd.setEnvironmentMapOptions"]], "setimageoptions() (in module mrv2.cmd)": [[2, "mrv2.cmd.setImageOptions"]], "setlutoptions() (in module mrv2.cmd)": [[2, "mrv2.cmd.setLUTOptions"]], "setmute() (in module mrv2.cmd)": [[2, "mrv2.cmd.setMute"]], "setstereo3doptions() (in module mrv2.cmd)": [[2, "mrv2.cmd.setStereo3DOptions"]], "setvolume() (in module mrv2.cmd)": [[2, "mrv2.cmd.setVolume"]], "stereo3doptions() (in module mrv2.cmd)": [[2, "mrv2.cmd.stereo3DOptions"]], "update() (in module mrv2.cmd)": [[2, "mrv2.cmd.update"]], "volume() (in module mrv2.cmd)": [[2, "mrv2.cmd.volume"]], "alphablend (class in mrv2.image)": [[3, "mrv2.image.AlphaBlend"]], "channels (class in mrv2.image)": [[3, "mrv2.image.Channels"]], "color (class in mrv2.image)": [[3, "mrv2.image.Color"]], "displayoptions (class in mrv2.image)": [[3, "mrv2.image.DisplayOptions"]], "environmentmapoptions (class in mrv2.image)": [[3, "mrv2.image.EnvironmentMapOptions"]], "environmentmaptype (class in mrv2.image)": [[3, "mrv2.image.EnvironmentMapType"]], "imagefilter (class in mrv2.image)": [[3, "mrv2.image.ImageFilter"]], "imagefilters (class in mrv2.image)": [[3, "mrv2.image.ImageFilters"]], "imageoptions (class in mrv2.image)": [[3, "mrv2.image.ImageOptions"]], "inputvideolevels (class in mrv2.image)": [[3, "mrv2.image.InputVideoLevels"]], "lutoptions (class in mrv2.image)": [[3, "mrv2.image.LUTOptions"]], "lutorder (class in mrv2.image)": [[3, "mrv2.image.LUTOrder"]], "levels (class in mrv2.image)": [[3, "mrv2.image.Levels"]], "mirror (class in mrv2.image)": [[3, "mrv2.image.Mirror"]], "softclip (class in mrv2.image)": [[3, "mrv2.image.SoftClip"]], "stereo3dinput (class in mrv2.image)": [[3, "mrv2.image.Stereo3DInput"]], "stereo3doptions (class in mrv2.image)": [[3, "mrv2.image.Stereo3DOptions"]], "stereo3doutput (class in mrv2.image)": [[3, "mrv2.image.Stereo3DOutput"]], "videolevels (class in mrv2.image)": [[3, "mrv2.image.VideoLevels"]], "yuvcoefficients (class in mrv2.image)": [[3, "mrv2.image.YUVCoefficients"]], "add (mrv2.image.color attribute)": [[3, "mrv2.image.Color.add"]], "alphablend (mrv2.image.imageoptions attribute)": [[3, "mrv2.image.ImageOptions.alphaBlend"]], "brightness (mrv2.image.color attribute)": [[3, "mrv2.image.Color.brightness"]], "channels (mrv2.image.displayoptions attribute)": [[3, "mrv2.image.DisplayOptions.channels"]], "color (mrv2.image.displayoptions attribute)": [[3, "mrv2.image.DisplayOptions.color"]], "contrast (mrv2.image.color attribute)": [[3, "mrv2.image.Color.contrast"]], "enabled (mrv2.image.color attribute)": [[3, "mrv2.image.Color.enabled"]], "enabled (mrv2.image.levels attribute)": [[3, "mrv2.image.Levels.enabled"]], "enabled (mrv2.image.softclip attribute)": [[3, "mrv2.image.SoftClip.enabled"]], "eyeseparation (mrv2.image.stereo3doptions attribute)": [[3, "mrv2.image.Stereo3DOptions.eyeSeparation"]], "filename (mrv2.image.lutoptions attribute)": [[3, "mrv2.image.LUTOptions.fileName"]], "focallength (mrv2.image.environmentmapoptions attribute)": [[3, "mrv2.image.EnvironmentMapOptions.focalLength"]], "gamma (mrv2.image.levels attribute)": [[3, "mrv2.image.Levels.gamma"]], "horizontalaperture (mrv2.image.environmentmapoptions attribute)": [[3, "mrv2.image.EnvironmentMapOptions.horizontalAperture"]], "imagefilters (mrv2.image.imageoptions attribute)": [[3, "mrv2.image.ImageOptions.imageFilters"]], "inhigh (mrv2.image.levels attribute)": [[3, "mrv2.image.Levels.inHigh"]], "inlow (mrv2.image.levels attribute)": [[3, "mrv2.image.Levels.inLow"]], "input (mrv2.image.stereo3doptions attribute)": [[3, "mrv2.image.Stereo3DOptions.input"]], "invert (mrv2.image.color attribute)": [[3, "mrv2.image.Color.invert"]], "levels (mrv2.image.displayoptions attribute)": [[3, "mrv2.image.DisplayOptions.levels"]], "magnify (mrv2.image.imagefilters attribute)": [[3, "mrv2.image.ImageFilters.magnify"]], "minify (mrv2.image.imagefilters attribute)": [[3, "mrv2.image.ImageFilters.minify"]], "mirror (mrv2.image.displayoptions attribute)": [[3, "mrv2.image.DisplayOptions.mirror"]], "mrv2.image": [[3, "module-mrv2.image"]], "order (mrv2.image.lutoptions attribute)": [[3, "mrv2.image.LUTOptions.order"]], "outhigh (mrv2.image.levels attribute)": [[3, "mrv2.image.Levels.outHigh"]], "outlow (mrv2.image.levels attribute)": [[3, "mrv2.image.Levels.outLow"]], "output (mrv2.image.stereo3doptions attribute)": [[3, "mrv2.image.Stereo3DOptions.output"]], "rotatex (mrv2.image.environmentmapoptions attribute)": [[3, "mrv2.image.EnvironmentMapOptions.rotateX"]], "rotatey (mrv2.image.environmentmapoptions attribute)": [[3, "mrv2.image.EnvironmentMapOptions.rotateY"]], "saturation (mrv2.image.color attribute)": [[3, "mrv2.image.Color.saturation"]], "softclip (mrv2.image.displayoptions attribute)": [[3, "mrv2.image.DisplayOptions.softClip"]], "spin (mrv2.image.environmentmapoptions attribute)": [[3, "mrv2.image.EnvironmentMapOptions.spin"]], "subdivisionx (mrv2.image.environmentmapoptions attribute)": [[3, "mrv2.image.EnvironmentMapOptions.subdivisionX"]], "subdivisiony (mrv2.image.environmentmapoptions attribute)": [[3, "mrv2.image.EnvironmentMapOptions.subdivisionY"]], "swapeyes (mrv2.image.stereo3doptions attribute)": [[3, "mrv2.image.Stereo3DOptions.swapEyes"]], "tint (mrv2.image.color attribute)": [[3, "mrv2.image.Color.tint"]], "type (mrv2.image.environmentmapoptions attribute)": [[3, "mrv2.image.EnvironmentMapOptions.type"]], "value (mrv2.image.softclip attribute)": [[3, "mrv2.image.SoftClip.value"]], "verticalaperture (mrv2.image.environmentmapoptions attribute)": [[3, "mrv2.image.EnvironmentMapOptions.verticalAperture"]], "videolevels (mrv2.image.imageoptions attribute)": [[3, "mrv2.image.ImageOptions.videoLevels"]], "x (mrv2.image.mirror attribute)": [[3, "mrv2.image.Mirror.x"]], "y (mrv2.image.mirror attribute)": [[3, "mrv2.image.Mirror.y"]], "compression (class in mrv2.io)": [[5, "mrv2.io.Compression"]], "profile (class in mrv2.io)": [[5, "mrv2.io.Profile"]], "saveoptions (class in mrv2.io)": [[5, "mrv2.io.SaveOptions"]], "annotations (mrv2.io.saveoptions attribute)": [[5, "mrv2.io.SaveOptions.annotations"]], "dwacompressionlevel (mrv2.io.saveoptions attribute)": [[5, "mrv2.io.SaveOptions.dwaCompressionLevel"]], "exrcompression (mrv2.io.saveoptions attribute)": [[5, "mrv2.io.SaveOptions.exrCompression"]], "ffmpegprofile (mrv2.io.saveoptions attribute)": [[5, "mrv2.io.SaveOptions.ffmpegProfile"]], "mrv2.io": [[5, "module-mrv2.io"]], "zipcompressionlevel (mrv2.io.saveoptions attribute)": [[5, "mrv2.io.SaveOptions.zipCompressionLevel"]], "vector2f (class in mrv2.math)": [[6, "mrv2.math.Vector2f"]], "vector2i (class in mrv2.math)": [[6, "mrv2.math.Vector2i"]], "vector3f (class in mrv2.math)": [[6, "mrv2.math.Vector3f"]], "vector4f (class in mrv2.math)": [[6, "mrv2.math.Vector4f"]], "mrv2.math": [[6, "module-mrv2.math"]], "w (mrv2.math.vector4f attribute)": [[6, "mrv2.math.Vector4f.w"]], "x (mrv2.math.vector2f attribute)": [[6, "mrv2.math.Vector2f.x"]], "x (mrv2.math.vector2i attribute)": [[6, "mrv2.math.Vector2i.x"]], "x (mrv2.math.vector3f attribute)": [[6, "mrv2.math.Vector3f.x"]], "x (mrv2.math.vector4f attribute)": [[6, "mrv2.math.Vector4f.x"]], "y (mrv2.math.vector2f attribute)": [[6, "mrv2.math.Vector2f.y"]], "y (mrv2.math.vector2i attribute)": [[6, "mrv2.math.Vector2i.y"]], "y (mrv2.math.vector3f attribute)": [[6, "mrv2.math.Vector3f.y"]], "y (mrv2.math.vector4f attribute)": [[6, "mrv2.math.Vector4f.y"]], "z (mrv2.math.vector3f attribute)": [[6, "mrv2.math.Vector3f.z"]], "z (mrv2.math.vector4f attribute)": [[6, "mrv2.math.Vector4f.z"]], "afile() (in module mrv2.media)": [[7, "mrv2.media.Afile"]], "aindex() (in module mrv2.media)": [[7, "mrv2.media.Aindex"]], "bindexes() (in module mrv2.media)": [[7, "mrv2.media.BIndexes"]], "bfiles() (in module mrv2.media)": [[7, "mrv2.media.Bfiles"]], "comparemode (class in mrv2.media)": [[7, "mrv2.media.CompareMode"]], "compareoptions (class in mrv2.media)": [[7, "mrv2.media.CompareOptions"]], "activefiles() (in module mrv2.media)": [[7, "mrv2.media.activeFiles"]], "clearb() (in module mrv2.media)": [[7, "mrv2.media.clearB"]], "close() (in module mrv2.media)": [[7, "mrv2.media.close"]], "closeall() (in module mrv2.media)": [[7, "mrv2.media.closeAll"]], "firstversion() (in module mrv2.media)": [[7, "mrv2.media.firstVersion"]], "lastversion() (in module mrv2.media)": [[7, "mrv2.media.lastVersion"]], "layers() (in module mrv2.media)": [[7, "mrv2.media.layers"]], "list() (in module mrv2.media)": [[7, "mrv2.media.list"]], "mode (mrv2.media.compareoptions attribute)": [[7, "mrv2.media.CompareOptions.mode"]], "mrv2.media": [[7, "module-mrv2.media"]], "nextversion() (in module mrv2.media)": [[7, "mrv2.media.nextVersion"]], "overlay (mrv2.media.compareoptions attribute)": [[7, "mrv2.media.CompareOptions.overlay"]], "previousversion() (in module mrv2.media)": [[7, "mrv2.media.previousVersion"]], "seta() (in module mrv2.media)": [[7, "mrv2.media.setA"]], "setb() (in module mrv2.media)": [[7, "mrv2.media.setB"]], "setlayer() (in module mrv2.media)": [[7, "mrv2.media.setLayer"]], "setstereo() (in module mrv2.media)": [[7, "mrv2.media.setStereo"]], "toggleb() (in module mrv2.media)": [[7, "mrv2.media.toggleB"]], "wipecenter (mrv2.media.compareoptions attribute)": [[7, "mrv2.media.CompareOptions.wipeCenter"]], "wiperotation (mrv2.media.compareoptions attribute)": [[7, "mrv2.media.CompareOptions.wipeRotation"]], "filemedia (class in mrv2)": [[8, "mrv2.FileMedia"]], "path (class in mrv2)": [[8, "mrv2.Path"]], "rationaltime (class in mrv2)": [[8, "mrv2.RationalTime"]], "timerange (class in mrv2)": [[8, "mrv2.TimeRange"]], "almost_equal() (mrv2.rationaltime method)": [[8, "mrv2.RationalTime.almost_equal"]], "audiooffset (mrv2.filemedia attribute)": [[8, "mrv2.FileMedia.audioOffset"]], "audiopath (mrv2.filemedia attribute)": [[8, "mrv2.FileMedia.audioPath"]], "before() (mrv2.timerange method)": [[8, "mrv2.TimeRange.before"]], "begins() (mrv2.timerange method)": [[8, "mrv2.TimeRange.begins"]], "clamped() (mrv2.timerange method)": [[8, "mrv2.TimeRange.clamped"]], "contains() (mrv2.timerange method)": [[8, "mrv2.TimeRange.contains"]], "currenttime (mrv2.filemedia attribute)": [[8, "mrv2.FileMedia.currentTime"]], "duration_extended_by() (mrv2.timerange method)": [[8, "mrv2.TimeRange.duration_extended_by"]], "duration_from_start_end_time() (mrv2.rationaltime static method)": [[8, "mrv2.RationalTime.duration_from_start_end_time"]], "duration_from_start_end_time_inclusive() (mrv2.rationaltime static method)": [[8, "mrv2.RationalTime.duration_from_start_end_time_inclusive"]], "end_time_exclusive() (mrv2.timerange method)": [[8, "mrv2.TimeRange.end_time_exclusive"]], "end_time_inclusive() (mrv2.timerange method)": [[8, "mrv2.TimeRange.end_time_inclusive"]], "extended_by() (mrv2.timerange method)": [[8, "mrv2.TimeRange.extended_by"]], "finishes() (mrv2.timerange method)": [[8, "mrv2.TimeRange.finishes"]], "from_frames() (mrv2.rationaltime static method)": [[8, "mrv2.RationalTime.from_frames"]], "from_seconds() (mrv2.rationaltime static method)": [[8, "mrv2.RationalTime.from_seconds"]], "from_time_string() (mrv2.rationaltime static method)": [[8, "mrv2.RationalTime.from_time_string"]], "from_timecode() (mrv2.rationaltime static method)": [[8, "mrv2.RationalTime.from_timecode"]], "get() (mrv2.path method)": [[8, "mrv2.Path.get"]], "getbasename() (mrv2.path method)": [[8, "mrv2.Path.getBaseName"]], "getdirectory() (mrv2.path method)": [[8, "mrv2.Path.getDirectory"]], "getextension() (mrv2.path method)": [[8, "mrv2.Path.getExtension"]], "getnumber() (mrv2.path method)": [[8, "mrv2.Path.getNumber"]], "getpadding() (mrv2.path method)": [[8, "mrv2.Path.getPadding"]], "inoutrange (mrv2.filemedia attribute)": [[8, "mrv2.FileMedia.inOutRange"]], "intersects() (mrv2.timerange method)": [[8, "mrv2.TimeRange.intersects"]], "isabsolute() (mrv2.path method)": [[8, "mrv2.Path.isAbsolute"]], "isempty() (mrv2.path method)": [[8, "mrv2.Path.isEmpty"]], "is_invalid_time() (mrv2.rationaltime method)": [[8, "mrv2.RationalTime.is_invalid_time"]], "is_valid_timecode_rate() (mrv2.rationaltime static method)": [[8, "mrv2.RationalTime.is_valid_timecode_rate"]], "loop (mrv2.filemedia attribute)": [[8, "mrv2.FileMedia.loop"]], "meets() (mrv2.timerange method)": [[8, "mrv2.TimeRange.meets"]], "mrv2": [[8, "module-mrv2"]], "mute (mrv2.filemedia attribute)": [[8, "mrv2.FileMedia.mute"]], "nearest_valid_timecode_rate() (mrv2.rationaltime static method)": [[8, "mrv2.RationalTime.nearest_valid_timecode_rate"]], "overlaps() (mrv2.timerange method)": [[8, "mrv2.TimeRange.overlaps"]], "path (mrv2.filemedia attribute)": [[8, "mrv2.FileMedia.path"]], "playback (mrv2.filemedia attribute)": [[8, "mrv2.FileMedia.playback"]], "range_from_start_end_time() (mrv2.timerange static method)": [[8, "mrv2.TimeRange.range_from_start_end_time"]], "range_from_start_end_time_inclusive() (mrv2.timerange static method)": [[8, "mrv2.TimeRange.range_from_start_end_time_inclusive"]], "rescaled_to() (mrv2.rationaltime method)": [[8, "mrv2.RationalTime.rescaled_to"]], "timerange (mrv2.filemedia attribute)": [[8, "mrv2.FileMedia.timeRange"]], "to_frames() (mrv2.rationaltime method)": [[8, "mrv2.RationalTime.to_frames"]], "to_seconds() (mrv2.rationaltime method)": [[8, "mrv2.RationalTime.to_seconds"]], "to_time_string() (mrv2.rationaltime method)": [[8, "mrv2.RationalTime.to_time_string"]], "to_timecode() (mrv2.rationaltime method)": [[8, "mrv2.RationalTime.to_timecode"]], "value_rescaled_to() (mrv2.rationaltime method)": [[8, "mrv2.RationalTime.value_rescaled_to"]], "videolayer (mrv2.filemedia attribute)": [[8, "mrv2.FileMedia.videoLayer"]], "volume (mrv2.filemedia attribute)": [[8, "mrv2.FileMedia.volume"]], "add_clip() (in module mrv2.playlist)": [[9, "mrv2.playlist.add_clip"]], "list() (in module mrv2.playlist)": [[9, "mrv2.playlist.list"]], "mrv2.playlist": [[9, "module-mrv2.playlist"]], "save() (in module mrv2.playlist)": [[9, "mrv2.playlist.save"]], "select() (in module mrv2.playlist)": [[9, "mrv2.playlist.select"]], "plugin (class in mrv2.plugin)": [[10, "mrv2.plugin.Plugin"]], "active() (mrv2.plugin.plugin method)": [[10, "mrv2.plugin.Plugin.active"]], "menus() (mrv2.plugin.plugin method)": [[10, "mrv2.plugin.Plugin.menus"]], "mrv2.plugin": [[10, "module-mrv2.plugin"]], "memory() (in module mrv2.settings)": [[13, "mrv2.settings.memory"]], "mrv2.settings": [[13, "module-mrv2.settings"]], "readahead() (in module mrv2.settings)": [[13, "mrv2.settings.readAhead"]], "readbehind() (in module mrv2.settings)": [[13, "mrv2.settings.readBehind"]], "setmemory() (in module mrv2.settings)": [[13, "mrv2.settings.setMemory"]], "setreadahead() (in module mrv2.settings)": [[13, "mrv2.settings.setReadAhead"]], "setreadbehind() (in module mrv2.settings)": [[13, "mrv2.settings.setReadBehind"]], "filesequenceaudio (class in mrv2.timeline)": [[14, "mrv2.timeline.FileSequenceAudio"]], "loop (class in mrv2.timeline)": [[14, "mrv2.timeline.Loop"]], "playback (class in mrv2.timeline)": [[14, "mrv2.timeline.Playback"]], "timermode (class in mrv2.timeline)": [[14, "mrv2.timeline.TimerMode"]], "frame() (in module mrv2.timeline)": [[14, "mrv2.timeline.frame"]], "inoutrange() (in module mrv2.timeline)": [[14, "mrv2.timeline.inOutRange"]], "loop() (in module mrv2.timeline)": [[14, "mrv2.timeline.loop"]], "mrv2.timeline": [[14, "module-mrv2.timeline"]], "name (mrv2.timeline.filesequenceaudio property)": [[14, "mrv2.timeline.FileSequenceAudio.name"]], "name (mrv2.timeline.loop property)": [[14, "mrv2.timeline.Loop.name"]], "name (mrv2.timeline.playback property)": [[14, "mrv2.timeline.Playback.name"]], "name (mrv2.timeline.timermode property)": [[14, "mrv2.timeline.TimerMode.name"]], "playbackwards() (in module mrv2.timeline)": [[14, "mrv2.timeline.playBackwards"]], "playforwards() (in module mrv2.timeline)": [[14, "mrv2.timeline.playForwards"]], "seconds() (in module mrv2.timeline)": [[14, "mrv2.timeline.seconds"]], "seek() (in module mrv2.timeline)": [[14, "mrv2.timeline.seek"]], "setin() (in module mrv2.timeline)": [[14, "mrv2.timeline.setIn"]], "setinoutrange() (in module mrv2.timeline)": [[14, "mrv2.timeline.setInOutRange"]], "setloop() (in module mrv2.timeline)": [[14, "mrv2.timeline.setLoop"]], "setout() (in module mrv2.timeline)": [[14, "mrv2.timeline.setOut"]], "stop() (in module mrv2.timeline)": [[14, "mrv2.timeline.stop"]], "time() (in module mrv2.timeline)": [[14, "mrv2.timeline.time"]], "timerange() (in module mrv2.timeline)": [[14, "mrv2.timeline.timeRange"]], "drawmode (class in mrv2.usd)": [[15, "mrv2.usd.DrawMode"]], "renderoptions (class in mrv2.usd)": [[15, "mrv2.usd.RenderOptions"]], "complexity (mrv2.usd.renderoptions attribute)": [[15, "mrv2.usd.RenderOptions.complexity"]], "diskcachebytecount (mrv2.usd.renderoptions attribute)": [[15, "mrv2.usd.RenderOptions.diskCacheByteCount"]], "drawmode (mrv2.usd.renderoptions attribute)": [[15, "mrv2.usd.RenderOptions.drawMode"]], "enablelighting (mrv2.usd.renderoptions attribute)": [[15, "mrv2.usd.RenderOptions.enableLighting"]], "mrv2.usd": [[15, "module-mrv2.usd"]], "renderoptions() (in module mrv2.usd)": [[15, "mrv2.usd.renderOptions"]], "renderwidth (mrv2.usd.renderoptions attribute)": [[15, "mrv2.usd.RenderOptions.renderWidth"]], "setrenderoptions() (in module mrv2.usd)": [[15, "mrv2.usd.setRenderOptions"]], "stagecachecount (mrv2.usd.renderoptions attribute)": [[15, "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/io", "python_api/math", "python_api/media", "python_api/mrv2", "python_api/playlist", "python_api/plug-ins", "python_api/plug-ins-system", "python_api/pyFLTK", "python_api/settings", "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/io.rst", "python_api/math.rst", "python_api/media.rst", "python_api/mrv2.rst", "python_api/playlist.rst", "python_api/plug-ins.rst", "python_api/plug-ins-system.rst", "python_api/pyFLTK.rst", "python_api/settings.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": ["Welcome to mrv2\u2019s documentation!", "annotations module", "cmd module", "image module", "Python API", "io Module", "math module", "media module", "mrv2 module", "playlist module", "plugin module", "Plug-in System", "pyFLTK", "settings module", "timeline module", "usd module", "Getting Started", "Hotkeys", "mrv2 User Guide", "The mrv2 Interface", "Notes and Annotations", "Introduction", "Panels", "V\u00eddeo Playback", "Preferences", "Settings", "Video Tutorials"], "terms": {"user": [0, 16, 19, 20, 21, 23], "guid": [0, 21], "introduct": [0, 18], "get": [0, 2, 8, 15, 18, 19, 20, 23], "start": [0, 8, 18, 20, 21, 22, 23], "The": [0, 8, 16, 17, 18, 20, 21, 22, 23, 25], "interfac": [0, 18, 21], "panel": [0, 16, 17, 18, 20, 21, 23, 25], "note": [0, 1, 2, 18, 21, 22, 24], "annot": [0, 2, 4, 5, 17, 18, 21, 23], "v\u00eddeo": [0, 18], "playback": [0, 2, 4, 8, 14, 16, 17, 18, 21], "set": [0, 2, 4, 7, 14, 15, 16, 17, 18, 19, 20, 21, 23, 24], "hotkei": [0, 18, 19, 20, 21, 22, 24, 25], "prefer": [0, 2, 16, 17, 18, 19, 20, 22], "video": [0, 3, 8, 18, 22, 23], "tutori": [0, 18], "python": [0, 10, 11, 12, 17, 18, 21], "api": [0, 21, 22], "modul": [0, 4, 12], "cmd": [0, 4], "imag": [0, 2, 4, 16, 17, 19, 20, 21, 22, 23], "io": [0, 2, 4, 12], "math": [0, 3, 4, 7], "media": [0, 2, 4, 8, 17, 18, 19, 20, 21, 23], "playlist": [0, 4, 17, 18, 21, 23], "plugin": [0, 4, 11], "plug": [0, 4, 10], "system": [0, 4, 14, 16, 17, 21, 24], "timelin": [0, 2, 4, 8, 17, 18, 20, 21, 22, 23], "usd": [0, 4, 17, 18, 21], "index": [0, 7, 9], "search": [0, 16, 17, 24], "page": 0, "contain": [1, 3, 6, 7, 8, 9, 10, 13, 14, 15, 19], "all": [1, 2, 3, 6, 7, 9, 10, 13, 14, 15, 16, 17, 19, 20, 21, 22, 24], "function": [1, 8, 9, 13, 14, 17], "class": [1, 3, 5, 6, 7, 8, 9, 10, 11, 14, 15], "relat": [1, 3, 7, 9, 10, 14, 15], "annotationss": 1, "mrv2": [1, 2, 3, 4, 5, 6, 7, 9, 10, 11, 12, 13, 14, 15, 17, 20, 22, 23, 24, 25, 26], "add": [1, 3, 4, 9, 11, 20, 21, 22], "arg": [1, 8, 9, 14], "kwarg": [1, 8, 9, 14], "overload": [1, 8, 9, 14], "time": [1, 4, 8, 14, 16, 19, 22, 24], "rationaltim": [1, 4, 8, 14], "str": [1, 2, 3, 8, 9], "none": [1, 2, 3, 5, 7, 9, 13, 14, 19, 24], "current": [1, 2, 7, 8, 9, 14, 16, 17, 18, 19, 20, 22], "clip": [1, 3, 8, 9, 16, 17, 19, 21, 22, 23], "certain": [1, 19], "frame": [1, 4, 8, 14, 16, 17, 18, 20, 21, 22], "int": [1, 2, 3, 5, 6, 7, 8, 9, 13, 14, 15], "second": [1, 2, 4, 8, 13, 14, 19, 20, 22, 23, 24, 25], "float": [1, 2, 3, 5, 6, 7, 8, 13, 14, 15, 17, 19, 24], "command": [2, 11, 17, 18], "us": [2, 8, 10, 11, 16, 19, 20, 21, 22, 23, 25, 26], "run": [2, 10, 16, 22], "main": [2, 11, 16, 17, 19, 24], "displai": [2, 3, 17, 20, 21, 22, 23], "compar": [2, 4, 7, 17, 18, 21], "lut": [2, 3, 22, 24], "option": [2, 3, 5, 7, 10, 15, 16, 19, 22], "close": [2, 4, 7, 16, 17, 21, 22], "item": [2, 7, 8, 9, 16, 20, 21, 22], "1": [2, 3, 8, 12, 19], "file": [2, 7, 8, 9, 11, 16, 17, 18, 19, 20, 21], "closeal": [2, 4, 7], "itema": 2, "itemb": 2, "mode": [2, 7, 14, 15, 16, 17, 18, 19, 20, 21], "comparemod": [2, 4, 7], "wipe": [2, 7, 17, 21, 22], "2": [2, 6, 8], "two": [2, 19, 22], "compareopt": [2, 4, 7], "return": [2, 7, 8, 10, 11, 14, 17], "displayopt": [2, 3, 4], "environmentmapopt": [2, 3, 4], "environ": [2, 3, 11, 17, 18, 19, 24], "map": [2, 3, 17, 18], "getlay": [2, 4], "list": [2, 4, 7, 9, 11, 17, 19, 22, 24, 26], "layer": [2, 4, 7, 8, 19, 22], "gui": 2, "imageopt": [2, 3, 4], "ismut": [2, 4], "bool": [2, 3, 5, 7, 8, 10, 15], "true": [2, 8, 10], "audio": [2, 8, 14, 19, 21, 22], "i": [2, 8, 10, 16, 17, 18, 19, 20, 22, 23, 24, 25], "mute": [2, 8, 19], "lutopt": [2, 3, 4], "oepnsess": [], "open": [2, 4, 16, 17, 21, 22, 24], "session": [2, 17, 21, 22], "filenam": [2, 3, 9, 14, 22], "audiofilenam": 2, "save": [2, 4, 5, 9, 16, 17, 19, 20, 21, 22], "saveopt": [2, 4, 5], "fals": [2, 10], "ffmpegprofil": [2, 5], "exrcompress": [2, 5], "zip": [2, 5], "zipcompressionlevel": [2, 5], "4": [2, 6], "dwacompressionlevel": [2, 5], "45": 2, "movi": [2, 16, 17, 19, 20, 21, 24], "sequenc": [2, 16, 17, 19, 24], "from": [2, 8, 10, 11, 12, 16, 19, 20, 21, 22, 23, 24], "front": 2, "savepdf": [2, 4], "pdf": [2, 17, 21, 22], "document": [2, 16, 17, 21, 24, 26], "savesess": [2, 4], "savesessiona": [2, 4], "setcompareopt": [2, 4], "setdisplayopt": [2, 4], "setenvironmentmapopt": [2, 4], "setimageopt": [2, 4], "setlutopt": [2, 4], "setmut": [2, 4], "setstereo3dopt": [2, 4], "stereo3dopt": [2, 3, 4], "stereo": [2, 3, 7, 17, 18], "3d": [2, 3, 17, 18], "setvolum": [2, 4], "volum": [2, 4, 8, 19], "updat": [2, 4], "call": [2, 24], "fl": 2, "check": 2, "number": [2, 8, 21, 22, 23, 24], "elaps": 2, "enum": [3, 7, 15], "control": [3, 14, 17, 20, 21, 22, 24, 25], "alphablend": [3, 4], "member": [3, 5, 7, 14, 15], "straight": [3, 19], "premultipli": [3, 19], "channel": [3, 4, 17, 21, 22], "color": [3, 4, 17, 18, 19, 21, 23], "red": [3, 16, 17, 19, 20, 24], "green": [3, 17, 19, 20], "blue": [3, 16, 17, 19], "alpha": [3, 17, 22], "environmentmaptyp": [3, 4], "spheric": [3, 22], "cubic": [3, 22], "imagefilt": [3, 4], "nearest": [3, 19], "linear": [3, 19], "inputvideolevel": [3, 4], "fromfil": 3, "fullrang": 3, "legalrang": 3, "lutord": [3, 4], "postcolorconfig": 3, "precolorconfig": 3, "videolevel": [3, 4], "yuvcoeffici": [3, 4], "rec709": 3, "bt2020": 3, "stereo3dinput": [3, 4], "stereo3doutput": [3, 4], "anaglyph": [3, 22], "scanlin": [3, 22], "column": 3, "checkerboard": [3, 22], "opengl": [3, 21], "mirror": [3, 4], "x": [3, 6, 7, 17], "flip": [3, 17], "y": [3, 6, 7, 17, 19, 24], "valu": [3, 7, 8, 10, 19, 22], "enabl": [3, 15, 21], "level": [3, 4, 5, 22], "vector3f": [3, 4, 6], "bright": 3, "chang": [3, 17, 19, 20, 21, 22, 24], "contrast": [3, 22], "satur": [3, 21, 22], "tint": [3, 21, 22], "between": [3, 19, 21, 22, 23, 24], "0": [3, 8, 16, 18, 19, 22, 25], "invert": [3, 22], "inlow": 3, "In": [3, 8, 11, 17, 19, 22, 23, 24, 25, 26], "low": 3, "inhigh": 3, "high": [3, 21, 23], "gamma": [3, 17, 19, 21, 22], "outlow": 3, "out": [3, 8, 14, 17, 19, 20, 21, 22, 23, 24], "outhigh": 3, "filter": [3, 17, 22, 24], "minifi": [3, 17], "magnifi": [3, 17], "softclip": [3, 4], "soft": [3, 20, 22], "both": [3, 20], "order": [3, 16, 22], "transform": [3, 24], "blend": 3, "algorithm": 3, "environmentmap": 3, "type": [3, 16, 20, 22, 23], "horizontalapertur": 3, "horizont": [3, 7, 17, 19, 21, 22, 23], "apertur": 3, "verticalapertur": 3, "vertic": [3, 7, 17, 19, 21, 22], "focallength": 3, "focal": 3, "length": 3, "rotatex": 3, "rotat": [3, 7, 22], "rotatei": 3, "subdivisionx": 3, "subdivis": 3, "subdivisioni": 3, "spin": 3, "stereo3d": 3, "input": [3, 17, 19, 22], "stereoinput": 3, "output": [3, 22], "stereooutput": 3, "eyesepar": 3, "separ": [3, 21], "left": [3, 16, 17, 19, 20, 22, 23], "right": [3, 16, 17, 18, 19, 20, 23, 24], "ey": 3, "swapey": 3, "swap": 3, "profil": [4, 5], "compress": [4, 5, 23], "vector2i": [4, 6], "vector2f": [4, 6, 7], "vector4f": [4, 6], "afil": [4, 7], "aindex": [4, 7], "bindex": [4, 7], "bfile": [4, 7], "activefil": [4, 7], "clearb": [4, 7], "firstvers": [4, 7], "lastvers": [4, 7], "nextvers": [4, 7], "previousvers": [4, 7], "seta": [4, 7], "setb": [4, 7], "setlay": [4, 7], "setstereo": [4, 7], "toggleb": [4, 7], "path": [2, 4, 8, 9, 11, 16, 18, 22], "timerang": [4, 8, 14], "filemedia": [4, 7, 8, 9], "add_clip": [4, 9], "select": [2, 4, 9, 14, 16, 17, 19, 20, 21, 22, 23, 24], "ins": 4, "memori": [4, 13, 22, 25], "readahead": [4, 13], "readbehind": [4, 13], "setmemori": [4, 13], "setreadahead": [4, 13], "setreadbehind": [4, 13], "filesequenceaudio": [4, 14], "loop": [4, 8, 14, 16, 17, 18, 19, 21], "timermod": [4, 14], "inoutrang": [4, 8, 14], "playbackward": [4, 14], "playforward": [4, 14], "seek": [4, 14, 21], "setin": [4, 14], "setinoutrang": [4, 14], "setloop": [4, 14], "setout": [4, 14], "stop": [4, 14, 17, 19, 21, 23], "renderopt": [4, 15], "setrenderopt": [4, 15], "drawmod": [4, 15], "h264": 5, "prore": 5, "prores_proxi": 5, "prores_lt": 5, "prores_hq": 5, "prores_4444": 5, "prores_xq": 5, "rle": 5, "piz": 5, "pxr24": 5, "b44": 5, "b44a": 5, "dwaa": 5, "dwab": 5, "ffmpeg": 5, "openexr": [5, 19], "": [5, 8, 16, 17, 19, 20, 21, 22, 23, 24], "dwa": [5, 23], "vector": [6, 20], "integ": [6, 8], "3": [6, 12], "z": [6, 17], "w": [6, 17], "A": [7, 10, 19, 20, 21, 22, 24], "b": [7, 17, 19, 21, 22], "activ": [7, 10, 21, 23], "clear": [7, 17], "first": [7, 8, 16, 17, 19, 23, 24], "version": [7, 16, 17, 18, 26], "last": [7, 8, 17, 19, 23, 24], "next": [7, 17, 19, 20, 22, 23, 24], "previou": [7, 17, 19, 20, 22, 23, 24], "new": [7, 8, 10, 11, 12, 19, 20, 21, 22, 24], "toggl": [7, 17, 19, 23, 24], "overlai": [7, 17, 21, 22, 24], "differ": [7, 8, 16, 17, 19, 21, 22, 24], "tile": [7, 17, 21, 22], "comparison": [7, 21, 22], "over": [7, 19, 20], "wipecent": 7, "center": [7, 17, 19, 24], "wiperot": 7, "hold": [8, 19, 24], "self": [8, 10, 11], "idx": 8, "directoru": 8, "getbasenam": 8, "getdirectori": 8, "getextens": 8, "getnumb": 8, "getpad": 8, "isabsolut": 8, "isempti": 8, "repres": 8, "measur": 8, "rt": 8, "rate": [8, 16, 18, 19, 21], "It": [8, 19, 22, 24], "can": [8, 12, 16, 17, 19, 20, 21, 22, 23, 24, 25], "rescal": [8, 24], "anoth": [8, 24], "almost_equ": 8, "other": [8, 12, 16, 21, 22, 23, 24], "delta": 8, "static": 8, "duration_from_start_end_tim": 8, "start_tim": 8, "end_time_exclus": 8, "comput": [8, 21, 23], "durat": 8, "sampl": 8, "exclud": 8, "thi": [8, 11, 16, 17, 19, 20, 21, 22, 23, 24, 26], "same": [8, 16, 22], "distanc": 8, "For": [8, 12, 16, 19, 21, 22, 23], "exampl": [8, 10, 21, 22, 24], "10": [8, 16], "15": 8, "5": 8, "result": [8, 23], "duration_from_start_end_time_inclus": 8, "end_time_inclus": 8, "includ": [8, 21], "6": [8, 19], "from_fram": 8, "turn": 8, "object": 8, "from_second": 8, "from_time_str": 8, "time_str": 8, "convert": 8, "microsecond": 8, "string": 8, "hh": 8, "mm": 8, "ss": 8, "where": [8, 11, 22, 24], "an": [2, 8, 16, 19, 20, 21, 22, 24], "decim": [8, 24], "from_timecod": 8, "timecod": [8, 19, 24], "is_invalid_tim": 8, "invalid": 8, "consid": 8, "ar": [8, 19, 20, 21, 22, 23, 24], "nan": 8, "less": [8, 17], "than": [8, 11, 20, 23, 24], "equal": 8, "zero": 8, "is_valid_timecode_r": 8, "valid": 8, "nearest_valid_timecode_r": 8, "ha": [8, 19, 21, 22, 23, 24], "least": 8, "given": [8, 16, 20], "rescaled_to": 8, "new_rat": 8, "to_fram": 8, "base": [8, 20, 22, 25], "to_second": 8, "to_time_str": 8, "to_timecod": 8, "drop_fram": 8, "value_rescaled_to": 8, "rang": [8, 14, 19, 22], "encod": [8, 16], "mean": [8, 22, 23], "portion": [8, 22], "befor": [8, 22, 23], "epsilon_": 8, "6041666666666666e": 8, "06": 8, "end": [8, 17, 23], "strictli": 8, "preced": [8, 19], "convers": 8, "would": [8, 16, 24], "meet": 8, "begin": 8, "clamp": 8, "accord": 8, "bound": 8, "argument": 8, "anteced": 8, "duration_extended_bi": 8, "outsid": [8, 20], "If": [8, 10, 16, 19, 20, 22, 24], "becaus": 8, "data": [8, 17, 22, 23], "14": 8, "24": 8, "9": 8, "word": [8, 16], "even": [8, 11, 21, 22, 24], "fraction": 8, "extended_bi": 8, "construct": 8, "one": [8, 17, 19, 21, 22, 23, 24], "extend": [8, 20], "finish": 8, "intersect": 8, "OR": 8, "overlap": 8, "range_from_start_end_tim": 8, "creat": [8, 11, 12, 16, 20, 21, 22, 26], "exclus": 8, "end_tim": 8, "have": [8, 11, 16, 19, 20, 21, 22, 24], "range_from_start_end_time_inclus": 8, "inclus": 8, "audiopath": 8, "ani": [8, 12, 16, 19, 20, 21, 22, 24], "state": [8, 21], "currenttim": 8, "videolay": 8, "audiooffset": 8, "offset": 8, "edl": [9, 22], "otio": [2, 9, 16, 21, 24], "rel": 9, "fileitem": 9, "filemodelitem": 9, "playlistindex": 9, "must": [11, 22], "overriden": 10, "like": [10, 12, 16, 19, 23, 24], "import": [10, 11, 12, 21, 22, 24], "demoplugin": 10, "defin": [10, 11, 21], "your": [10, 16, 19, 20, 21, 22, 23, 24, 25], "own": [10, 20, 21], "variabl": [10, 11, 19, 24], "here": [10, 21, 24], "def": [10, 11], "__init__": [10, 11], "super": [10, 11], "pass": 11, "method": [10, 21], "callback": 10, "print": [10, 11, 19, 22, 24], "hello": [10, 11], "whether": [10, 19, 22, 24], "dictionari": 10, "menu": [10, 11, 17, 18, 20, 21], "entri": [10, 11, 21], "kei": [10, 17, 19, 20, 21, 22, 24], "plai": [14, 16, 17, 19, 21, 23, 24], "forward": [14, 17, 19, 23], "default": [10, 16, 17, 18, 19, 22, 25], "dict": 10, "nem": 10, "support": [11, 12, 16, 19, 21, 24], "allow": [11, 16, 17, 19, 20, 21, 22, 24, 25], "you": [11, 12, 16, 17, 19, 20, 21, 22, 23, 24, 25], "actual": [11, 20], "go": [11, 12, 16, 17, 23, 24], "farther": 11, "what": [11, 18, 19, 24], "consol": 11, "To": [11, 16, 19, 20], "mrv2_python_plugin": 11, "colon": 11, "linux": [11, 16, 24], "maco": [11, 16], "semi": 11, "window": [11, 12, 16, 17, 18, 22], "resid": 11, "py": 11, "basic": 11, "structur": 11, "helloplugin": 11, "retriev": 13, "cach": [13, 15, 18, 22, 25], "gigabyt": [13, 22, 25], "read": [13, 22, 23, 25], "ahead": [13, 22, 25], "behind": [13, 22, 25], "arg0": [13, 14], "basenam": 14, "directori": [14, 16, 17, 24], "properti": 14, "name": [14, 22], "onc": [12, 14, 16, 17, 19, 20, 23], "pingpong": 14, "revers": [14, 21], "backward": [14, 17, 19, 23], "univers": [15, 19, 21, 24], "scene": [15, 21, 24], "descript": [15, 21, 24], "render": [15, 18, 20], "point": [15, 17, 19, 22, 23], "wirefram": 15, "wireframeonsurfac": 15, "shadedflat": 15, "shadedsmooth": 15, "geomonli": 15, "geomflat": 15, "geomsmooth": 15, "renderwidth": 15, "width": 15, "complex": [15, 24], "model": 15, "draw": [15, 17, 18, 19, 21, 22, 23, 24], "enablelight": 15, "light": [15, 20, 24], "stagecachecount": 15, "stage": 15, "count": 15, "diskcachebytecount": 15, "disk": [15, 21, 23], "byte": 15, "pleas": 16, "refer": [16, 26], "github": 16, "http": [12, 16, 26], "com": [16, 26], "ggarra13": 16, "On": [16, 17, 20, 21], "dmg": 16, "icon": [16, 19], "applic": [16, 21], "alreadi": 16, "we": [16, 24], "recommend": [16, 24], "overwrit": 16, "notar": 16, "so": [16, 19, 20, 22, 24], "when": [16, 19, 20, 22, 23, 24], "abl": [16, 23], "warn": 16, "secur": 16, "wa": [16, 24], "download": [16, 24], "internet": 16, "avoid": 16, "need": [16, 19, 20, 21, 22, 23, 24], "finder": 16, "ctrl": [16, 17, 20], "mous": [16, 18, 24], "click": [16, 19, 20, 22], "That": [16, 24], "bring": [16, 22, 24], "up": [16, 17, 19, 21, 22, 23, 24], "button": [12, 16, 18, 19, 23, 24], "onli": [16, 17, 20, 22], "do": [16, 20, 21, 24], "chrome": 16, "also": [16, 19, 20, 22, 23], "protect": 16, "mai": [16, 22, 24, 26], "usual": [16, 19, 24], "archiv": 16, "make": [16, 19, 20, 22, 24], "sure": [16, 22], "arrow": [16, 17, 19, 20, 21, 23], "anywai": 16, "cannot": 16, "ex": 16, "directli": [16, 19, 20, 21], "explor": 16, "should": [16, 20, 22, 23], "Then": 16, "popup": [16, 19, 22, 24], "box": [16, 20, 21], "tell": 16, "smartscreen": 16, "prevent": 16, "unknown": 16, "aplic": 16, "place": [16, 20, 22], "pc": 16, "risk": 16, "more": [16, 17, 19, 21, 22], "inform": [12, 16, 18, 19], "text": [16, 17, 20, 21, 22, 24], "sai": [16, 19], "similar": [16, 22], "appear": [16, 19, 22], "follow": [16, 19, 22], "standard": 16, "instruct": 16, "rpm": 16, "deb": 16, "packag": 16, "requir": [16, 23], "sudo": 16, "permiss": 16, "debian": 16, "ubuntu": 16, "etc": [16, 21, 22, 23], "dpkg": 16, "v0": [16, 18], "7": 16, "amd64": 16, "tar": 16, "gz": 16, "hat": 16, "rocki": 16, "just": [16, 19, 20, 22], "shell": 16, "symlink": 16, "execut": [16, 21, 22], "usr": 16, "bin": 16, "associ": 16, "extens": 16, "easi": [16, 20, 21], "desktop": [16, 21, 22, 24], "choos": [16, 19, 24], "lack": 16, "organ": [16, 19], "uncompress": 16, "xf": 16, "folder": [16, 22, 24], "direcori": 16, "sh": 16, "script": [16, 21], "subdirectori": 16, "while": [16, 20, 22], "termin": [16, 24], "provid": [16, 19, 20, 21], "locat": [16, 22], "wai": [16, 20, 21], "recurs": 16, "thei": [16, 20, 21, 22, 24, 26], "ad": [16, 17, 18, 21, 22], "request": [16, 18], "By": [16, 19], "custom": [16, 19, 21, 24], "howev": 16, "nativ": [16, 21], "chooser": 16, "which": [16, 17, 19, 23, 24], "platform": 16, "might": 16, "o": [16, 17, 19, 21, 22, 23, 24], "won": 16, "t": [16, 17, 19, 22, 23, 24], "due": 16, "being": 16, "regist": [16, 22], "appl": 16, "either": [16, 22], "want": [16, 19, 20, 22, 23], "previous": 16, "conveni": 16, "power": [16, 17], "familiar": 16, "syntax": 16, "variou": 16, "mix": 16, "three": [16, 19, 20], "test": 16, "mov": [16, 21], "0001": 16, "exr": [16, 21, 22, 23], "edit": [16, 17, 19, 21], "back": [16, 21, 23], "natur": [16, 24], "respect": 16, "e": [16, 17, 19], "g": [16, 17, 19], "seri": 16, "jpeg": 16, "tga": [16, 21], "24fp": 16, "adjust": [16, 21, 23], "dpx": 16, "speed": [16, 17, 23], "taken": 16, "metadata": [16, 19], "avail": [16, 19, 21, 22, 24, 25], "made": [16, 19], "visibl": 16, "through": [12, 16, 21, 23, 24], "look": [12, 16], "f4": [16, 17, 22], "With": [16, 19, 20, 24], "see": [16, 21, 23], "behavior": [16, 18, 22, 24, 25], "auto": [16, 19], "come": [17, 19, 22], "assign": 17, "shift": [17, 19, 20, 23], "alt": [17, 19], "As": [17, 20], "quit": [17, 26], "program": 17, "escap": [17, 20], "h": [17, 19], "fit": [17, 19], "screen": [17, 20, 21, 23], "f": [17, 19], "resiz": 17, "textur": 17, "safe": [17, 21], "area": [17, 18, 20, 21], "d": 17, "c": [17, 24], "r": [17, 19], "step": [17, 19, 21, 23], "fp": [17, 18, 22], "j": 17, "direct": 17, "space": [17, 19], "down": [17, 19, 23, 24], "k": 17, "home": [17, 19, 23, 24], "ping": [17, 19, 23], "pong": [17, 19, 23], "pageup": 17, "pagedown": 17, "limit": [17, 23], "cut": 17, "copi": [17, 22, 24], "past": [17, 20], "v": [17, 26], "insert": 17, "slice": 17, "remov": 17, "undo": [17, 20], "redo": [17, 20], "bar": [17, 18, 20, 23], "f1": [17, 19], "top": [17, 18], "pixel": [17, 18, 19, 20, 21], "f2": [17, 19], "f3": [17, 19], "statu": [17, 19, 23, 24], "tool": [17, 19, 20, 21, 22], "dock": [17, 19, 22], "f7": [17, 19, 20], "full": [17, 19, 21, 22, 24], "f11": [17, 19], "present": [17, 19, 20, 22], "f12": [17, 19], "secondari": 17, "network": [17, 18], "n": [17, 24], "u": 17, "thumbnail": [17, 19], "transit": 17, "marker": 17, "reset": [17, 19, 22, 24], "gain": [17, 19, 21], "exposur": [17, 19, 21], "ocio": [17, 18, 19, 21, 22], "view": [17, 18, 21, 22, 23], "scrub": [17, 19, 21], "eras": [17, 20, 21], "rectangl": [17, 24], "circl": [17, 21], "pen": [17, 21], "size": [17, 19, 21, 23], "switch": [17, 19, 22, 23, 24], "black": [17, 19, 24], "background": [17, 23, 24], "hud": 17, "One": 17, "p": 17, "info": 17, "f5": 17, "f6": [17, 22], "f8": 17, "devic": 17, "f9": [17, 22, 25], "histogram": [17, 18], "vectorscop": [17, 18], "waveform": [17, 19], "f10": [17, 24], "log": [17, 18, 24], "about": [12, 17, 22], "8": [18, 19], "overview": 18, "build": [18, 21], "instal": 18, "launch": 18, "load": [18, 21, 22, 23], "drag": [18, 19, 20, 21, 22, 24], "drop": [18, 21], "browser": [18, 21, 22, 24], "recent": 18, "line": [18, 21], "hide": [18, 24], "show": [18, 22], "ui": [18, 21], "element": [18, 22], "divid": [18, 22], "context": 18, "sketch": [18, 21, 22], "modifi": [18, 19], "navig": [18, 21], "specif": 18, "languag": 18, "posit": [18, 21], "toolbar": [18, 19, 23], "error": [18, 19, 22], "hidden": [19, 20], "shown": [19, 20, 24], "third": 19, "viewport": [19, 20, 22], "fourth": 19, "under": [19, 24], "cursor": 19, "final": [19, 22], "let": 19, "know": [19, 24], "action": [19, 23, 24], "some": [12, 19, 21, 24], "shortcut": [19, 23, 24], "topbar": 19, "fullscreen": 19, "These": [19, 24, 26], "exit": 19, "alwai": [19, 20, 23], "configur": [19, 22, 24, 25], "closer": 19, "inspect": [19, 21], "middl": [19, 22], "pan": [19, 21], "within": [19, 21], "keyboard": [19, 20, 24], "perform": [19, 21], "centr": 19, "zoom": [19, 20, 21], "mousewheel": [19, 22, 24], "confort": 19, "factor": 19, "pulldown": 19, "without": [19, 20, 24], "particular": 19, "percentag": 19, "2x": 19, "pull": 19, "slider": 19, "driven": [19, 21], "opencolorio": 19, "gama": 19, "deriv": 19, "specifi": [19, 22], "cg": 19, "config": [19, 22], "ship": 19, "nuke": 19, "studio": 19, "ones": 19, "take": [19, 22], "scale": [19, 21], "quick": [19, 20], "track": [19, 21, 22], "pictur": 19, "immedi": 19, "how": [19, 20, 22, 23, 24, 25], "absolut": 19, "digit": [19, 24], "pretti": 19, "don": [19, 22, 24], "much": [19, 22, 25], "explan": 19, "There": [19, 20, 24], "paus": 19, "jump": [19, 20, 21], "per": [19, 23, 24], "desir": 19, "quickli": [19, 21, 22], "equival": 19, "press": 19, "bottom": [19, 22], "speaker": 19, "behaviour": [19, 23], "film": 19, "crop": 19, "aspect": [19, 21], "enter": [19, 20, 22, 23], "head": 19, "lot": 19, "independ": 19, "dark": 19, "grai": 19, "empti": [19, 20], "instead": [19, 22, 24, 25], "legal": 19, "handl": [19, 21], "logic": 19, "bigger": 19, "smaller": 19, "featur": [20, 21, 22], "tag": 20, "comment": 20, "record": [20, 22], "share": [20, 21, 24], "written": 20, "visual": [20, 21], "feedback": [20, 21], "colleagu": [20, 21], "bookmark": [20, 21], "mark": 20, "hit": 20, "twice": [20, 24], "stroke": [20, 21], "shape": [20, 21], "viewer": [20, 21, 22, 23, 24], "automat": [20, 22, 24], "hard": [20, 22], "depend": 20, "attach": [20, 22], "ghost": [20, 22], "mani": [20, 23, 24], "happen": [20, 22], "remain": [20, 24], "content": 20, "delet": 20, "partial": 20, "total": [20, 21], "presenc": 20, "indic": [20, 23], "yellow": 20, "veric": 20, "grip": 20, "caption": [20, 21], "onto": 20, "abov": [20, 22, 24], "rather": 20, "rasteris": 20, "fly": 20, "graphic": [20, 21, 23], "card": [20, 23], "brush": [20, 21, 22], "boundari": 20, "free": 20, "side": 20, "below": [20, 22], "rememb": [20, 23], "later": 20, "export": 20, "insid": [20, 24], "laser": [20, 22], "non": 20, "persist": 20, "fade": 20, "until": 20, "disappear": 20, "coupl": 20, "highlight": 20, "review": [20, 21], "continu": [20, 21], "still": [20, 21, 26], "around": [20, 22], "font": [20, 21, 22], "happi": 20, "cross": [20, 24], "discard": 20, "clean": 20, "sourc": 21, "profession": 21, "flipbook": 21, "effect": 21, "anim": 21, "industri": 21, "focus": 21, "intuit": 21, "highest": 21, "engin": 21, "its": [21, 22, 23, 24], "code": [21, 22], "pipelin": 21, "integr": 21, "customis": 21, "flexibl": 21, "collect": 21, "specialis": 21, "format": [21, 24], "colour": 21, "manag": 21, "organis": 21, "group": 21, "subset": 21, "highli": 21, "interact": 21, "collabor": 21, "workflow": [21, 23], "essenti": 21, "team": 21, "vfx": 21, "post": 21, "product": 21, "who": 21, "demand": [21, 23], "artwork": 21, "instantan": 21, "across": 21, "multipl": [21, 22], "robust": 21, "solut": 21, "been": [21, 23], "deploi": 21, "facil": 21, "individu": 21, "daili": 21, "sinc": 21, "august": 21, "2022": 21, "develop": [21, 26], "phase": 21, "swing": 21, "work": [21, 22, 24], "major": 21, "virtual": 21, "common": [21, 23], "todai": 21, "tif": 21, "jpg": 21, "psd": 21, "mp4": 21, "webm": 21, "player": 21, "embed": [21, 24], "sound": 21, "opentimelineio": [21, 22], "dissolv": 21, "pixar": [21, 24], "them": [21, 24], "built": [21, 24], "todo": 21, "lo": 21, "cuadro": 21, "respons": 21, "opac": 21, "easili": 21, "staff": 21, "accur": 21, "v2": 21, "correct": 21, "rgba": 21, "predefin": 21, "mask": [21, 24], "pop": [21, 22], "2nd": 21, "dual": 21, "sync": [21, 22], "synchron": 21, "lan": 21, "server": [21, 22, 24], "client": [21, 22, 24], "pref": [21, 24], "interpret": 21, "straightforward": 21, "And": 22, "perman": 22, "vanish": 22, "drawn": 22, "rectangular": 22, "minimum": 22, "maximum": [22, 23], "averag": 22, "after": 22, "field": 22, "seven": 22, "temporari": 22, "give": 22, "access": 22, "clone": 22, "again": 22, "refresh": 22, "re": 22, "sub": 22, "clipboard": 22, "gather": 22, "email": 22, "filemanag": 22, "messag": 22, "emit": 22, "dure": [22, 26], "oper": 22, "occur": 22, "ignor": [22, 23, 24], "hors": 22, "codec": [22, 23], "machin": [22, 24], "connect": [22, 24], "distinguis": 22, "ipv4": 22, "ipv6": 22, "address": 22, "host": 22, "alia": 22, "addit": [22, 26], "port": [22, 24], "fine": 22, "firewal": [22, 24], "incom": 22, "outgo": 22, "aka": 22, "append": 22, "sever": [22, 24, 26], "togeth": 22, "done": 22, "releas": 22, "resolutiono": 22, "match": [22, 23, 24], "assum": 22, "exist": 22, "each": [22, 23, 24], "section": [22, 24], "keypad": 22, "editor": 22, "mainli": [22, 25], "gb": [22, 25], "doe": [22, 23, 24, 25], "half": [22, 25], "ram": [22, 25], "qualiti": 22, "asset": [22, 24], "thing": 23, "random": 23, "widget": [12, 23], "spacebar": 23, "try": 23, "decod": 23, "store": [23, 24], "readi": 23, "effici": 23, "understand": 23, "obviou": 23, "grow": 23, "thu": 23, "slow": [23, 24], "off": 23, "resolut": 23, "wait": 23, "via": 23, "most": 23, "case": [23, 24], "although": 23, "optimis": 23, "veri": 23, "hardwar": 23, "transfer": 23, "faster": 23, "stream": 23, "dwb": 23, "larg": 23, "filmaura": 24, "usernam": 24, "resetset": 24, "old": 24, "calll": 24, "favorit": 24, "someth": 24, "wan": 24, "whole": 24, "behav": 24, "unus": 24, "reposit": 24, "withing": 24, "establish": 24, "fast": 24, "label": 24, "paramet": 24, "fltk": [12, 24], "stick": 24, "gtk": 24, "fill": 24, "well": 24, "otherwis": [10, 24], "those": 24, "recogn": 24, "dramat": 24, "privat": 24, "unless": 24, "soon": 24, "move": 24, "hex": 24, "origin": 24, "process": 24, "hsv": 24, "hsl": 24, "cie": 24, "xyz": 24, "xyi": 24, "lab": 24, "cielab": 24, "luv": 24, "cieluv": 24, "yuv": 24, "analog": 24, "pal": 24, "ydbdr": 24, "secam": 24, "yiq": 24, "ntsc": 24, "itu": 24, "601": 24, "ycbcr": 24, "709": 24, "hdtv": 24, "lumma": 24, "bit": 24, "depth": 24, "repeat": 24, "scratch": 24, "regular": 24, "express": 24, "_v": 24, "far": 24, "drive": 24, "remot": 24, "gga": 24, "unix": 24, "simpl": 24, "local": 24, "sent": 24, "receiv": 24, "noth": 24, "were": 26, "latest": 26, "www": 26, "youtub": 26, "watch": 26, "8jviz": 26, "ppcrg": 26, "plxj9nnbdnfrmd8aq41ajymb7whn99g5c": 26, "demo": 12, "constructor": 10, "rtype": 10, "correspond": 10, "new_menu": [], "redirect": 24, "tcp": 24, "55120": 24, "necessari": 24, "pyfltk": [0, 4], "prefspath": [2, 4], "rootpath": [2, 4], "root": 2, "insal": 2, "fltk14": 12, "sort": 12, "albeit": 12, "older": 12, "gitlab": 12, "sourceforg": 12, "doc": 12, "ch0_prefac": 12, "html": 12, "currentsess": [2, 4], "opensess": [2, 4], "setcurrentsess": [2, 4], "saveotio": [2, 4]}, "objects": {"": [[8, 0, 0, "-", "mrv2"]], "mrv2": [[8, 1, 1, "", "FileMedia"], [8, 1, 1, "", "Path"], [8, 1, 1, "", "RationalTime"], [8, 1, 1, "", "TimeRange"], [1, 0, 0, "-", "annotations"], [2, 0, 0, "-", "cmd"], [3, 0, 0, "-", "image"], [5, 0, 0, "-", "io"], [6, 0, 0, "-", "math"], [7, 0, 0, "-", "media"], [9, 0, 0, "-", "playlist"], [10, 0, 0, "-", "plugin"], [13, 0, 0, "-", "settings"], [14, 0, 0, "-", "timeline"], [15, 0, 0, "-", "usd"]], "mrv2.FileMedia": [[8, 2, 1, "", "audioOffset"], [8, 2, 1, "", "audioPath"], [8, 2, 1, "", "currentTime"], [8, 2, 1, "", "inOutRange"], [8, 2, 1, "", "loop"], [8, 2, 1, "", "mute"], [8, 2, 1, "", "path"], [8, 2, 1, "", "playback"], [8, 2, 1, "", "timeRange"], [8, 2, 1, "", "videoLayer"], [8, 2, 1, "", "volume"]], "mrv2.Path": [[8, 3, 1, "", "get"], [8, 3, 1, "", "getBaseName"], [8, 3, 1, "", "getDirectory"], [8, 3, 1, "", "getExtension"], [8, 3, 1, "", "getNumber"], [8, 3, 1, "", "getPadding"], [8, 3, 1, "", "isAbsolute"], [8, 3, 1, "", "isEmpty"]], "mrv2.RationalTime": [[8, 3, 1, "", "almost_equal"], [8, 3, 1, "", "duration_from_start_end_time"], [8, 3, 1, "", "duration_from_start_end_time_inclusive"], [8, 3, 1, "", "from_frames"], [8, 3, 1, "", "from_seconds"], [8, 3, 1, "", "from_time_string"], [8, 3, 1, "", "from_timecode"], [8, 3, 1, "", "is_invalid_time"], [8, 3, 1, "", "is_valid_timecode_rate"], [8, 3, 1, "", "nearest_valid_timecode_rate"], [8, 3, 1, "", "rescaled_to"], [8, 3, 1, "", "to_frames"], [8, 3, 1, "", "to_seconds"], [8, 3, 1, "", "to_time_string"], [8, 3, 1, "", "to_timecode"], [8, 3, 1, "", "value_rescaled_to"]], "mrv2.TimeRange": [[8, 3, 1, "", "before"], [8, 3, 1, "", "begins"], [8, 3, 1, "", "clamped"], [8, 3, 1, "", "contains"], [8, 3, 1, "", "duration_extended_by"], [8, 3, 1, "", "end_time_exclusive"], [8, 3, 1, "", "end_time_inclusive"], [8, 3, 1, "", "extended_by"], [8, 3, 1, "", "finishes"], [8, 3, 1, "", "intersects"], [8, 3, 1, "", "meets"], [8, 3, 1, "", "overlaps"], [8, 3, 1, "", "range_from_start_end_time"], [8, 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, "", "currentSession"], [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, "", "open"], [2, 4, 1, "", "openSession"], [2, 4, 1, "", "prefsPath"], [2, 4, 1, "", "rootPath"], [2, 4, 1, "", "save"], [2, 4, 1, "", "saveOTIO"], [2, 4, 1, "", "savePDF"], [2, 4, 1, "", "saveSession"], [2, 4, 1, "", "saveSessionAs"], [2, 4, 1, "", "setCompareOptions"], [2, 4, 1, "", "setCurrentSession"], [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.io": [[5, 1, 1, "", "Compression"], [5, 1, 1, "", "Profile"], [5, 1, 1, "", "SaveOptions"]], "mrv2.io.SaveOptions": [[5, 2, 1, "", "annotations"], [5, 2, 1, "", "dwaCompressionLevel"], [5, 2, 1, "", "exrCompression"], [5, 2, 1, "", "ffmpegProfile"], [5, 2, 1, "", "zipCompressionLevel"]], "mrv2.math": [[6, 1, 1, "", "Vector2f"], [6, 1, 1, "", "Vector2i"], [6, 1, 1, "", "Vector3f"], [6, 1, 1, "", "Vector4f"]], "mrv2.math.Vector2f": [[6, 2, 1, "", "x"], [6, 2, 1, "", "y"]], "mrv2.math.Vector2i": [[6, 2, 1, "", "x"], [6, 2, 1, "", "y"]], "mrv2.math.Vector3f": [[6, 2, 1, "", "x"], [6, 2, 1, "", "y"], [6, 2, 1, "", "z"]], "mrv2.math.Vector4f": [[6, 2, 1, "", "w"], [6, 2, 1, "", "x"], [6, 2, 1, "", "y"], [6, 2, 1, "", "z"]], "mrv2.media": [[7, 4, 1, "", "Afile"], [7, 4, 1, "", "Aindex"], [7, 4, 1, "", "BIndexes"], [7, 4, 1, "", "Bfiles"], [7, 1, 1, "", "CompareMode"], [7, 1, 1, "", "CompareOptions"], [7, 4, 1, "", "activeFiles"], [7, 4, 1, "", "clearB"], [7, 4, 1, "", "close"], [7, 4, 1, "", "closeAll"], [7, 4, 1, "", "firstVersion"], [7, 4, 1, "", "lastVersion"], [7, 4, 1, "", "layers"], [7, 4, 1, "", "list"], [7, 4, 1, "", "nextVersion"], [7, 4, 1, "", "previousVersion"], [7, 4, 1, "", "setA"], [7, 4, 1, "", "setB"], [7, 4, 1, "", "setLayer"], [7, 4, 1, "", "setStereo"], [7, 4, 1, "", "toggleB"]], "mrv2.media.CompareOptions": [[7, 2, 1, "", "mode"], [7, 2, 1, "", "overlay"], [7, 2, 1, "", "wipeCenter"], [7, 2, 1, "", "wipeRotation"]], "mrv2.playlist": [[9, 4, 1, "", "add_clip"], [9, 4, 1, "", "list"], [9, 4, 1, "", "save"], [9, 4, 1, "", "select"]], "mrv2.plugin": [[10, 1, 1, "", "Plugin"]], "mrv2.plugin.Plugin": [[10, 3, 1, "", "active"], [10, 3, 1, "", "menus"]], "mrv2.settings": [[13, 4, 1, "", "memory"], [13, 4, 1, "", "readAhead"], [13, 4, 1, "", "readBehind"], [13, 4, 1, "", "setMemory"], [13, 4, 1, "", "setReadAhead"], [13, 4, 1, "", "setReadBehind"]], "mrv2.timeline": [[14, 1, 1, "", "FileSequenceAudio"], [14, 1, 1, "", "Loop"], [14, 1, 1, "", "Playback"], [14, 1, 1, "", "TimerMode"], [14, 4, 1, "", "frame"], [14, 4, 1, "", "inOutRange"], [14, 4, 1, "", "loop"], [14, 4, 1, "", "playBackwards"], [14, 4, 1, "", "playForwards"], [14, 4, 1, "", "seconds"], [14, 4, 1, "", "seek"], [14, 4, 1, "", "setIn"], [14, 4, 1, "", "setInOutRange"], [14, 4, 1, "", "setLoop"], [14, 4, 1, "", "setOut"], [14, 4, 1, "", "stop"], [14, 4, 1, "", "time"], [14, 4, 1, "", "timeRange"]], "mrv2.timeline.FileSequenceAudio": [[14, 5, 1, "", "name"]], "mrv2.timeline.Loop": [[14, 5, 1, "", "name"]], "mrv2.timeline.Playback": [[14, 5, 1, "", "name"]], "mrv2.timeline.TimerMode": [[14, 5, 1, "", "name"]], "mrv2.usd": [[15, 1, 1, "", "DrawMode"], [15, 1, 1, "", "RenderOptions"], [15, 4, 1, "", "renderOptions"], [15, 4, 1, "", "setRenderOptions"]], "mrv2.usd.RenderOptions": [[15, 2, 1, "", "complexity"], [15, 2, 1, "", "diskCacheByteCount"], [15, 2, 1, "", "drawMode"], [15, 2, 1, "", "enableLighting"], [15, 2, 1, "", "renderWidth"], [15, 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 module"], "1": ["py", "class", "Python class"], "2": ["py", "attribute", "Python attribute"], "3": ["py", "method", "Python method"], "4": ["py", "function", "Python function"], "5": ["py", "property", "Python property"]}, "titleterms": {"welcom": 0, "mrv2": [0, 8, 16, 18, 19, 21], "": 0, "document": 0, "tabl": 0, "content": 0, "indic": [0, 19], "annot": [1, 20, 22], "modul": [1, 2, 3, 5, 6, 7, 8, 9, 10, 13, 14, 15], "cmd": 2, "imag": [3, 24], "python": [4, 22], "api": 4, "io": 5, "math": 6, "media": [7, 16, 22], "playlist": [9, 22], "plugin": 10, "plug": 11, "system": 11, "ins": 11, "set": [13, 22, 25], "timelin": [14, 19, 24], "usd": [15, 22, 24], "get": 16, "start": [16, 19, 24], "build": 16, "instal": 16, "launch": 16, "load": [16, 24], "drag": 16, "drop": 16, "browser": 16, "recent": 16, "menu": [16, 19, 22, 24], "command": 16, "line": 16, "view": [16, 19, 24], "hotkei": [17, 23], "user": [18, 24], "guid": 18, "The": [19, 24], "interfac": [19, 24], "hide": 19, "show": [19, 24], "ui": [19, 24], "element": [19, 24], "customis": 19, "mous": [19, 22], "interact": 19, "viewer": 19, "top": [19, 24], "bar": [19, 24], "frame": [19, 23, 24], "transport": 19, "control": 19, "fp": [19, 23, 24], "end": 19, "player": 19, "safe": [19, 24], "area": [19, 22, 24], "data": 19, "window": [19, 24], "displai": [19, 24], "mask": 19, "hud": [19, 24], "render": 19, "channel": 19, "mirror": 19, "background": 19, "video": [19, 26], "level": 19, "alpha": 19, "blend": 19, "minifi": 19, "magnifi": 19, "filter": 19, "panel": [19, 22, 24], "divid": 19, "note": 20, "ad": 20, "sketch": 20, "modifi": 20, "navig": 20, "draw": 20, "introduct": 21, "what": 21, "i": 21, "current": [21, 23, 24], "version": [21, 24], "v0": 21, "8": 21, "0": 21, "overview": 21, "color": [22, 24], "compar": 22, "environ": 22, "map": [22, 24], "file": [22, 24], "context": 22, "right": 22, "button": 22, "histogram": 22, "log": 22, "inform": 22, "network": [22, 24], "stereo": 22, "3d": 22, "vectorscop": 22, "v\u00eddeo": 23, "playback": [23, 24], "loop": [23, 24], "mode": [23, 24], "rate": 23, "specif": 23, "cach": 23, "behavior": 23, "prefer": 24, "alwai": 24, "secondari": 24, "On": 24, "singl": 24, "instanc": 24, "auto": 24, "refit": 24, "normal": 24, "fullscreen": 24, "present": 24, "maco": 24, "tool": 24, "dock": 24, "onli": 24, "One": 24, "gain": 24, "gamma": 24, "crop": 24, "zoom": 24, "speed": 24, "languag": 24, "scheme": 24, "theme": 24, "posit": 24, "save": 24, "exit": 24, "fix": 24, "size": 24, "take": 24, "valu": 24, "request": 24, "click": 24, "travel": 24, "drawer": 24, "thumbnail": 24, "activ": 24, "us": 24, "nativ": 24, "chooser": 24, "scrub": 24, "sensit": 24, "preview": 24, "edit": 24, "transit": 24, "marker": 24, "pixel": 24, "toolbar": 24, "rgba": 24, "lumin": 24, "ocio": 24, "config": 24, "default": 24, "input": 24, "space": 24, "miss": 24, "regex": 24, "maximum": 24, "apart": 24, "path": 24, "add": 24, "remov": 24, "error": 24, "tutori": 26, "viewport": 24, "pyfltk": 12}, "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": {"Welcome to mrv2\u2019s documentation!": [[0, "welcome-to-mrv2-s-documentation"]], "Table of Contents": [[0, "table-of-contents"]], "Indices and tables": [[0, "indices-and-tables"]], "annotations module": [[1, "module-mrv2.annotations"]], "cmd module": [[2, "module-mrv2.cmd"]], "image module": [[3, "module-mrv2.image"]], "Python API": [[4, "python-api"]], "io Module": [[5, "module-mrv2.io"]], "math module": [[6, "module-mrv2.math"]], "media module": [[7, "module-mrv2.media"]], "mrv2 module": [[8, "module-mrv2"]], "playlist module": [[9, "module-mrv2.playlist"]], "plugin module": [[10, "module-mrv2.plugin"]], "Plug-in System": [[11, "plug-in-system"]], "Plug-ins": [[11, "plug-ins"]], "pyFLTK": [[12, "pyfltk"]], "settings module": [[13, "module-mrv2.settings"]], "timeline module": [[14, "module-mrv2.timeline"]], "usd module": [[15, "module-mrv2.usd"]], "Getting Started": [[16, "getting-started"]], "Building mrv2": [[16, "building-mrv2"]], "Installing mrv2": [[16, "installing-mrv2"]], "Launching mrv2": [[16, "launching-mrv2"]], "Loading Media (Drag and Drop)": [[16, "loading-media-drag-and-drop"]], "Loading Media (mrv2 Browser)": [[16, "loading-media-mrv2-browser"]], "Loading Media (Recent menu)": [[16, "loading-media-recent-menu"]], "Loading Media (command line)": [[16, "loading-media-command-line"]], "Viewing Media": [[16, "viewing-media"]], "Hotkeys": [[17, "hotkeys"]], "mrv2 User Guide": [[18, "mrv2-user-guide"]], "The mrv2 Interface": [[19, "the-mrv2-interface"]], "Hiding/Showing UI elements": [[19, "hiding-showing-ui-elements"]], "Customising the Interface": [[19, "customising-the-interface"]], "Mouse interaction in the Viewer": [[19, "mouse-interaction-in-the-viewer"]], "The Top Bar": [[19, "the-top-bar"]], "The Timeline": [[19, "the-timeline"]], "Frame Indicator": [[19, "frame-indicator"]], "Transport Controls": [[19, "transport-controls"]], "FPS": [[19, "fps"], [24, null]], "Start and End Frame Indicator": [[19, "start-and-end-frame-indicator"]], "Player/Viewer Controls": [[19, "player-viewer-controls"]], "View Menu": [[19, "view-menu"]], "Safe Areas": [[19, null], [24, null]], "Data Window": [[19, null]], "Display Window": [[19, null]], "Mask": [[19, null]], "HUD": [[19, null], [24, null]], "Render Menu": [[19, "render-menu"]], "Channels": [[19, null]], "Mirror": [[19, null]], "Background": [[19, null]], "Video Levels": [[19, null]], "Alpha Blend": [[19, null]], "Minify and Magnify Filters": [[19, null]], "The Panels": [[19, "the-panels"]], "Divider": [[19, "divider"]], "Notes and Annotations": [[20, "notes-and-annotations"]], "Adding a Note or Sketch": [[20, "adding-a-note-or-sketch"]], "Modifying a Note": [[20, "modifying-a-note"]], "Navigating Notes": [[20, "navigating-notes"]], "Drawing Annotations": [[20, "drawing-annotations"]], "Introduction": [[21, "introduction"]], "What is mrv2 ?": [[21, "what-is-mrv2"]], "Current Version: v0.8.0 - Overview": [[21, "current-version-v0-8-0-overview"]], "Panels": [[22, "panels"]], "Annotations Panel": [[22, "annotations-panel"]], "Color Area Panel": [[22, "color-area-panel"]], "Color Panel": [[22, "color-panel"]], "Compare Panel": [[22, "compare-panel"]], "Environment Map Panel": [[22, "environment-map-panel"]], "Files Panel": [[22, "files-panel"]], "Files Panel Context Menu (right mouse button)": [[22, "files-panel-context-menu-right-mouse-button"]], "Histogram Panel": [[22, "histogram-panel"]], "Logs Panel": [[22, "logs-panel"]], "Media Information Panel": [[22, "media-information-panel"]], "Network Panel": [[22, "network-panel"]], "Playlist Panel": [[22, "playlist-panel"]], "Python Panel": [[22, "python-panel"]], "Settings Panel": [[22, "settings-panel"]], "Stereo 3D Panel": [[22, "stereo-3d-panel"]], "USD Panel": [[22, "usd-panel"]], "Vectorscope Panel": [[22, "vectorscope-panel"]], "V\u00eddeo Playback": [[23, "video-playback"]], "Current Frame": [[23, "current-frame"]], "Loop Modes": [[23, "loop-modes"]], "FPS Rate": [[23, "fps-rate"]], "Playback Specific Hotkeys": [[23, "playback-specific-hotkeys"]], "Cache Behavior": [[23, "cache-behavior"]], "Preferences": [[24, "preferences"]], "User Interface": [[24, "user-interface"]], "Always on Top and Secondary On Top": [[24, null]], "Single Instance": [[24, null]], "Auto Refit Image": [[24, null]], "Normal, Fullscreen and Presentation": [[24, null]], "UI Elements": [[24, "ui-elements"]], "The UI bars": [[24, null]], "macOS Menus": [[24, null]], "Tool Dock": [[24, null]], "Only One Panel": [[24, null]], "View Window": [[24, "view-window"]], "Gain and Gamma": [[24, null]], "Crop": [[24, null]], "Zoom Speed": [[24, null]], "Language and Colors": [[24, "language-and-colors"]], "Language": [[24, null]], "Scheme": [[24, null]], "Color Theme": [[24, null]], "View Colors": [[24, null]], "Positioning": [[24, "positioning"]], "Always Save on Exit": [[24, null]], "Fixed Position": [[24, null]], "Fixed Size": [[24, null]], "Take Current Window Values": [[24, null]], "File Requester": [[24, "file-requester"]], "Single Click to Travel Drawers": [[24, null]], "Thumbnails Active": [[24, null]], "USD Thumbnails": [[24, null]], "Use Native File Chooser": [[24, null]], "Playback": [[24, "playback"]], "Auto Playback": [[24, null]], "Looping Mode": [[24, null]], "Scrub Sensitivity": [[24, null]], "Timeline": [[24, "timeline"]], "Display": [[24, null]], "Preview Thumbnails": [[24, null]], "Edit Viewport": [[24, "edit-viewport"]], "Start in Edit mode": [[24, null]], "Thumbnails": [[24, null]], "Show Transitions": [[24, null]], "Show Markers": [[24, null]], "Pixel Toolbar": [[24, "pixel-toolbar"]], "RGBA Display": [[24, null]], "Pixel Values": [[24, null]], "Secondary Display": [[24, null]], "Luminance": [[24, null]], "OCIO": [[24, "ocio"]], "OCIO Config File": [[24, null]], "OCIO Defaults": [[24, "ocio-defaults"]], "Use Active Views and Active Displays": [[24, null]], "Input Color Space": [[24, null]], "Loading": [[24, "loading"]], "Missing Frame": [[24, null]], "Version Regex": [[24, null]], "Maximum Images Apart": [[24, null]], "Path Mapping": [[24, "path-mapping"]], "Add Path": [[24, null]], "Remove Path": [[24, null]], "Network": [[24, "network"]], "Errors": [[24, "errors"]], "Settings": [[25, "settings"]], "Video Tutorials": [[26, "video-tutorials"]]}, "indexentries": {"add() (in module mrv2.annotations)": [[1, "mrv2.annotations.add"]], "module": [[1, "module-mrv2.annotations"], [2, "module-mrv2.cmd"], [3, "module-mrv2.image"], [5, "module-mrv2.io"], [6, "module-mrv2.math"], [7, "module-mrv2.media"], [8, "module-mrv2"], [9, "module-mrv2.playlist"], [10, "module-mrv2.plugin"], [13, "module-mrv2.settings"], [14, "module-mrv2.timeline"], [15, "module-mrv2.usd"]], "mrv2.annotations": [[1, "module-mrv2.annotations"]], "close() (in module mrv2.cmd)": [[2, "mrv2.cmd.close"]], "closeall() (in module mrv2.cmd)": [[2, "mrv2.cmd.closeAll"]], "compare() (in module mrv2.cmd)": [[2, "mrv2.cmd.compare"]], "compareoptions() (in module mrv2.cmd)": [[2, "mrv2.cmd.compareOptions"]], "currentsession() (in module mrv2.cmd)": [[2, "mrv2.cmd.currentSession"]], "displayoptions() (in module mrv2.cmd)": [[2, "mrv2.cmd.displayOptions"]], "environmentmapoptions() (in module mrv2.cmd)": [[2, "mrv2.cmd.environmentMapOptions"]], "getlayers() (in module mrv2.cmd)": [[2, "mrv2.cmd.getLayers"]], "imageoptions() (in module mrv2.cmd)": [[2, "mrv2.cmd.imageOptions"]], "ismuted() (in module mrv2.cmd)": [[2, "mrv2.cmd.isMuted"]], "lutoptions() (in module mrv2.cmd)": [[2, "mrv2.cmd.lutOptions"]], "mrv2.cmd": [[2, "module-mrv2.cmd"]], "open() (in module mrv2.cmd)": [[2, "mrv2.cmd.open"]], "opensession() (in module mrv2.cmd)": [[2, "mrv2.cmd.openSession"]], "prefspath() (in module mrv2.cmd)": [[2, "mrv2.cmd.prefsPath"]], "rootpath() (in module mrv2.cmd)": [[2, "mrv2.cmd.rootPath"]], "save() (in module mrv2.cmd)": [[2, "mrv2.cmd.save"]], "saveotio() (in module mrv2.cmd)": [[2, "mrv2.cmd.saveOTIO"]], "savepdf() (in module mrv2.cmd)": [[2, "mrv2.cmd.savePDF"]], "savesession() (in module mrv2.cmd)": [[2, "mrv2.cmd.saveSession"]], "savesessionas() (in module mrv2.cmd)": [[2, "mrv2.cmd.saveSessionAs"]], "setcompareoptions() (in module mrv2.cmd)": [[2, "mrv2.cmd.setCompareOptions"]], "setcurrentsession() (in module mrv2.cmd)": [[2, "mrv2.cmd.setCurrentSession"]], "setdisplayoptions() (in module mrv2.cmd)": [[2, "mrv2.cmd.setDisplayOptions"]], "setenvironmentmapoptions() (in module mrv2.cmd)": [[2, "mrv2.cmd.setEnvironmentMapOptions"]], "setimageoptions() (in module mrv2.cmd)": [[2, "mrv2.cmd.setImageOptions"]], "setlutoptions() (in module mrv2.cmd)": [[2, "mrv2.cmd.setLUTOptions"]], "setmute() (in module mrv2.cmd)": [[2, "mrv2.cmd.setMute"]], "setstereo3doptions() (in module mrv2.cmd)": [[2, "mrv2.cmd.setStereo3DOptions"]], "setvolume() (in module mrv2.cmd)": [[2, "mrv2.cmd.setVolume"]], "stereo3doptions() (in module mrv2.cmd)": [[2, "mrv2.cmd.stereo3DOptions"]], "update() (in module mrv2.cmd)": [[2, "mrv2.cmd.update"]], "volume() (in module mrv2.cmd)": [[2, "mrv2.cmd.volume"]], "alphablend (class in mrv2.image)": [[3, "mrv2.image.AlphaBlend"]], "channels (class in mrv2.image)": [[3, "mrv2.image.Channels"]], "color (class in mrv2.image)": [[3, "mrv2.image.Color"]], "displayoptions (class in mrv2.image)": [[3, "mrv2.image.DisplayOptions"]], "environmentmapoptions (class in mrv2.image)": [[3, "mrv2.image.EnvironmentMapOptions"]], "environmentmaptype (class in mrv2.image)": [[3, "mrv2.image.EnvironmentMapType"]], "imagefilter (class in mrv2.image)": [[3, "mrv2.image.ImageFilter"]], "imagefilters (class in mrv2.image)": [[3, "mrv2.image.ImageFilters"]], "imageoptions (class in mrv2.image)": [[3, "mrv2.image.ImageOptions"]], "inputvideolevels (class in mrv2.image)": [[3, "mrv2.image.InputVideoLevels"]], "lutoptions (class in mrv2.image)": [[3, "mrv2.image.LUTOptions"]], "lutorder (class in mrv2.image)": [[3, "mrv2.image.LUTOrder"]], "levels (class in mrv2.image)": [[3, "mrv2.image.Levels"]], "mirror (class in mrv2.image)": [[3, "mrv2.image.Mirror"]], "softclip (class in mrv2.image)": [[3, "mrv2.image.SoftClip"]], "stereo3dinput (class in mrv2.image)": [[3, "mrv2.image.Stereo3DInput"]], "stereo3doptions (class in mrv2.image)": [[3, "mrv2.image.Stereo3DOptions"]], "stereo3doutput (class in mrv2.image)": [[3, "mrv2.image.Stereo3DOutput"]], "videolevels (class in mrv2.image)": [[3, "mrv2.image.VideoLevels"]], "yuvcoefficients (class in mrv2.image)": [[3, "mrv2.image.YUVCoefficients"]], "add (mrv2.image.color attribute)": [[3, "mrv2.image.Color.add"]], "alphablend (mrv2.image.imageoptions attribute)": [[3, "mrv2.image.ImageOptions.alphaBlend"]], "brightness (mrv2.image.color attribute)": [[3, "mrv2.image.Color.brightness"]], "channels (mrv2.image.displayoptions attribute)": [[3, "mrv2.image.DisplayOptions.channels"]], "color (mrv2.image.displayoptions attribute)": [[3, "mrv2.image.DisplayOptions.color"]], "contrast (mrv2.image.color attribute)": [[3, "mrv2.image.Color.contrast"]], "enabled (mrv2.image.color attribute)": [[3, "mrv2.image.Color.enabled"]], "enabled (mrv2.image.levels attribute)": [[3, "mrv2.image.Levels.enabled"]], "enabled (mrv2.image.softclip attribute)": [[3, "mrv2.image.SoftClip.enabled"]], "eyeseparation (mrv2.image.stereo3doptions attribute)": [[3, "mrv2.image.Stereo3DOptions.eyeSeparation"]], "filename (mrv2.image.lutoptions attribute)": [[3, "mrv2.image.LUTOptions.fileName"]], "focallength (mrv2.image.environmentmapoptions attribute)": [[3, "mrv2.image.EnvironmentMapOptions.focalLength"]], "gamma (mrv2.image.levels attribute)": [[3, "mrv2.image.Levels.gamma"]], "horizontalaperture (mrv2.image.environmentmapoptions attribute)": [[3, "mrv2.image.EnvironmentMapOptions.horizontalAperture"]], "imagefilters (mrv2.image.imageoptions attribute)": [[3, "mrv2.image.ImageOptions.imageFilters"]], "inhigh (mrv2.image.levels attribute)": [[3, "mrv2.image.Levels.inHigh"]], "inlow (mrv2.image.levels attribute)": [[3, "mrv2.image.Levels.inLow"]], "input (mrv2.image.stereo3doptions attribute)": [[3, "mrv2.image.Stereo3DOptions.input"]], "invert (mrv2.image.color attribute)": [[3, "mrv2.image.Color.invert"]], "levels (mrv2.image.displayoptions attribute)": [[3, "mrv2.image.DisplayOptions.levels"]], "magnify (mrv2.image.imagefilters attribute)": [[3, "mrv2.image.ImageFilters.magnify"]], "minify (mrv2.image.imagefilters attribute)": [[3, "mrv2.image.ImageFilters.minify"]], "mirror (mrv2.image.displayoptions attribute)": [[3, "mrv2.image.DisplayOptions.mirror"]], "mrv2.image": [[3, "module-mrv2.image"]], "order (mrv2.image.lutoptions attribute)": [[3, "mrv2.image.LUTOptions.order"]], "outhigh (mrv2.image.levels attribute)": [[3, "mrv2.image.Levels.outHigh"]], "outlow (mrv2.image.levels attribute)": [[3, "mrv2.image.Levels.outLow"]], "output (mrv2.image.stereo3doptions attribute)": [[3, "mrv2.image.Stereo3DOptions.output"]], "rotatex (mrv2.image.environmentmapoptions attribute)": [[3, "mrv2.image.EnvironmentMapOptions.rotateX"]], "rotatey (mrv2.image.environmentmapoptions attribute)": [[3, "mrv2.image.EnvironmentMapOptions.rotateY"]], "saturation (mrv2.image.color attribute)": [[3, "mrv2.image.Color.saturation"]], "softclip (mrv2.image.displayoptions attribute)": [[3, "mrv2.image.DisplayOptions.softClip"]], "spin (mrv2.image.environmentmapoptions attribute)": [[3, "mrv2.image.EnvironmentMapOptions.spin"]], "subdivisionx (mrv2.image.environmentmapoptions attribute)": [[3, "mrv2.image.EnvironmentMapOptions.subdivisionX"]], "subdivisiony (mrv2.image.environmentmapoptions attribute)": [[3, "mrv2.image.EnvironmentMapOptions.subdivisionY"]], "swapeyes (mrv2.image.stereo3doptions attribute)": [[3, "mrv2.image.Stereo3DOptions.swapEyes"]], "tint (mrv2.image.color attribute)": [[3, "mrv2.image.Color.tint"]], "type (mrv2.image.environmentmapoptions attribute)": [[3, "mrv2.image.EnvironmentMapOptions.type"]], "value (mrv2.image.softclip attribute)": [[3, "mrv2.image.SoftClip.value"]], "verticalaperture (mrv2.image.environmentmapoptions attribute)": [[3, "mrv2.image.EnvironmentMapOptions.verticalAperture"]], "videolevels (mrv2.image.imageoptions attribute)": [[3, "mrv2.image.ImageOptions.videoLevels"]], "x (mrv2.image.mirror attribute)": [[3, "mrv2.image.Mirror.x"]], "y (mrv2.image.mirror attribute)": [[3, "mrv2.image.Mirror.y"]], "compression (class in mrv2.io)": [[5, "mrv2.io.Compression"]], "profile (class in mrv2.io)": [[5, "mrv2.io.Profile"]], "saveoptions (class in mrv2.io)": [[5, "mrv2.io.SaveOptions"]], "annotations (mrv2.io.saveoptions attribute)": [[5, "mrv2.io.SaveOptions.annotations"]], "dwacompressionlevel (mrv2.io.saveoptions attribute)": [[5, "mrv2.io.SaveOptions.dwaCompressionLevel"]], "exrcompression (mrv2.io.saveoptions attribute)": [[5, "mrv2.io.SaveOptions.exrCompression"]], "ffmpegprofile (mrv2.io.saveoptions attribute)": [[5, "mrv2.io.SaveOptions.ffmpegProfile"]], "mrv2.io": [[5, "module-mrv2.io"]], "zipcompressionlevel (mrv2.io.saveoptions attribute)": [[5, "mrv2.io.SaveOptions.zipCompressionLevel"]], "vector2f (class in mrv2.math)": [[6, "mrv2.math.Vector2f"]], "vector2i (class in mrv2.math)": [[6, "mrv2.math.Vector2i"]], "vector3f (class in mrv2.math)": [[6, "mrv2.math.Vector3f"]], "vector4f (class in mrv2.math)": [[6, "mrv2.math.Vector4f"]], "mrv2.math": [[6, "module-mrv2.math"]], "w (mrv2.math.vector4f attribute)": [[6, "mrv2.math.Vector4f.w"]], "x (mrv2.math.vector2f attribute)": [[6, "mrv2.math.Vector2f.x"]], "x (mrv2.math.vector2i attribute)": [[6, "mrv2.math.Vector2i.x"]], "x (mrv2.math.vector3f attribute)": [[6, "mrv2.math.Vector3f.x"]], "x (mrv2.math.vector4f attribute)": [[6, "mrv2.math.Vector4f.x"]], "y (mrv2.math.vector2f attribute)": [[6, "mrv2.math.Vector2f.y"]], "y (mrv2.math.vector2i attribute)": [[6, "mrv2.math.Vector2i.y"]], "y (mrv2.math.vector3f attribute)": [[6, "mrv2.math.Vector3f.y"]], "y (mrv2.math.vector4f attribute)": [[6, "mrv2.math.Vector4f.y"]], "z (mrv2.math.vector3f attribute)": [[6, "mrv2.math.Vector3f.z"]], "z (mrv2.math.vector4f attribute)": [[6, "mrv2.math.Vector4f.z"]], "afile() (in module mrv2.media)": [[7, "mrv2.media.Afile"]], "aindex() (in module mrv2.media)": [[7, "mrv2.media.Aindex"]], "bindexes() (in module mrv2.media)": [[7, "mrv2.media.BIndexes"]], "bfiles() (in module mrv2.media)": [[7, "mrv2.media.Bfiles"]], "comparemode (class in mrv2.media)": [[7, "mrv2.media.CompareMode"]], "compareoptions (class in mrv2.media)": [[7, "mrv2.media.CompareOptions"]], "activefiles() (in module mrv2.media)": [[7, "mrv2.media.activeFiles"]], "clearb() (in module mrv2.media)": [[7, "mrv2.media.clearB"]], "close() (in module mrv2.media)": [[7, "mrv2.media.close"]], "closeall() (in module mrv2.media)": [[7, "mrv2.media.closeAll"]], "firstversion() (in module mrv2.media)": [[7, "mrv2.media.firstVersion"]], "lastversion() (in module mrv2.media)": [[7, "mrv2.media.lastVersion"]], "layers() (in module mrv2.media)": [[7, "mrv2.media.layers"]], "list() (in module mrv2.media)": [[7, "mrv2.media.list"]], "mode (mrv2.media.compareoptions attribute)": [[7, "mrv2.media.CompareOptions.mode"]], "mrv2.media": [[7, "module-mrv2.media"]], "nextversion() (in module mrv2.media)": [[7, "mrv2.media.nextVersion"]], "overlay (mrv2.media.compareoptions attribute)": [[7, "mrv2.media.CompareOptions.overlay"]], "previousversion() (in module mrv2.media)": [[7, "mrv2.media.previousVersion"]], "seta() (in module mrv2.media)": [[7, "mrv2.media.setA"]], "setb() (in module mrv2.media)": [[7, "mrv2.media.setB"]], "setlayer() (in module mrv2.media)": [[7, "mrv2.media.setLayer"]], "setstereo() (in module mrv2.media)": [[7, "mrv2.media.setStereo"]], "toggleb() (in module mrv2.media)": [[7, "mrv2.media.toggleB"]], "wipecenter (mrv2.media.compareoptions attribute)": [[7, "mrv2.media.CompareOptions.wipeCenter"]], "wiperotation (mrv2.media.compareoptions attribute)": [[7, "mrv2.media.CompareOptions.wipeRotation"]], "filemedia (class in mrv2)": [[8, "mrv2.FileMedia"]], "path (class in mrv2)": [[8, "mrv2.Path"]], "rationaltime (class in mrv2)": [[8, "mrv2.RationalTime"]], "timerange (class in mrv2)": [[8, "mrv2.TimeRange"]], "almost_equal() (mrv2.rationaltime method)": [[8, "mrv2.RationalTime.almost_equal"]], "audiooffset (mrv2.filemedia attribute)": [[8, "mrv2.FileMedia.audioOffset"]], "audiopath (mrv2.filemedia attribute)": [[8, "mrv2.FileMedia.audioPath"]], "before() (mrv2.timerange method)": [[8, "mrv2.TimeRange.before"]], "begins() (mrv2.timerange method)": [[8, "mrv2.TimeRange.begins"]], "clamped() (mrv2.timerange method)": [[8, "mrv2.TimeRange.clamped"]], "contains() (mrv2.timerange method)": [[8, "mrv2.TimeRange.contains"]], "currenttime (mrv2.filemedia attribute)": [[8, "mrv2.FileMedia.currentTime"]], "duration_extended_by() (mrv2.timerange method)": [[8, "mrv2.TimeRange.duration_extended_by"]], "duration_from_start_end_time() (mrv2.rationaltime static method)": [[8, "mrv2.RationalTime.duration_from_start_end_time"]], "duration_from_start_end_time_inclusive() (mrv2.rationaltime static method)": [[8, "mrv2.RationalTime.duration_from_start_end_time_inclusive"]], "end_time_exclusive() (mrv2.timerange method)": [[8, "mrv2.TimeRange.end_time_exclusive"]], "end_time_inclusive() (mrv2.timerange method)": [[8, "mrv2.TimeRange.end_time_inclusive"]], "extended_by() (mrv2.timerange method)": [[8, "mrv2.TimeRange.extended_by"]], "finishes() (mrv2.timerange method)": [[8, "mrv2.TimeRange.finishes"]], "from_frames() (mrv2.rationaltime static method)": [[8, "mrv2.RationalTime.from_frames"]], "from_seconds() (mrv2.rationaltime static method)": [[8, "mrv2.RationalTime.from_seconds"]], "from_time_string() (mrv2.rationaltime static method)": [[8, "mrv2.RationalTime.from_time_string"]], "from_timecode() (mrv2.rationaltime static method)": [[8, "mrv2.RationalTime.from_timecode"]], "get() (mrv2.path method)": [[8, "mrv2.Path.get"]], "getbasename() (mrv2.path method)": [[8, "mrv2.Path.getBaseName"]], "getdirectory() (mrv2.path method)": [[8, "mrv2.Path.getDirectory"]], "getextension() (mrv2.path method)": [[8, "mrv2.Path.getExtension"]], "getnumber() (mrv2.path method)": [[8, "mrv2.Path.getNumber"]], "getpadding() (mrv2.path method)": [[8, "mrv2.Path.getPadding"]], "inoutrange (mrv2.filemedia attribute)": [[8, "mrv2.FileMedia.inOutRange"]], "intersects() (mrv2.timerange method)": [[8, "mrv2.TimeRange.intersects"]], "isabsolute() (mrv2.path method)": [[8, "mrv2.Path.isAbsolute"]], "isempty() (mrv2.path method)": [[8, "mrv2.Path.isEmpty"]], "is_invalid_time() (mrv2.rationaltime method)": [[8, "mrv2.RationalTime.is_invalid_time"]], "is_valid_timecode_rate() (mrv2.rationaltime static method)": [[8, "mrv2.RationalTime.is_valid_timecode_rate"]], "loop (mrv2.filemedia attribute)": [[8, "mrv2.FileMedia.loop"]], "meets() (mrv2.timerange method)": [[8, "mrv2.TimeRange.meets"]], "mrv2": [[8, "module-mrv2"]], "mute (mrv2.filemedia attribute)": [[8, "mrv2.FileMedia.mute"]], "nearest_valid_timecode_rate() (mrv2.rationaltime static method)": [[8, "mrv2.RationalTime.nearest_valid_timecode_rate"]], "overlaps() (mrv2.timerange method)": [[8, "mrv2.TimeRange.overlaps"]], "path (mrv2.filemedia attribute)": [[8, "mrv2.FileMedia.path"]], "playback (mrv2.filemedia attribute)": [[8, "mrv2.FileMedia.playback"]], "range_from_start_end_time() (mrv2.timerange static method)": [[8, "mrv2.TimeRange.range_from_start_end_time"]], "range_from_start_end_time_inclusive() (mrv2.timerange static method)": [[8, "mrv2.TimeRange.range_from_start_end_time_inclusive"]], "rescaled_to() (mrv2.rationaltime method)": [[8, "mrv2.RationalTime.rescaled_to"]], "timerange (mrv2.filemedia attribute)": [[8, "mrv2.FileMedia.timeRange"]], "to_frames() (mrv2.rationaltime method)": [[8, "mrv2.RationalTime.to_frames"]], "to_seconds() (mrv2.rationaltime method)": [[8, "mrv2.RationalTime.to_seconds"]], "to_time_string() (mrv2.rationaltime method)": [[8, "mrv2.RationalTime.to_time_string"]], "to_timecode() (mrv2.rationaltime method)": [[8, "mrv2.RationalTime.to_timecode"]], "value_rescaled_to() (mrv2.rationaltime method)": [[8, "mrv2.RationalTime.value_rescaled_to"]], "videolayer (mrv2.filemedia attribute)": [[8, "mrv2.FileMedia.videoLayer"]], "volume (mrv2.filemedia attribute)": [[8, "mrv2.FileMedia.volume"]], "add_clip() (in module mrv2.playlist)": [[9, "mrv2.playlist.add_clip"]], "list() (in module mrv2.playlist)": [[9, "mrv2.playlist.list"]], "mrv2.playlist": [[9, "module-mrv2.playlist"]], "save() (in module mrv2.playlist)": [[9, "mrv2.playlist.save"]], "select() (in module mrv2.playlist)": [[9, "mrv2.playlist.select"]], "plugin (class in mrv2.plugin)": [[10, "mrv2.plugin.Plugin"]], "active() (mrv2.plugin.plugin method)": [[10, "mrv2.plugin.Plugin.active"]], "menus() (mrv2.plugin.plugin method)": [[10, "mrv2.plugin.Plugin.menus"]], "mrv2.plugin": [[10, "module-mrv2.plugin"]], "memory() (in module mrv2.settings)": [[13, "mrv2.settings.memory"]], "mrv2.settings": [[13, "module-mrv2.settings"]], "readahead() (in module mrv2.settings)": [[13, "mrv2.settings.readAhead"]], "readbehind() (in module mrv2.settings)": [[13, "mrv2.settings.readBehind"]], "setmemory() (in module mrv2.settings)": [[13, "mrv2.settings.setMemory"]], "setreadahead() (in module mrv2.settings)": [[13, "mrv2.settings.setReadAhead"]], "setreadbehind() (in module mrv2.settings)": [[13, "mrv2.settings.setReadBehind"]], "filesequenceaudio (class in mrv2.timeline)": [[14, "mrv2.timeline.FileSequenceAudio"]], "loop (class in mrv2.timeline)": [[14, "mrv2.timeline.Loop"]], "playback (class in mrv2.timeline)": [[14, "mrv2.timeline.Playback"]], "timermode (class in mrv2.timeline)": [[14, "mrv2.timeline.TimerMode"]], "frame() (in module mrv2.timeline)": [[14, "mrv2.timeline.frame"]], "inoutrange() (in module mrv2.timeline)": [[14, "mrv2.timeline.inOutRange"]], "loop() (in module mrv2.timeline)": [[14, "mrv2.timeline.loop"]], "mrv2.timeline": [[14, "module-mrv2.timeline"]], "name (mrv2.timeline.filesequenceaudio property)": [[14, "mrv2.timeline.FileSequenceAudio.name"]], "name (mrv2.timeline.loop property)": [[14, "mrv2.timeline.Loop.name"]], "name (mrv2.timeline.playback property)": [[14, "mrv2.timeline.Playback.name"]], "name (mrv2.timeline.timermode property)": [[14, "mrv2.timeline.TimerMode.name"]], "playbackwards() (in module mrv2.timeline)": [[14, "mrv2.timeline.playBackwards"]], "playforwards() (in module mrv2.timeline)": [[14, "mrv2.timeline.playForwards"]], "seconds() (in module mrv2.timeline)": [[14, "mrv2.timeline.seconds"]], "seek() (in module mrv2.timeline)": [[14, "mrv2.timeline.seek"]], "setin() (in module mrv2.timeline)": [[14, "mrv2.timeline.setIn"]], "setinoutrange() (in module mrv2.timeline)": [[14, "mrv2.timeline.setInOutRange"]], "setloop() (in module mrv2.timeline)": [[14, "mrv2.timeline.setLoop"]], "setout() (in module mrv2.timeline)": [[14, "mrv2.timeline.setOut"]], "stop() (in module mrv2.timeline)": [[14, "mrv2.timeline.stop"]], "time() (in module mrv2.timeline)": [[14, "mrv2.timeline.time"]], "timerange() (in module mrv2.timeline)": [[14, "mrv2.timeline.timeRange"]], "drawmode (class in mrv2.usd)": [[15, "mrv2.usd.DrawMode"]], "renderoptions (class in mrv2.usd)": [[15, "mrv2.usd.RenderOptions"]], "complexity (mrv2.usd.renderoptions attribute)": [[15, "mrv2.usd.RenderOptions.complexity"]], "diskcachebytecount (mrv2.usd.renderoptions attribute)": [[15, "mrv2.usd.RenderOptions.diskCacheByteCount"]], "drawmode (mrv2.usd.renderoptions attribute)": [[15, "mrv2.usd.RenderOptions.drawMode"]], "enablelighting (mrv2.usd.renderoptions attribute)": [[15, "mrv2.usd.RenderOptions.enableLighting"]], "mrv2.usd": [[15, "module-mrv2.usd"]], "renderoptions() (in module mrv2.usd)": [[15, "mrv2.usd.renderOptions"]], "renderwidth (mrv2.usd.renderoptions attribute)": [[15, "mrv2.usd.RenderOptions.renderWidth"]], "setrenderoptions() (in module mrv2.usd)": [[15, "mrv2.usd.setRenderOptions"]], "stagecachecount (mrv2.usd.renderoptions attribute)": [[15, "mrv2.usd.RenderOptions.stageCacheCount"]]}}) \ No newline at end of file diff --git a/mrv2/docs/es/genindex.html b/mrv2/docs/es/genindex.html index 2a52476a7..9da6ba076 100644 --- a/mrv2/docs/es/genindex.html +++ b/mrv2/docs/es/genindex.html @@ -641,6 +641,8 @@

    S

  • (en el módulo mrv2.playlist)
  • +
  • saveOTIO() (en el módulo mrv2.cmd) +
  • savePDF() (en el módulo mrv2.cmd)
  • saveSession() (en el módulo mrv2.cmd) @@ -674,11 +676,11 @@

    S

  • setLayer() (en el módulo mrv2.media)
  • setLoop() (en el módulo mrv2.timeline) -
  • -
  • setLUTOptions() (en el módulo mrv2.cmd)
    • +
    • setLUTOptions() (en el módulo mrv2.cmd) +
    • setMemory() (en el módulo mrv2.settings)
    • setMute() (en el módulo mrv2.cmd) diff --git a/mrv2/docs/es/objects.inv b/mrv2/docs/es/objects.inv index 5954896ff78afe369694e242beb35f5aa0803973..7ed53a38859d5540d84cda66a654ce5a8869c4dd 100644 GIT binary patch delta 1996 zcmV;-2Q&Dn6Rs1Gi3OAR#2)*Rj#Pgq%HRevN-UZ(qSW*UH+hI8q{^tc&2t6X;zVmn zmz9Q4i94d#Sb?;X61aY(1z;s8zpeB=;VZNP6Qabjg?${!mJyCC8QCsL`W4G-yLP@G-OJ&+nLpb@dD0PT`?uj-|A*|~tPHX=ml@L}4r5EsP zMHsT=B&%fo=OUM)SSU@T5#-rI)1XK>S#v>o$|^-SX!Tk&mnM=`l!Ss*@GMTFu8}gY zdQhynbyAU`eL|J->xM8I*KmJEW+!6pS(t`It8pL_OnjbE(&(jxfl(7!2`wUn#|T7* zj!`&6;It|+VPjgRG7W-q>f>;@J+1TVkz@(Ekbo)8pexE13N=<1C1f~Oa80lU_Z=eG z!7wwfUT#rBeJ=_x;k~Fs2Gbc2WFl*mQ%=+?2*QmNN6Z$L^Gpm09WPzdtj$x4PT1v=Ow~7n_r4Sm!DY5|!bNhI8i{b7*e8ONz zcMi~5aMLT$mr<{{6^MGvm0hjJyy!;Y<2l}SqjMGU)*Af!%Of7XX&3Q<*n^o=fOz)- zU+`1E2NVRxm0Oh=39s)a*wnfo_KnVUrh9yDvSzGYlQ}b!6wiN}VW6;wUarlA0hkI0 z1rriSbrTrRUfx^uQqt90bMqQUh}dO^BuYm}04GZZF*TvwOnGBWP(-&Ypa>CdX8b7p zus;lng)yF_gGh`t#k6i4oUuX-HfJ)api-X4CM9xx$!Lkv@(w{kP3Kfea*+~t4SaR< ztRhr(EhPPBHwk~(tTb;+CE<+X(yo=@=d&yRaz;f}QhrXkYMIduwR51K|39+lti0Zq z=WK7=-_rD~q4d~V81w?wGq_KbX^=6jih>jKo6~%Ya>7`M#_3@Dp&^`*(JUy+kS1y1 z<2beE02DuzT=BBfPh*iFKaFSnNHobQ>km4E>oCv}G6R2!7U|%yS|I&aV^K4`R$@hp zg2V_={x>u2jZ?T5&oKg`(y=xe39Jz}{RAqg2^%bVi6}F{^=uD=d0LRk9T*jNy-0l) zg_CI4&UN<_UW>z(cMPAv79OA^5zC!@McUOXTFHde7L4g84x+gkw*{L-vEyuu>0AZN~NF7()Q>%n4dSH z7>6G}sy;%}X2(917@|E{mRhRFseVg-XrahjC%v7ArCm|zM2DkUI0`N74)>k|dk8e*q@rr6vBXC>k2ws23 zl-^yL#?v_eRmyug*<`u9dYkb^m@oCN=lOz)c(TxO76G6 zJ5=3pJ-G?zO{@U_MtCNsN@qVYvIKuNz4&2TDUgdyr0V-sGaYKaIDl;b?@sEn7n-bq zH+y0u#V)l5rmz3v8BJlbd(aeS9~(R~r@%LcGPaQ^BUAH4Wp6i-l)nDXrzVVS?f)>T zKMl!A3cf1z5A1$*W?z$OoA#{}oR}BdVSl;3=rTrCu-MJ(@1_qBYEqK=u9$zvjwZML zue0FJ{sjiz>4z6Qy{p@I;{M`d=-(sXWOQm)nAoh;WYv}puZViYy33=zh)J02AF+7Y z-SJCL*GVIOKT!7b8ou$vbar<&+1oAlu>D4IU$jk`?C%Wt=ziB=hufsd-lsP{y!$F= zN812&tgbx*qs4bG(xpxuOH~iA&|oDy41{JiJW|?zx_*;f2+0`PbmnThoz4cm`tCt{ eezKwP?3U?r8>K6gJqarUtrU}L2|5Hu<7kQe{+p&T|FY;zVmn zmz9Q4i94d#Sb?;X61aY(1z;s8|6J*N!dGYoCPay43;Q^dEh8LPGO}Hg^edLv#^X^= z+t3We4cUT3D+pGFHhULqr^UK`I$1U0U4VHqI~kc11)oS`ULg8`N=UVkTLgdm@kIky zRB#0QsVbIDYXpLKB+DpYg_2awmddoDhH&y@QR)!?+!Jk_LRi;PoYwwBDj}>8N-yBo ziZEo!Nmj}F&qXdpu~3>wBgnIbra_T%vgU&FlvRpu(CW2lE=?q>C!cz>`-Cdv*9~DbuHk=-%udAGvoH;bR^vbrfu(bb1 zj@) zo;`$Sj0JO|D2W6l_POl697H!u%Lh>1d^&{AsIp5eWZA$sR0>|0@^49r6fraNdVLiP z(t@n8UZd*POz5*v%&dO`kOhhoIEF#CYbhaD-6}E!ltO3>r^p5{%-x4842E>e0G$Ol zp#psw^{QHdsJB(wRd>t_YXm-?CLn8^W%cOUQtKlOV# zL10|DRhg0S`fh?vt@~5oC|hT`$Jr)p#>zFBGc(!n%>4%nd+2}V+6?@_R5&P@kT|NF zhk z={LLBXS340EtP+SGm1;Q=7FEjuK3Ft6;(<3IpwNlMmN;Xfqwq~$ey$EdRv~ey={L> z)3b)sV{2j13sleGt|-$WV^|dhC+0V&`4;7bu@H^Z!S+K#I3c51P?RA}(!j@YYRy3= zeki%-Wu>3SB0+u{&-jsOl2g_nSO(W&pd(}k5-rlfVYPoi`mM&IW_qo}iWCKj5up5U zX4)I4a3h{$1Vp7{Z7>p8BX0W%R8SK(Sn?84W`gV49tQKYAd@>VD(-rb`b-HY(XO5A z?kBt!hb!+GK7lPfKuIE&JNt^Xt5>v=3F~u7sb^At+=7Y|>+K10dCU;=%a^B10eMbS zYUV{De9?byc{=Z<*}ELhosT-_slEmCW9~ch>}fZ4v{!f&-r`}3GnmF0Od||_hx72e z7!SY8qYO^Iq2c$q+P=?|=ZG>RT=hQ2Rqw-H)m;a5zOnViJNGMFXU*(1(!V!4;P*kw zGkC#}^J`0jLb29d6xkkF+_v{YT=Dc4dwlFX6;FSP)&yS@pQ_WGv~SNL^-N2+1g?+Y z?F>=7Z;!80dc?Hs#xD49O`S3za*iX99+JNS9z7`cvpJPYKbfWN(Q`0AZ$dE+KYrwV zgrv=meJID_CC1=V!iI`UMMx;nGbA@ha{bL|1lvp`F|Zb^6@x&V?e=!pwyr^?%Xg0} zeJ+2=vPIgixZH)0g$@;t2iRNm@q_p`X<%kRM)1|D*&ud%u3BAC-|e7=P40RL$0##a zaHDPi>ATx>l0*T#Qh^F4QZ?l(@AarI-(CAYw}7I(OYiplSmuzIK(g7|{1YcJhc)F9 z8uoNPvL@!oeSBqF6=Z$veK|(C_c*-EcQ=1(pKAy62l%xDp2Ez2MC6I@vD^td32*m6 zODXIz!Zu9rru`HMVTwf~OTQa@)Pt~~!y~P*HzwtgiSfyNq#gCebAN!og^#}r!)bJ1 zhT&*CCd^HHJQJCzIGHOUBUJ{s@Ua5$HHOyLJQ9y@Pdo97YEmQcxzZ85jw!vn`iy_4 zasI26_mZ*6a(DGM>+89YOc@mb^T^xITfbZx1tgq59a8_!Oaxs;`$MUBi5< z;ZjsbFXWsgIB-jZOmhHnWA9tFAI3z8$@;H<(Cp~-kW-YDCM&4@h4Yo%Z+~~Fy5V|q z6V97h0sf8fOiY!|eqv+^Y?&?s~GfTkK)`jpV*)n=;wo8Sv5luE7qsNt3-#Xnc70b2e#TYm-9>D+0|ElW++-1YZe)xWhWx4FCWD diff --git a/mrv2/docs/es/python_api/cmd.html b/mrv2/docs/es/python_api/cmd.html index 8f5b5b13c..6f009944c 100644 --- a/mrv2/docs/es/python_api/cmd.html +++ b/mrv2/docs/es/python_api/cmd.html @@ -67,6 +67,7 @@
    • prefsPath()
    • rootPath()
    • save()
    • +
    • saveOTIO()
    • savePDF()
    • saveSession()
    • saveSessionAs()
    • @@ -224,6 +225,12 @@

      Grabar una película o secuencia de la capa de frente.

    +
    +
    +mrv2.cmd.saveOTIO(file: str) None
    +

    Crear una línea de tiempo desde el clip seleccionado.

    +
    +
    mrv2.cmd.savePDF(file: str) bool
    diff --git a/mrv2/docs/es/python_api/index.html b/mrv2/docs/es/python_api/index.html index b14e21fd1..1cfd30d5d 100644 --- a/mrv2/docs/es/python_api/index.html +++ b/mrv2/docs/es/python_api/index.html @@ -115,6 +115,7 @@
  • prefsPath()
  • rootPath()
  • save()
  • +
  • saveOTIO()
  • savePDF()
  • saveSession()
  • saveSessionAs()
  • diff --git a/mrv2/docs/es/searchindex.js b/mrv2/docs/es/searchindex.js index ce075056b..14dfbd373 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/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": [], "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, "currentsession": [2, 4], "opensession": [2, 4], "setcurrentsession": [2, 4], "sets": []}, "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, "", "currentSession"], [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, "", "open"], [2, 4, 1, "", "openSession"], [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, "", "setCurrentSession"], [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"]], "currentsession() (en el m\u00f3dulo mrv2.cmd)": [[2, "mrv2.cmd.currentSession"]], "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"]], "open() (en el m\u00f3dulo mrv2.cmd)": [[2, "mrv2.cmd.open"]], "opensession() (en el m\u00f3dulo mrv2.cmd)": [[2, "mrv2.cmd.openSession"]], "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"]], "setcurrentsession() (en el m\u00f3dulo mrv2.cmd)": [[2, "mrv2.cmd.setCurrentSession"]], "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 +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, 2, 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": [], "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": [2, 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": [2, 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": [2, 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, "currentsession": [2, 4], "opensession": [2, 4], "setcurrentsession": [2, 4], "sets": [], "saveoti": [2, 4]}, "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, "", "currentSession"], [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, "", "open"], [2, 4, 1, "", "openSession"], [2, 4, 1, "", "prefsPath"], [2, 4, 1, "", "rootPath"], [2, 4, 1, "", "save"], [2, 4, 1, "", "saveOTIO"], [2, 4, 1, "", "savePDF"], [2, 4, 1, "", "saveSession"], [2, 4, 1, "", "saveSessionAs"], [2, 4, 1, "", "setCompareOptions"], [2, 4, 1, "", "setCurrentSession"], [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"]], "currentsession() (en el m\u00f3dulo mrv2.cmd)": [[2, "mrv2.cmd.currentSession"]], "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"]], "open() (en el m\u00f3dulo mrv2.cmd)": [[2, "mrv2.cmd.open"]], "opensession() (en el m\u00f3dulo mrv2.cmd)": [[2, "mrv2.cmd.openSession"]], "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"]], "saveotio() (en el m\u00f3dulo mrv2.cmd)": [[2, "mrv2.cmd.saveOTIO"]], "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"]], "setcurrentsession() (en el m\u00f3dulo mrv2.cmd)": [[2, "mrv2.cmd.setCurrentSession"]], "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/mrvPy/Cmds.cpp b/mrv2/lib/mrvPy/Cmds.cpp index e7d0e75fe..67eda345c 100644 --- a/mrv2/lib/mrvPy/Cmds.cpp +++ b/mrv2/lib/mrvPy/Cmds.cpp @@ -334,6 +334,16 @@ namespace mrv2 save_movie(file, App::ui, opts); } + /** + * \brief Save an .otio file with relative paths if possible. + * + * @param file The .otio file, like D:/movies/EDL.otio + */ + void saveOTIO(const std::string& file) + { + save_timeline_to_disk(file); + } + #ifdef MRV2_PDF /** * \brief Save a PDF document. @@ -519,6 +529,11 @@ Used to run main commands and get and set the display, image, compare, LUT optio _("Save a movie or sequence from the front layer."), py::arg("file"), py::arg("options") = mrv::SaveOptions()); + cmds.def( + "saveOTIO", &mrv2::cmd::saveOTIO, + _("Save an .otio file from the current selected image."), + py::arg("file")); + #ifdef MRV2_PDF cmds.def( "savePDF", &mrv2::cmd::savePDF, diff --git a/mrv2/po/es.po b/mrv2/po/es.po index 43b1fed7c..5a4f606c4 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-09 11:31-0300\n" +"POT-Creation-Date: 2023-10-09 15:32-0300\n" "PO-Revision-Date: 2023-02-11 13:42-0300\n" "Last-Translator: Gonzalo Garramuño \n" "Language-Team: Spanish \n" @@ -1927,6 +1927,19 @@ msgstr "Atrapé excepción: " msgid "Expanded OCIO config to:" msgstr "Config OCIO expandida a:" +msgid "" +"Expected a handle to a Python function or to a tuple containing a Python " +"function and a string with menu options in it." +msgstr "" +"Se esperaba un identificador para una función de Python o para una tupla que contiene una función de Python y una cadena de texto con opciones de menú, como __divider__." + +msgid "" +"Expected a tuple containing a Python function and a string with menu options " +"in it." +msgstr "" +"Se esperaba un tuple conteniendo una función de Python y ona cadena de texto " +"con opciones de menú, como __divider__" + msgid "Exposure Less" msgstr "Menor Exposición" @@ -2429,6 +2442,20 @@ msgstr "Imagen/Versión/Previa" msgid "Images (*.{" msgstr "Imagenes (*.{" +msgid "" +"In '{0}' expected a function a tuple containing a Python function and a " +"string with menu options in it." +msgstr "" +"En '{0}' experaba un tuple conteniendo una función de Python y una cadena " +"de texto con opciones de menú en ella." + +msgid "" +"In '{0}' expected a function as a value or a tuple containing a Python " +"function and a string with menu options in it." +msgstr "" +"En '{0}' experaba una función como valor o un tuple conteniendo una función " +"de Python y una cadena de texto con opciones de menu en ella." + msgid "In High" msgstr "In Alto" @@ -3801,6 +3828,9 @@ msgstr "Grabar una película o secuencia de la capa de frente." msgid "Save a session file." msgstr "Grabar Sesión." +msgid "Save an .otio file from the current selected image." +msgstr "Crear una línea de tiempo desde el clip seleccionado." + msgid "Save annotations." msgstr "Grabar Anotaciones." diff --git a/mrv2/po/messages.pot b/mrv2/po/messages.pot index e800883fd..dbdba34d5 100644 --- a/mrv2/po/messages.pot +++ b/mrv2/po/messages.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: mrv2 v0.8.0\n" "Report-Msgid-Bugs-To: ggarra13@gmail.com\n" -"POT-Creation-Date: 2023-10-09 11:31-0300\n" +"POT-Creation-Date: 2023-10-09 15:32-0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -17,7 +17,7 @@ msgstr "" "Content-Type: text/plain; charset=CHARSET\n" "Content-Transfer-Encoding: 8bit\n" -#: mrvPy/Plugin.cpp:239 +#: mrvPy/Plugin.cpp:248 msgid "" "\n" "\n" @@ -87,7 +87,7 @@ msgid "" ":attr:`start_time`/:attr:`end_time_exclusive` and bound arguments.\n" msgstr "" -#: mrvPy/Cmds.cpp:420 +#: mrvPy/Cmds.cpp:432 msgid "" "\n" "Command module.\n" @@ -136,7 +136,7 @@ msgid "" "duration of 10.\n" msgstr "" -#: mrvPy/Plugin.cpp:231 +#: mrvPy/Plugin.cpp:240 msgid "" "\n" "Dictionary of menu entries with callbacks, like:\n" @@ -179,7 +179,7 @@ msgid "" "Contains all functions and classes related to the playlists.\n" msgstr "" -#: mrvPy/Plugin.cpp:217 +#: mrvPy/Plugin.cpp:226 msgid "" "\n" "Plugin module.\n" @@ -835,19 +835,19 @@ msgstr "" msgid "A client connected from {0}" msgstr "" -#: mrvApp/App.cpp:266 +#: mrvApp/App.cpp:269 msgid "A/B comparison \"B\" file name." msgstr "" -#: mrvApp/App.cpp:269 +#: mrvApp/App.cpp:272 msgid "A/B comparison mode." msgstr "" -#: mrvApp/App.cpp:274 +#: mrvApp/App.cpp:277 msgid "A/B comparison wipe center." msgstr "" -#: mrvApp/App.cpp:278 +#: mrvApp/App.cpp:281 msgid "A/B comparison wipe rotation." msgstr "" @@ -862,11 +862,11 @@ msgid "AVI Movie" msgstr "" #: mrvFl/mrvCallbacks.cpp:114 mrvFl/mrvCallbacks.cpp:736 -#: mrvFl/mrvCallbacks.cpp:767 mrvUI/mrvMenus.cpp:474 +#: mrvFl/mrvCallbacks.cpp:767 mrvUI/mrvMenus.cpp:476 msgid "About" msgstr "" -#: mrvApp/App.cpp:473 mrvUI/mrvMenus.cpp:1156 +#: mrvApp/App.cpp:476 mrvUI/mrvMenus.cpp:1197 #: /media/gga/datos/code/applications/mrv2/BUILD-Linux-amd64/Release/mrv2/src/mrv2-build/lib/mrvWidgets/mrvAboutUI.cxx:24 msgid "About mrv2" msgstr "" @@ -1035,7 +1035,7 @@ msgid "Annotation already existed at this time" msgstr "" #: mrvFl/mrvCallbacks.cpp:93 mrvFl/mrvCallbacks.cpp:1578 -#: mrvFl/mrvCallbacks.cpp:1616 mrvUI/mrvMenus.cpp:403 +#: mrvFl/mrvCallbacks.cpp:1616 mrvUI/mrvMenus.cpp:405 #: /media/gga/datos/code/applications/mrv2/BUILD-Linux-amd64/Release/mrv2/src/mrv2-build/lib/mrvWidgets/mrvPreferencesUI.cxx:1447 msgid "Annotations" msgstr "" @@ -1134,7 +1134,7 @@ msgstr "" msgid "Audio file name" msgstr "" -#: mrvApp/App.cpp:263 +#: mrvApp/App.cpp:266 msgid "Audio file name." msgstr "" @@ -1244,7 +1244,7 @@ msgid "" "calculate the Read Ahead and Read Behind" msgstr "" -#: mrvPy/Cmds.cpp:501 +#: mrvPy/Cmds.cpp:513 msgid "" "Call Fl::check to update the GUI and return the number of seconds that " "elapsed." @@ -1289,7 +1289,7 @@ msgid "" "annotation already exists." msgstr "" -#: mrvApp/App.cpp:458 +#: mrvApp/App.cpp:461 msgid "Cannot create window" msgstr "" @@ -1397,7 +1397,7 @@ msgstr "" msgid "Close Current" msgstr "" -#: mrvPy/Cmds.cpp:439 +#: mrvPy/Cmds.cpp:451 msgid "Close all file items." msgstr "" @@ -1421,7 +1421,7 @@ msgstr "" msgid "Close the current A file." msgstr "" -#: mrvPy/Cmds.cpp:436 +#: mrvPy/Cmds.cpp:448 msgid "Close the file item." msgstr "" @@ -1445,11 +1445,11 @@ msgstr "" #: mrvFl/mrvCallbacks.cpp:88 mrvFl/mrvCallbacks.cpp:1570 #: mrvFl/mrvCallbacks.cpp:1608 mrvGL/mrvTimelineViewport.cpp:1679 #: mrvGL/mrvTimelineViewport.cpp:1681 mrvGL/mrvTimelineViewport.cpp:1683 -#: mrvUI/mrvMenus.cpp:354 +#: mrvUI/mrvMenus.cpp:356 msgid "Color" msgstr "" -#: mrvFl/mrvCallbacks.cpp:89 mrvUI/mrvMenus.cpp:361 +#: mrvFl/mrvCallbacks.cpp:89 mrvUI/mrvMenus.cpp:363 msgid "Color Area" msgstr "" @@ -1473,7 +1473,7 @@ msgstr "" msgid "Color channels :class:`mrv2.image.Channels`." msgstr "" -#: mrvApp/App.cpp:303 +#: mrvApp/App.cpp:306 msgid "Color configuration file name (config.ocio)." msgstr "" @@ -1497,7 +1497,7 @@ msgstr "" msgid "Common Settings" msgstr "" -#: mrvPanels/mrvPanelsAux.h:17 mrvFl/mrvCallbacks.cpp:90 mrvUI/mrvMenus.cpp:382 +#: mrvPanels/mrvPanelsAux.h:17 mrvFl/mrvCallbacks.cpp:90 mrvUI/mrvMenus.cpp:384 msgid "Compare" msgstr "" @@ -1541,7 +1541,7 @@ msgstr "" msgid "Compare the A and B files side by side" msgstr "" -#: mrvPy/Cmds.cpp:432 +#: mrvPy/Cmds.cpp:444 msgid "Compare two file items with a compare mode." msgstr "" @@ -1570,7 +1570,7 @@ msgstr "" msgid "Connect" msgstr "" -#: mrvApp/App.cpp:368 +#: mrvApp/App.cpp:371 msgid "Connect to a server at . Use -port to specify a port number." msgstr "" @@ -1643,7 +1643,7 @@ msgstr "" msgid "Could not paste {0}. Error {1}." msgstr "" -#: mrvApp/App.cpp:420 +#: mrvApp/App.cpp:423 msgid "Could not read python script '{0}'" msgstr "" @@ -1747,7 +1747,7 @@ msgstr "" msgid "Data Window" msgstr "" -#: mrvApp/App.cpp:260 +#: mrvApp/App.cpp:263 msgid "Debug verbosity." msgstr "" @@ -1789,7 +1789,7 @@ msgstr "" msgid "Depth" msgstr "" -#: mrvFl/mrvCallbacks.cpp:95 mrvUI/mrvMenus.cpp:396 +#: mrvFl/mrvCallbacks.cpp:95 mrvUI/mrvMenus.cpp:398 msgid "Devices" msgstr "" @@ -1839,7 +1839,7 @@ msgstr "" msgid "Display Window" msgstr "" -#: mrvApp/App.cpp:309 +#: mrvApp/App.cpp:312 msgid "Display color space." msgstr "" @@ -1966,43 +1966,43 @@ msgstr "" msgid "Edit/&Copy" msgstr "" -#: mrvUI/mrvMenus.cpp:938 +#: mrvUI/mrvMenus.cpp:940 msgid "Edit/Frame/Copy" msgstr "" -#: mrvUI/mrvMenus.cpp:935 +#: mrvUI/mrvMenus.cpp:937 msgid "Edit/Frame/Cut" msgstr "" -#: mrvUI/mrvMenus.cpp:944 +#: mrvUI/mrvMenus.cpp:946 msgid "Edit/Frame/Insert" msgstr "" -#: mrvUI/mrvMenus.cpp:941 +#: mrvUI/mrvMenus.cpp:943 msgid "Edit/Frame/Paste" msgstr "" -#: mrvUI/mrvMenus.cpp:972 +#: mrvUI/mrvMenus.cpp:974 msgid "Edit/Redo" msgstr "" -#: mrvUI/mrvMenus.cpp:951 +#: mrvUI/mrvMenus.cpp:953 msgid "Edit/Remove" msgstr "" -#: mrvUI/mrvMenus.cpp:960 +#: mrvUI/mrvMenus.cpp:962 msgid "Edit/Remove With Gap" msgstr "" -#: mrvUI/mrvMenus.cpp:964 +#: mrvUI/mrvMenus.cpp:966 msgid "Edit/Roll" msgstr "" -#: mrvUI/mrvMenus.cpp:948 +#: mrvUI/mrvMenus.cpp:950 msgid "Edit/Slice" msgstr "" -#: mrvUI/mrvMenus.cpp:969 +#: mrvUI/mrvMenus.cpp:971 msgid "Edit/Undo" msgstr "" @@ -2068,7 +2068,7 @@ msgstr "" msgid "English" msgstr "" -#: mrvFl/mrvCallbacks.cpp:97 mrvUI/mrvMenus.cpp:465 +#: mrvFl/mrvCallbacks.cpp:97 mrvUI/mrvMenus.cpp:467 msgid "Environment Map" msgstr "" @@ -2121,6 +2121,18 @@ msgstr "" msgid "Expanded OCIO config to:" msgstr "" +#: mrvPy/Plugin.cpp:186 +msgid "" +"Expected a handle to a Python function or to a tuple containing a Python " +"function and a string with menu options in it." +msgstr "" + +#: mrvPy/Plugin.cpp:179 +msgid "" +"Expected a tuple containing a Python function and a string with menu options " +"in it." +msgstr "" + #: mrvCore/mrvHotkey.cpp:432 msgid "Exposure Less" msgstr "" @@ -2175,11 +2187,11 @@ msgstr "" msgid "FPS" msgstr "" -#: mrvFl/mrvSession.cpp:324 +#: mrvFl/mrvSession.cpp:328 msgid "Failed to open the file for reading." msgstr "" -#: mrvPanels/mrvPythonPanel.cpp:488 mrvFl/mrvSession.cpp:287 +#: mrvPanels/mrvPythonPanel.cpp:478 mrvFl/mrvSession.cpp:291 msgid "Failed to open the file for writing." msgstr "" @@ -2188,8 +2200,8 @@ msgstr "" msgid "Failed to retrieve {0}." msgstr "" -#: mrvPanels/mrvPythonPanel.cpp:497 mrvFl/mrvSession.cpp:295 -#: mrvFl/mrvSession.cpp:335 +#: mrvPanels/mrvPythonPanel.cpp:487 mrvFl/mrvSession.cpp:299 +#: mrvFl/mrvSession.cpp:339 msgid "Failed to write to the file." msgstr "" @@ -2213,60 +2225,60 @@ msgstr "" msgid "File extension cannot be empty." msgstr "" -#: mrvUI/mrvMenus.cpp:113 +#: mrvUI/mrvMenus.cpp:115 msgid "File/Close All" msgstr "" -#: mrvUI/mrvMenus.cpp:109 +#: mrvUI/mrvMenus.cpp:111 msgid "File/Close Current" msgstr "" -#: mrvUI/mrvMenus.cpp:78 +#: mrvUI/mrvMenus.cpp:80 msgid "File/Open/Directory" msgstr "" -#: mrvUI/mrvMenus.cpp:70 +#: mrvUI/mrvMenus.cpp:72 msgid "File/Open/Movie or Sequence" msgstr "" -#: mrvUI/mrvMenus.cpp:82 +#: mrvUI/mrvMenus.cpp:84 msgid "File/Open/Session" msgstr "" -#: mrvUI/mrvMenus.cpp:74 +#: mrvUI/mrvMenus.cpp:76 msgid "File/Open/With Separate Audio" msgstr "" -#: mrvUI/mrvMenus.cpp:130 +#: mrvUI/mrvMenus.cpp:132 msgid "File/Quit" msgstr "" -#: mrvUI/mrvMenus.cpp:125 +#: mrvUI/mrvMenus.cpp:127 #, c-format msgid "File/Recent/%s" msgstr "" -#: mrvUI/mrvMenus.cpp:90 +#: mrvUI/mrvMenus.cpp:92 msgid "File/Save/Movie or Sequence" msgstr "" -#: mrvUI/mrvMenus.cpp:96 +#: mrvUI/mrvMenus.cpp:98 msgid "File/Save/OTIO EDL Timeline" msgstr "" -#: mrvUI/mrvMenus.cpp:99 +#: mrvUI/mrvMenus.cpp:101 msgid "File/Save/PDF Document" msgstr "" -#: mrvUI/mrvMenus.cpp:102 +#: mrvUI/mrvMenus.cpp:104 msgid "File/Save/Session" msgstr "" -#: mrvUI/mrvMenus.cpp:105 +#: mrvUI/mrvMenus.cpp:107 msgid "File/Save/Session As" msgstr "" -#: mrvUI/mrvMenus.cpp:93 +#: mrvUI/mrvMenus.cpp:95 msgid "File/Save/Single Frame" msgstr "" @@ -2284,7 +2296,7 @@ msgstr "" msgid "Filename of the clip" msgstr "" -#: mrvPanels/mrvPanelsAux.h:17 mrvFl/mrvCallbacks.cpp:87 mrvUI/mrvMenus.cpp:347 +#: mrvPanels/mrvPanelsAux.h:17 mrvFl/mrvCallbacks.cpp:87 mrvUI/mrvMenus.cpp:349 msgid "Files" msgstr "" @@ -2554,11 +2566,11 @@ msgstr "" msgid "Get maximum file sequence digits." msgstr "" -#: mrvPy/Cmds.cpp:497 +#: mrvPy/Cmds.cpp:509 msgid "Get the layers of the timeline (GUI)." msgstr "" -#: mrvPy/Cmds.cpp:511 +#: mrvPy/Cmds.cpp:523 msgid "Get the playback volume." msgstr "" @@ -2639,11 +2651,11 @@ msgstr "" msgid "Height of clip" msgstr "" -#: mrvUI/mrvMenus.cpp:1147 +#: mrvUI/mrvMenus.cpp:1188 msgid "Help/About" msgstr "" -#: mrvUI/mrvMenus.cpp:1144 +#: mrvUI/mrvMenus.cpp:1185 msgid "Help/Documentation" msgstr "" @@ -2655,15 +2667,15 @@ msgstr "" msgid "Hex Values" msgstr "" -#: mrvApp/App.cpp:476 mrvUI/mrvMenus.cpp:1159 +#: mrvApp/App.cpp:479 mrvUI/mrvMenus.cpp:1200 msgid "Hide Others" msgstr "" -#: mrvApp/App.cpp:475 mrvUI/mrvMenus.cpp:1158 +#: mrvApp/App.cpp:478 mrvUI/mrvMenus.cpp:1199 msgid "Hide mrv2" msgstr "" -#: mrvFl/mrvCallbacks.cpp:108 mrvUI/mrvMenus.cpp:368 +#: mrvFl/mrvCallbacks.cpp:108 mrvUI/mrvMenus.cpp:370 msgid "Histogram" msgstr "" @@ -2698,7 +2710,7 @@ msgstr "" msgid "Hotkey for..." msgstr "" -#: mrvFl/mrvCallbacks.cpp:111 mrvFl/mrvCallbacks.cpp:734 mrvUI/mrvMenus.cpp:473 +#: mrvFl/mrvCallbacks.cpp:111 mrvFl/mrvCallbacks.cpp:734 mrvUI/mrvMenus.cpp:475 #: /media/gga/datos/code/applications/mrv2/BUILD-Linux-amd64/Release/mrv2/src/mrv2-build/lib/mrvWidgets/mrvHotkeyUI.cxx:59 msgid "Hotkeys" msgstr "" @@ -2780,19 +2792,19 @@ msgstr "" msgid "Image zoom setting." msgstr "" -#: mrvUI/mrvMenus.cpp:921 +#: mrvUI/mrvMenus.cpp:923 msgid "Image/Version/First" msgstr "" -#: mrvUI/mrvMenus.cpp:924 +#: mrvUI/mrvMenus.cpp:926 msgid "Image/Version/Last" msgstr "" -#: mrvUI/mrvMenus.cpp:930 +#: mrvUI/mrvMenus.cpp:932 msgid "Image/Version/Next" msgstr "" -#: mrvUI/mrvMenus.cpp:927 +#: mrvUI/mrvMenus.cpp:929 msgid "Image/Version/Previous" msgstr "" @@ -2801,6 +2813,18 @@ msgstr "" msgid "Images (*.{" msgstr "" +#: mrvUI/mrvMenus.cpp:1170 +msgid "" +"In '{0}' expected a function a tuple containing a Python function and a " +"string with menu options in it." +msgstr "" + +#: mrvUI/mrvMenus.cpp:1145 +msgid "" +"In '{0}' expected a function as a value or a tuple containing a Python " +"function and a string with menu options in it." +msgstr "" + #: mrvPanels/mrvColorPanel.cpp:373 msgid "In High" msgstr "" @@ -2835,7 +2859,7 @@ msgstr "" msgid "Input Color Space" msgstr "" -#: mrvApp/App.cpp:306 +#: mrvApp/App.cpp:309 msgid "Input color space." msgstr "" @@ -2913,7 +2937,7 @@ msgstr "" msgid "LUT" msgstr "" -#: mrvApp/App.cpp:315 +#: mrvApp/App.cpp:318 msgid "LUT file name." msgstr "" @@ -2921,7 +2945,7 @@ msgstr "" msgid "LUT filename." msgstr "" -#: mrvApp/App.cpp:318 +#: mrvApp/App.cpp:321 msgid "LUT operation order." msgstr "" @@ -3084,7 +3108,7 @@ msgstr "" msgid "Logarithmic" msgstr "" -#: mrvFl/mrvCallbacks.cpp:113 mrvUI/mrvMenus.cpp:417 +#: mrvFl/mrvCallbacks.cpp:113 mrvUI/mrvMenus.cpp:419 msgid "Logs" msgstr "" @@ -3215,7 +3239,7 @@ msgstr "" msgid "Media" msgstr "" -#: mrvFl/mrvCallbacks.cpp:92 mrvUI/mrvMenus.cpp:458 +#: mrvFl/mrvCallbacks.cpp:92 mrvUI/mrvMenus.cpp:460 msgid "Media Information" msgstr "" @@ -3317,7 +3341,7 @@ msgid "Neither video nor audio tracks found." msgstr "" #: mrvPanels/mrvPanelsAux.h:18 mrvFl/mrvCallbacks.cpp:103 -#: mrvUI/mrvMenus.cpp:433 +#: mrvUI/mrvMenus.cpp:435 #: /media/gga/datos/code/applications/mrv2/BUILD-Linux-amd64/Release/mrv2/src/mrv2-build/lib/mrvWidgets/mrvPreferencesUI.cxx:1372 #: /media/gga/datos/code/applications/mrv2/BUILD-Linux-amd64/Release/mrv2/src/mrv2-build/lib/mrvWidgets/mrvPreferencesUI.cxx:1575 msgid "Network" @@ -3347,7 +3371,7 @@ msgstr "" msgid "Next:" msgstr "" -#: mrvPanels/mrvPythonPanel.cpp:480 mrvPanels/mrvImageInfoPanel.cpp:1674 +#: mrvPanels/mrvPythonPanel.cpp:470 mrvPanels/mrvImageInfoPanel.cpp:1674 #: mrvFl/mrvLanguages.cpp:136 mrvFl/mrvHotkey.cpp:98 msgid "No" msgstr "" @@ -3356,7 +3380,7 @@ msgstr "" msgid "No item selected" msgstr "" -#: mrvPanels/mrvPythonPanel.cpp:731 +#: mrvPanels/mrvPythonPanel.cpp:721 #, c-format msgid "No occurrences of '%s' found!" msgstr "" @@ -3377,7 +3401,7 @@ msgstr "" msgid "No playlist selected." msgstr "" -#: mrvPy/Cmds.cpp:390 +#: mrvPy/Cmds.cpp:402 msgid "No session name established, cannot save." msgstr "" @@ -3560,11 +3584,11 @@ msgstr "" msgid "Open a filename with audio" msgstr "" -#: mrvPy/Cmds.cpp:539 +#: mrvPy/Cmds.cpp:555 msgid "Open a session file." msgstr "" -#: mrvPy/Cmds.cpp:427 +#: mrvPy/Cmds.cpp:439 msgid "Open file with optional audio." msgstr "" @@ -3596,7 +3620,7 @@ msgstr "" msgid "OpenGL" msgstr "" -#: mrvApp/App.cpp:282 +#: mrvApp/App.cpp:285 msgid "OpenTimelineIO Edit mode." msgstr "" @@ -3686,11 +3710,11 @@ msgstr "" msgid "Pan and Zoom" msgstr "" -#: mrvUI/mrvMenus.cpp:272 +#: mrvUI/mrvMenus.cpp:274 msgid "Panel/" msgstr "" -#: mrvUI/mrvMenus.cpp:263 +#: mrvUI/mrvMenus.cpp:265 msgid "Panel/One Panel Only" msgstr "" @@ -3824,7 +3848,7 @@ msgstr "" msgid "Play sequence forward." msgstr "" -#: mrvApp/App.cpp:252 +#: mrvApp/App.cpp:255 msgid "Play timelines, movies, and image sequences." msgstr "" @@ -3841,15 +3865,15 @@ msgstr "" msgid "Playback Ping Pong" msgstr "" -#: mrvApp/App.cpp:291 +#: mrvApp/App.cpp:294 msgid "Playback loop mode." msgstr "" -#: mrvApp/App.cpp:287 +#: mrvApp/App.cpp:290 msgid "Playback mode." msgstr "" -#: mrvApp/App.cpp:284 +#: mrvApp/App.cpp:287 msgid "Playback speed." msgstr "" @@ -3857,79 +3881,79 @@ msgstr "" msgid "Playback state :class:`mrv2.timeline.Playbacks` of the File Media." msgstr "" -#: mrvUI/mrvMenus.cpp:791 +#: mrvUI/mrvMenus.cpp:793 msgid "Playback/Annotation/Clear" msgstr "" -#: mrvUI/mrvMenus.cpp:794 +#: mrvUI/mrvMenus.cpp:796 msgid "Playback/Annotation/Clear All" msgstr "" -#: mrvUI/mrvMenus.cpp:690 +#: mrvUI/mrvMenus.cpp:692 msgid "Playback/Backwards" msgstr "" -#: mrvUI/mrvMenus.cpp:683 +#: mrvUI/mrvMenus.cpp:685 msgid "Playback/Forwards" msgstr "" -#: mrvUI/mrvMenus.cpp:761 +#: mrvUI/mrvMenus.cpp:763 msgid "Playback/Go to/End" msgstr "" -#: mrvUI/mrvMenus.cpp:785 +#: mrvUI/mrvMenus.cpp:787 msgid "Playback/Go to/Next Annotation" msgstr "" -#: mrvUI/mrvMenus.cpp:768 +#: mrvUI/mrvMenus.cpp:770 msgid "Playback/Go to/Next Frame" msgstr "" -#: mrvUI/mrvMenus.cpp:781 +#: mrvUI/mrvMenus.cpp:783 msgid "Playback/Go to/Previous Annotation" msgstr "" -#: mrvUI/mrvMenus.cpp:765 +#: mrvUI/mrvMenus.cpp:767 msgid "Playback/Go to/Previous Frame" msgstr "" -#: mrvUI/mrvMenus.cpp:758 +#: mrvUI/mrvMenus.cpp:760 msgid "Playback/Go to/Start" msgstr "" -#: mrvUI/mrvMenus.cpp:735 +#: mrvUI/mrvMenus.cpp:737 msgid "Playback/Loop Playback" msgstr "" -#: mrvUI/mrvMenus.cpp:741 +#: mrvUI/mrvMenus.cpp:743 msgid "Playback/Playback Once" msgstr "" -#: mrvUI/mrvMenus.cpp:747 +#: mrvUI/mrvMenus.cpp:749 msgid "Playback/Playback Ping Pong" msgstr "" -#: mrvUI/mrvMenus.cpp:676 +#: mrvUI/mrvMenus.cpp:678 msgid "Playback/Stop" msgstr "" -#: mrvUI/mrvMenus.cpp:711 +#: mrvUI/mrvMenus.cpp:713 msgid "Playback/Toggle In Point" msgstr "" -#: mrvUI/mrvMenus.cpp:717 +#: mrvUI/mrvMenus.cpp:719 msgid "Playback/Toggle Out Point" msgstr "" -#: mrvUI/mrvMenus.cpp:700 +#: mrvUI/mrvMenus.cpp:702 msgid "Playback/Toggle Playback" msgstr "" -#: mrvPanels/mrvPanelsAux.h:18 mrvFl/mrvCallbacks.cpp:91 mrvUI/mrvMenus.cpp:389 +#: mrvPanels/mrvPanelsAux.h:18 mrvFl/mrvCallbacks.cpp:91 mrvUI/mrvMenus.cpp:391 msgid "Playlist" msgstr "" -#: mrvPy/Plugin.cpp:197 +#: mrvPy/Plugin.cpp:206 msgid "" "Please override the menus method by returning a valid dict of key menus, " "values methods." @@ -3939,7 +3963,7 @@ msgstr "" msgid "Port" msgstr "" -#: mrvApp/App.cpp:372 +#: mrvApp/App.cpp:375 msgid "" "Port number for the server to listen to or for the client to connect to." msgstr "" @@ -3954,7 +3978,7 @@ msgstr "" msgid "Positioning" msgstr "" -#: mrvFl/mrvCallbacks.cpp:112 mrvFl/mrvCallbacks.cpp:732 mrvUI/mrvMenus.cpp:473 +#: mrvFl/mrvCallbacks.cpp:112 mrvFl/mrvCallbacks.cpp:732 mrvUI/mrvMenus.cpp:475 #: /media/gga/datos/code/applications/mrv2/BUILD-Linux-amd64/Release/mrv2/src/mrv2-build/lib/mrvWidgets/mrvPreferencesUI.cxx:391 msgid "Preferences" msgstr "" @@ -4039,19 +4063,19 @@ msgstr "" msgid "Protocols" msgstr "" -#: mrvFl/mrvCallbacks.cpp:100 mrvUI/mrvMenus.cpp:425 +#: mrvFl/mrvCallbacks.cpp:100 mrvUI/mrvMenus.cpp:427 msgid "Python" msgstr "" -#: mrvApp/App.cpp:439 +#: mrvApp/App.cpp:442 msgid "Python Error: " msgstr "" -#: mrvApp/App.cpp:324 +#: mrvApp/App.cpp:327 msgid "Python Script to run and exit." msgstr "" -#: mrvPanels/mrvPythonPanel.cpp:477 +#: mrvPanels/mrvPythonPanel.cpp:467 msgid "Python file {0} already exists. Do you want to overwrite it?" msgstr "" @@ -4063,7 +4087,7 @@ msgstr "" msgid "Quit Program" msgstr "" -#: mrvApp/App.cpp:479 mrvUI/mrvMenus.cpp:1161 +#: mrvApp/App.cpp:482 mrvUI/mrvMenus.cpp:1202 msgid "Quit mrv2" msgstr "" @@ -4232,77 +4256,77 @@ msgstr "" msgid "Render Width" msgstr "" -#: mrvUI/mrvMenus.cpp:599 +#: mrvUI/mrvMenus.cpp:601 msgid "Render/Alpha Blend/None" msgstr "" -#: mrvUI/mrvMenus.cpp:613 +#: mrvUI/mrvMenus.cpp:615 msgid "Render/Alpha Blend/Premultiplied" msgstr "" -#: mrvUI/mrvMenus.cpp:606 +#: mrvUI/mrvMenus.cpp:608 msgid "Render/Alpha Blend/Straight" msgstr "" -#: mrvUI/mrvMenus.cpp:533 +#: mrvUI/mrvMenus.cpp:535 msgid "Render/Alpha Channel" msgstr "" -#: mrvUI/mrvMenus.cpp:561 +#: mrvUI/mrvMenus.cpp:563 msgid "Render/Black Background " msgstr "" -#: mrvUI/mrvMenus.cpp:524 +#: mrvUI/mrvMenus.cpp:526 msgid "Render/Blue Channel" msgstr "" -#: mrvUI/mrvMenus.cpp:497 +#: mrvUI/mrvMenus.cpp:499 msgid "Render/Color Channel" msgstr "" -#: mrvUI/mrvMenus.cpp:515 +#: mrvUI/mrvMenus.cpp:517 msgid "Render/Green Channel " msgstr "" #: mrvGL/mrvTimelineViewport.cpp:1441 mrvGL/mrvTimelineViewport.cpp:1648 -#: mrvUI/mrvMenus.cpp:659 +#: mrvUI/mrvMenus.cpp:661 msgid "Render/Magnify Filter/Linear" msgstr "" -#: mrvUI/mrvMenus.cpp:652 +#: mrvUI/mrvMenus.cpp:654 msgid "Render/Magnify Filter/Nearest" msgstr "" #: mrvGL/mrvTimelineViewport.cpp:1436 mrvGL/mrvTimelineViewport.cpp:1643 -#: mrvUI/mrvMenus.cpp:638 +#: mrvUI/mrvMenus.cpp:640 msgid "Render/Minify Filter/Linear" msgstr "" -#: mrvUI/mrvMenus.cpp:631 +#: mrvUI/mrvMenus.cpp:633 msgid "Render/Minify Filter/Nearest" msgstr "" -#: mrvUI/mrvMenus.cpp:543 +#: mrvUI/mrvMenus.cpp:545 msgid "Render/Mirror X" msgstr "" -#: mrvUI/mrvMenus.cpp:553 +#: mrvUI/mrvMenus.cpp:555 msgid "Render/Mirror Y" msgstr "" -#: mrvUI/mrvMenus.cpp:506 +#: mrvUI/mrvMenus.cpp:508 msgid "Render/Red Channel" msgstr "" -#: mrvUI/mrvMenus.cpp:573 +#: mrvUI/mrvMenus.cpp:575 msgid "Render/Video Levels/From File" msgstr "" -#: mrvUI/mrvMenus.cpp:587 +#: mrvUI/mrvMenus.cpp:589 msgid "Render/Video Levels/Full Range" msgstr "" -#: mrvUI/mrvMenus.cpp:580 +#: mrvUI/mrvMenus.cpp:582 msgid "Render/Video Levels/Legal Range" msgstr "" @@ -4342,7 +4366,7 @@ msgstr "" msgid "Reset Hotkeys" msgstr "" -#: mrvApp/App.cpp:331 +#: mrvApp/App.cpp:334 msgid "Reset hotkeys to defaults." msgstr "" @@ -4350,7 +4374,7 @@ msgstr "" msgid "Reset hotkeys to saved file." msgstr "" -#: mrvApp/App.cpp:328 +#: mrvApp/App.cpp:331 msgid "Reset settings to defaults." msgstr "" @@ -4403,19 +4427,19 @@ msgstr "" msgid "Return the A file item." msgstr "" -#: mrvPy/Cmds.cpp:458 +#: mrvPy/Cmds.cpp:470 msgid "Return the LUT options." msgstr "" -#: mrvPy/Cmds.cpp:451 +#: mrvPy/Cmds.cpp:463 msgid "Return the display options." msgstr "" -#: mrvPy/Cmds.cpp:474 +#: mrvPy/Cmds.cpp:486 msgid "Return the environment map options." msgstr "" -#: mrvPy/Cmds.cpp:466 +#: mrvPy/Cmds.cpp:478 msgid "Return the image options." msgstr "" @@ -4431,19 +4455,19 @@ msgstr "" msgid "Return the list of layers." msgstr "" -#: mrvPy/Cmds.cpp:447 +#: mrvPy/Cmds.cpp:459 msgid "Return the path to preferences of mrv2." msgstr "" -#: mrvPy/Cmds.cpp:443 +#: mrvPy/Cmds.cpp:455 msgid "Return the root path to the insallation of mrv2." msgstr "" -#: mrvApp/App.cpp:380 +#: mrvApp/App.cpp:383 msgid "Return the version and exit." msgstr "" -#: mrvPy/Cmds.cpp:531 +#: mrvPy/Cmds.cpp:548 msgid "Returns current session file." msgstr "" @@ -4473,7 +4497,7 @@ msgstr "" msgid "Returns the time value for time converted to new_rate." msgstr "" -#: mrvPy/Cmds.cpp:505 +#: mrvPy/Cmds.cpp:517 msgid "Returns true if audio is muted." msgstr "" @@ -4543,7 +4567,7 @@ msgstr "" msgid "Rotation on Y" msgstr "" -#: mrvApp/App.cpp:427 +#: mrvApp/App.cpp:430 msgid "Running python script '{0}'" msgstr "" @@ -4614,18 +4638,22 @@ msgstr "" msgid "Save Single Frame" msgstr "" -#: mrvPy/Cmds.cpp:525 +#: mrvPy/Cmds.cpp:542 msgid "Save a PDF document with all annotations and notes." msgstr "" -#: mrvPy/Cmds.cpp:519 +#: mrvPy/Cmds.cpp:531 msgid "Save a movie or sequence from the front layer." msgstr "" -#: mrvPy/Cmds.cpp:542 mrvPy/Cmds.cpp:545 +#: mrvPy/Cmds.cpp:558 mrvPy/Cmds.cpp:561 msgid "Save a session file." msgstr "" +#: mrvPy/Cmds.cpp:536 +msgid "Save an .otio file from the current selected image." +msgstr "" + #: mrvPy/IO.cpp:24 msgid "Save annotations." msgstr "" @@ -4665,7 +4693,7 @@ msgstr "" msgid "Scripts/%s" msgstr "" -#: mrvPanels/mrvPythonPanel.cpp:318 mrvPanels/mrvPythonPanel.cpp:855 +#: mrvPanels/mrvPythonPanel.cpp:318 mrvPanels/mrvPythonPanel.cpp:845 msgid "Scripts/Add To Script List" msgstr "" @@ -4695,7 +4723,7 @@ msgstr "" msgid "Search" msgstr "" -#: mrvPanels/mrvPythonPanel.cpp:700 +#: mrvPanels/mrvPythonPanel.cpp:690 msgid "Search String:" msgstr "" @@ -4724,7 +4752,7 @@ msgstr "" msgid "Seek to a time in timeline." msgstr "" -#: mrvApp/App.cpp:296 +#: mrvApp/App.cpp:299 msgid "Seek to the given time." msgstr "" @@ -4859,7 +4887,7 @@ msgstr "" msgid "Server stopped." msgstr "" -#: mrvApp/App.cpp:477 mrvUI/mrvMenus.cpp:1160 +#: mrvApp/App.cpp:480 mrvUI/mrvMenus.cpp:1201 msgid "Services" msgstr "" @@ -4867,11 +4895,11 @@ msgstr "" msgid "Session" msgstr "" -#: mrvFl/mrvSession.cpp:308 +#: mrvFl/mrvSession.cpp:312 msgid "Session saved to \"{0}\"." msgstr "" -#: mrvApp/mrvMainControl.cpp:412 +#: mrvApp/mrvMainControl.cpp:411 msgid "Session: " msgstr "" @@ -4963,7 +4991,7 @@ msgstr "" msgid "Set the A file index." msgstr "" -#: mrvPy/Cmds.cpp:461 +#: mrvPy/Cmds.cpp:473 msgid "Set the LUT options." msgstr "" @@ -4971,15 +4999,15 @@ msgstr "" msgid "Set the cache memory setting in gigabytes." msgstr "" -#: mrvPy/Cmds.cpp:486 +#: mrvPy/Cmds.cpp:498 msgid "Set the compare options." msgstr "" -#: mrvPy/Cmds.cpp:455 +#: mrvPy/Cmds.cpp:467 msgid "Set the display options." msgstr "" -#: mrvPy/Cmds.cpp:478 +#: mrvPy/Cmds.cpp:490 msgid "Set the environment map options." msgstr "" @@ -4987,7 +5015,7 @@ msgstr "" msgid "Set the first version for current media." msgstr "" -#: mrvPy/Cmds.cpp:470 +#: mrvPy/Cmds.cpp:482 msgid "Set the image options." msgstr "" @@ -5003,7 +5031,7 @@ msgstr "" msgid "Set the in time of the selected time range of the timeline." msgstr "" -#: mrvApp/App.cpp:299 +#: mrvApp/App.cpp:302 msgid "Set the in/out points range." msgstr "" @@ -5011,7 +5039,7 @@ msgstr "" msgid "Set the last version for current media." msgstr "" -#: mrvPy/Cmds.cpp:508 +#: mrvPy/Cmds.cpp:520 msgid "Set the muting of the audio." msgstr "" @@ -5031,7 +5059,7 @@ msgstr "" msgid "Set the out time of the selected time range of the timeline." msgstr "" -#: mrvPy/Cmds.cpp:514 +#: mrvPy/Cmds.cpp:526 msgid "Set the playback volume." msgstr "" @@ -5043,11 +5071,11 @@ msgstr "" msgid "Set the selected time range of the timeline." msgstr "" -#: mrvPy/Cmds.cpp:494 +#: mrvPy/Cmds.cpp:506 msgid "Set the stereo 3D options." msgstr "" -#: mrvPy/Cmds.cpp:535 +#: mrvPy/Cmds.cpp:552 msgid "Sets the current session file." msgstr "" @@ -5071,7 +5099,7 @@ msgstr "" msgid "Setting OCIO config to default." msgstr "" -#: mrvFl/mrvCallbacks.cpp:98 mrvUI/mrvMenus.cpp:410 +#: mrvFl/mrvCallbacks.cpp:98 mrvUI/mrvMenus.cpp:412 #: /media/gga/datos/code/applications/mrv2/BUILD-Linux-amd64/Release/mrv2/src/mrv2-build/lib/mrvWidgets/mrvPreferencesUI.cxx:395 msgid "Settings" msgstr "" @@ -5080,7 +5108,7 @@ msgstr "" msgid "Shift" msgstr "" -#: mrvApp/App.cpp:478 +#: mrvApp/App.cpp:481 msgid "Show All" msgstr "" @@ -5229,7 +5257,7 @@ msgstr "" msgid "Start Time" msgstr "" -#: mrvApp/App.cpp:364 +#: mrvApp/App.cpp:367 msgid "Start a server. Use -port to specify a port number." msgstr "" @@ -5250,7 +5278,7 @@ msgid "Status Bar" msgstr "" #: mrvPanels/mrvPanelsAux.h:19 mrvPanels/mrvStereo3DPanel.cpp:304 -#: mrvFl/mrvCallbacks.cpp:110 mrvUI/mrvMenus.cpp:451 +#: mrvFl/mrvCallbacks.cpp:110 mrvUI/mrvMenus.cpp:453 msgid "Stereo 3D" msgstr "" @@ -5371,59 +5399,59 @@ msgid "" "Switch pixel color space information display for the pixel under the cursor." msgstr "" -#: mrvUI/mrvMenus.cpp:1117 +#: mrvUI/mrvMenus.cpp:1119 msgid "Sync/Accept/Annotations" msgstr "" -#: mrvUI/mrvMenus.cpp:1125 +#: mrvUI/mrvMenus.cpp:1127 msgid "Sync/Accept/Audio" msgstr "" -#: mrvUI/mrvMenus.cpp:1101 +#: mrvUI/mrvMenus.cpp:1103 msgid "Sync/Accept/Color" msgstr "" -#: mrvUI/mrvMenus.cpp:1074 +#: mrvUI/mrvMenus.cpp:1076 msgid "Sync/Accept/Media" msgstr "" -#: mrvUI/mrvMenus.cpp:1093 +#: mrvUI/mrvMenus.cpp:1095 msgid "Sync/Accept/Pan And Zoom" msgstr "" -#: mrvUI/mrvMenus.cpp:1109 +#: mrvUI/mrvMenus.cpp:1111 msgid "Sync/Accept/Timeline" msgstr "" -#: mrvUI/mrvMenus.cpp:1085 +#: mrvUI/mrvMenus.cpp:1087 msgid "Sync/Accept/UI" msgstr "" -#: mrvUI/mrvMenus.cpp:1054 +#: mrvUI/mrvMenus.cpp:1056 msgid "Sync/Send/Annotations" msgstr "" -#: mrvUI/mrvMenus.cpp:1062 +#: mrvUI/mrvMenus.cpp:1064 msgid "Sync/Send/Audio" msgstr "" -#: mrvUI/mrvMenus.cpp:1038 +#: mrvUI/mrvMenus.cpp:1040 msgid "Sync/Send/Color" msgstr "" -#: mrvUI/mrvMenus.cpp:1011 +#: mrvUI/mrvMenus.cpp:1013 msgid "Sync/Send/Media" msgstr "" -#: mrvUI/mrvMenus.cpp:1030 +#: mrvUI/mrvMenus.cpp:1032 msgid "Sync/Send/Pan And Zoom" msgstr "" -#: mrvUI/mrvMenus.cpp:1046 +#: mrvUI/mrvMenus.cpp:1048 msgid "Sync/Send/Timeline" msgstr "" -#: mrvUI/mrvMenus.cpp:1022 +#: mrvUI/mrvMenus.cpp:1024 msgid "Sync/Send/UI" msgstr "" @@ -5491,8 +5519,8 @@ msgid "" "(Environment variable: MRV_OCIO_float_ICS)" msgstr "" -#: mrvPanels/mrvPythonPanel.cpp:502 mrvFl/mrvSession.cpp:300 -#: mrvFl/mrvSession.cpp:340 +#: mrvPanels/mrvPythonPanel.cpp:492 mrvFl/mrvSession.cpp:304 +#: mrvFl/mrvSession.cpp:344 msgid "The stream is in an unrecoverable error state." msgstr "" @@ -5569,39 +5597,39 @@ msgstr "" msgid "Timeline" msgstr "" -#: mrvUI/mrvMenus.cpp:847 +#: mrvUI/mrvMenus.cpp:849 msgid "Timeline/Edit Associated Clips" msgstr "" -#: mrvUI/mrvMenus.cpp:839 +#: mrvUI/mrvMenus.cpp:841 msgid "Timeline/Editable" msgstr "" -#: mrvUI/mrvMenus.cpp:902 +#: mrvUI/mrvMenus.cpp:904 msgid "Timeline/Markers" msgstr "" -#: mrvUI/mrvMenus.cpp:886 +#: mrvUI/mrvMenus.cpp:888 msgid "Timeline/Thumbnails/Large" msgstr "" -#: mrvUI/mrvMenus.cpp:880 +#: mrvUI/mrvMenus.cpp:882 msgid "Timeline/Thumbnails/Medium" msgstr "" -#: mrvUI/mrvMenus.cpp:868 +#: mrvUI/mrvMenus.cpp:870 msgid "Timeline/Thumbnails/None" msgstr "" -#: mrvUI/mrvMenus.cpp:874 +#: mrvUI/mrvMenus.cpp:876 msgid "Timeline/Thumbnails/Small" msgstr "" -#: mrvUI/mrvMenus.cpp:896 +#: mrvUI/mrvMenus.cpp:898 msgid "Timeline/Transitions" msgstr "" -#: mrvApp/App.cpp:255 +#: mrvApp/App.cpp:258 msgid "Timelines, movies, image sequences, or folders." msgstr "" @@ -5835,7 +5863,7 @@ msgid "UI Elements" msgstr "" #: mrvPanels/mrvUSDPanel.cpp:65 mrvFl/mrvCallbacks.cpp:106 -#: mrvUI/mrvMenus.cpp:442 +#: mrvUI/mrvMenus.cpp:444 msgid "USD" msgstr "" @@ -5873,7 +5901,7 @@ msgstr "" msgid "Unknown bit depth" msgstr "" -#: mrvUI/mrvMenus.cpp:480 +#: mrvUI/mrvMenus.cpp:482 msgid "Unknown menu entry " msgstr "" @@ -5977,7 +6005,7 @@ msgstr "" msgid "Vector of 4 floats." msgstr "" -#: mrvFl/mrvCallbacks.cpp:109 mrvUI/mrvMenus.cpp:375 +#: mrvFl/mrvCallbacks.cpp:109 mrvUI/mrvMenus.cpp:377 msgid "Vectorscope" msgstr "" @@ -6044,19 +6072,19 @@ msgstr "" msgid "View Window" msgstr "" -#: mrvApp/App.cpp:312 +#: mrvApp/App.cpp:315 msgid "View color space." msgstr "" -#: mrvUI/mrvMenus.cpp:201 +#: mrvUI/mrvMenus.cpp:203 msgid "View/Data Window" msgstr "" -#: mrvUI/mrvMenus.cpp:208 +#: mrvUI/mrvMenus.cpp:210 msgid "View/Display Window" msgstr "" -#: mrvUI/mrvMenus.cpp:823 +#: mrvUI/mrvMenus.cpp:825 msgid "View/Hud" msgstr "" @@ -6064,36 +6092,36 @@ msgstr "" msgid "View/Mask" msgstr "" -#: mrvUI/mrvMenus.cpp:811 +#: mrvUI/mrvMenus.cpp:813 #, c-format msgid "View/Mask/%s" msgstr "" -#: mrvUI/mrvMenus.cpp:194 +#: mrvUI/mrvMenus.cpp:196 msgid "View/Safe Areas" msgstr "" -#: mrvUI/mrvMenus.cpp:254 +#: mrvUI/mrvMenus.cpp:256 msgid "View/Toggle Action Dock" msgstr "" -#: mrvUI/mrvMenus.cpp:214 +#: mrvUI/mrvMenus.cpp:216 msgid "View/Toggle Menu bar" msgstr "" -#: mrvUI/mrvMenus.cpp:230 +#: mrvUI/mrvMenus.cpp:232 msgid "View/Toggle Pixel bar" msgstr "" -#: mrvUI/mrvMenus.cpp:246 +#: mrvUI/mrvMenus.cpp:248 msgid "View/Toggle Status Bar" msgstr "" -#: mrvUI/mrvMenus.cpp:238 +#: mrvUI/mrvMenus.cpp:240 msgid "View/Toggle Timeline" msgstr "" -#: mrvUI/mrvMenus.cpp:222 +#: mrvUI/mrvMenus.cpp:224 msgid "View/Toggle Top bar" msgstr "" @@ -6234,7 +6262,7 @@ msgid "" "When using mrv2's file chooser, a single click on a folder will open it." msgstr "" -#: mrvPy/Plugin.cpp:229 +#: mrvPy/Plugin.cpp:238 msgid "" "Whether a plugin is active or not. If not overriden, the default is True." msgstr "" @@ -6255,27 +6283,27 @@ msgstr "" msgid "Window Behavior" msgstr "" -#: mrvUI/mrvMenus.cpp:273 +#: mrvUI/mrvMenus.cpp:275 msgid "Window/" msgstr "" -#: mrvUI/mrvMenus.cpp:161 +#: mrvUI/mrvMenus.cpp:163 msgid "Window/Float On Top" msgstr "" -#: mrvUI/mrvMenus.cpp:149 +#: mrvUI/mrvMenus.cpp:151 msgid "Window/Full Screen" msgstr "" -#: mrvUI/mrvMenus.cpp:133 +#: mrvUI/mrvMenus.cpp:135 msgid "Window/Presentation" msgstr "" -#: mrvUI/mrvMenus.cpp:171 +#: mrvUI/mrvMenus.cpp:173 msgid "Window/Secondary" msgstr "" -#: mrvUI/mrvMenus.cpp:180 +#: mrvUI/mrvMenus.cpp:182 msgid "Window/Secondary Float On Top" msgstr "" @@ -6387,7 +6415,7 @@ msgstr "" msgid "YUV Coefficients used for video conversion" msgstr "" -#: mrvPanels/mrvPythonPanel.cpp:480 mrvPanels/mrvImageInfoPanel.cpp:1674 +#: mrvPanels/mrvPythonPanel.cpp:470 mrvPanels/mrvImageInfoPanel.cpp:1674 #: mrvFl/mrvLanguages.cpp:136 mrvFl/mrvHotkey.cpp:98 msgid "Yes" msgstr "" From 29c8cac8b36178878f84141f56b10d99ffac60c9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Gonzalo=20Garramu=C3=B1o?= Date: Mon, 9 Oct 2023 15:57:29 -0300 Subject: [PATCH 4/9] Updated HISTORY.md. --- mrv2/docs/HISTORY.md | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/mrv2/docs/HISTORY.md b/mrv2/docs/HISTORY.md index 66d6e49f8..c74f7259a 100644 --- a/mrv2/docs/HISTORY.md +++ b/mrv2/docs/HISTORY.md @@ -9,8 +9,11 @@ v0.8.0 - Fixed a typo in Python's binding to sessios (oepenSession instead of openSession). - Made Save Session not save temporary EDLs in the session file. -- Added a __divider__ entry to Plug-in menus to add a divider line between +- Added a __divider__ tuple entry to Plug-in menus to add a divider line between menu entries. +- Made Python's output and errors automatically be sent to the Python editor, + instead of waiting until the commands finish, like in v0.7.9 and previous + ones. v0.7.9 ====== From dc13ad3751c890e5a7c24ccda0f38ca082c376e1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Gonzalo=20Garramu=C3=B1o?= Date: Mon, 9 Oct 2023 16:25:27 -0300 Subject: [PATCH 5/9] Fixed compilation. --- mrv2/lib/mrvApp/App.cpp | 5 +++-- mrv2/lib/mrvPy/PyStdErrOutRedirect.h | 8 ++++---- mrv2/po/es.po | 8 +++++--- 3 files changed, 12 insertions(+), 9 deletions(-) diff --git a/mrv2/lib/mrvApp/App.cpp b/mrv2/lib/mrvApp/App.cpp index b9583c7d6..e7e1f87f1 100644 --- a/mrv2/lib/mrvApp/App.cpp +++ b/mrv2/lib/mrvApp/App.cpp @@ -11,6 +11,7 @@ # include namespace py = pybind11; # include "mrvPy/Cmds.h" +# include "mrvPy/PyStdErrOutRedirect.h" #endif #include @@ -63,8 +64,6 @@ namespace py = pybind11; #include "mrvApp/mrvOpenSeparateAudioDialog.h" #include "mrvApp/mrvSettingsObject.h" -#include "mrvPy/PyStdErrOutRedirect.h" - #include "mrvPreferencesUI.h" #include "mrViewer.h" @@ -165,7 +164,9 @@ namespace mrv ImageListener* imageListener = nullptr; #endif +#ifdef MRV2_PYBIND11 std::unique_ptr pythonStdErrOutRedirect; +#endif std::shared_ptr playlistsModel; std::shared_ptr filesModel; std::shared_ptr< diff --git a/mrv2/lib/mrvPy/PyStdErrOutRedirect.h b/mrv2/lib/mrvPy/PyStdErrOutRedirect.h index 5708ee9df..e2a441dec 100644 --- a/mrv2/lib/mrvPy/PyStdErrOutRedirect.h +++ b/mrv2/lib/mrvPy/PyStdErrOutRedirect.h @@ -24,11 +24,11 @@ namespace mrv auto sysm = py::module::import("sys"); _stdout = sysm.attr("stdout"); _stderr = sysm.attr("stderr"); - auto stdout = py::module::import("mrv2").attr("FLTKRedirectOutput"); - auto stderr = py::module::import("mrv2").attr("FLTKRedirectError"); - _stdout_buffer = stdout(); + auto out = py::module::import("mrv2").attr("FLTKRedirectOutput"); + auto err = py::module::import("mrv2").attr("FLTKRedirectError"); + _stdout_buffer = out(); // such as objects created by pybind11 - _stderr_buffer = stderr(); + _stderr_buffer = err(); sysm.attr("stdout") = _stdout_buffer; sysm.attr("stderr") = _stderr_buffer; } diff --git a/mrv2/po/es.po b/mrv2/po/es.po index 5a4f606c4..dca41b31e 100644 --- a/mrv2/po/es.po +++ b/mrv2/po/es.po @@ -1931,7 +1931,9 @@ msgid "" "Expected a handle to a Python function or to a tuple containing a Python " "function and a string with menu options in it." msgstr "" -"Se esperaba un identificador para una función de Python o para una tupla que contiene una función de Python y una cadena de texto con opciones de menú, como __divider__." +"Se esperaba un identificador para una función de Python o para una tupla que " +"contiene una función de Python y una cadena de texto con opciones de menú, " +"como __divider__." msgid "" "Expected a tuple containing a Python function and a string with menu options " @@ -2446,8 +2448,8 @@ msgid "" "In '{0}' expected a function a tuple containing a Python function and a " "string with menu options in it." msgstr "" -"En '{0}' experaba un tuple conteniendo una función de Python y una cadena " -"de texto con opciones de menú en ella." +"En '{0}' experaba un tuple conteniendo una función de Python y una cadena de " +"texto con opciones de menú en ella." msgid "" "In '{0}' expected a function as a value or a tuple containing a Python " From fb76da5c22b71d0c8ce1d820151d03aac330b047 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Gonzalo=20Garramu=C3=B1o?= Date: Mon, 9 Oct 2023 17:15:32 -0300 Subject: [PATCH 6/9] Added getVersion to Python and updated docs. --- mrv2/docs/en/genindex.html | 2 + mrv2/docs/en/objects.inv | Bin 2492 -> 2494 bytes mrv2/docs/en/python_api/cmd.html | 7 +++ mrv2/docs/en/python_api/index.html | 1 + mrv2/docs/en/searchindex.js | 2 +- mrv2/docs/es/genindex.html | 2 + mrv2/docs/es/objects.inv | Bin 2478 -> 2479 bytes mrv2/docs/es/python_api/cmd.html | 7 +++ mrv2/docs/es/python_api/index.html | 1 + mrv2/docs/es/searchindex.js | 2 +- mrv2/lib/mrvPy/Cmds.cpp | 9 ++++ mrv2/po/es.po | 13 ++++-- mrv2/po/messages.pot | 68 +++++++++++++++-------------- 13 files changed, 76 insertions(+), 38 deletions(-) diff --git a/mrv2/docs/en/genindex.html b/mrv2/docs/en/genindex.html index 7708ecae1..666791525 100644 --- a/mrv2/docs/en/genindex.html +++ b/mrv2/docs/en/genindex.html @@ -315,6 +315,8 @@

    G

  • getNumber() (mrv2.Path method)
  • getPadding() (mrv2.Path method) +
  • +
  • getVersion() (in module mrv2.cmd)
  • diff --git a/mrv2/docs/en/objects.inv b/mrv2/docs/en/objects.inv index 8b6b62f6c2d0a1c0533b1a80e3984c00dbaecd80..cc18743c9b22665665fcaea81c8a4be93cff6557 100644 GIT binary patch delta 2355 zcmV-33C#Aq6TTCWkO9b%kr;m_B~TJB)Dv4I@cp>BxWtQKB{n}L_4enA=S>O85Bj%S zbM{PX`hBI-(zU9}?_BD|Ka-1@y?ISbxPzP$gJva>GWpR@?jtE_a?0o+Z-l*kE(EWhr6PYq3$pxK(V$2xPsxuHm%In~1UJSvMqFjR6s$kvnNtaM?0hrP>x}r>?P;Gx@RYQ(rIa35%aNi+< z84Ppn>g5(C)c2zB8s3X~WH6oaKqj&_1!YvO0q0Z76bStwDjZ$`AW6OfQIZ-53-dQ} ztUW;u)v$yyu56sjsdd{Ri+}kx%%JCBMyF_4W^Rnj-&5)(vMQe{UMKmBH3?bCB}^CC zv-{AzEQ2{-)kJ>)61%T^F9*?XY54%Mn@@+(IhAIKg)AG`h6>IqUH%=Zks^9#Zr4{B z@JVBcTGNWGu>Pj)WP)x5MkOlG@7=}ScL@l6@-TE^G6r3vzC&>md%>CodJ%(F+ zxW-^ecMi~baMMdrS5cjV5s2y^q*>?3bP-zM<2iZ>t#f}9@ziSk_RAw4zH68Nf!Kqd zjsSo60blS_zk3t}#+BRDISH@tCfHQl4^NHjHqk$_yQFzpugPVpr#BO;je)`rdbQS5 z4Jc(e$V)D8R5$gR*abXBF9lt#71NJ#gos(N2qIO41TeBJA*Lpj>B(}836iLG?Gz!R z^jZOh@ArR)L9sB#(`*olk*4U@ZG$sbsD#a#Osc35=dnrhLS2=#MrlnBK|xLDRY?n; zk@6PU>fl?BP}MaT^qbjUDCf0)S{eao6c=Wd1;3wN@sBeq%9^rs$~DWJZm5|9{r>-v zJ!j?BwmxTjoBoz&XAPyt*216%$j;!dX{kWOurhxNPW5j_i!I6tV<8%+gYAcga7sqA zpeRG!t$~l@)ZD96{7`bk>P9_{MS}b^p7A5mw4i1GiZr+m1061M5NMGO4yy&yZx)N1 z>9rCoQdJ~IfU;lpv^P%SmcPUZ@J7Yjpe3+I-1QTvpeA%!`WjJYitE`P2J^HalRGdf z?s|U_`xXl)(XO3s_Y+=={grnNpTZU%pe7N^on1xR)hk*_hxNIn%A6c6;?|K{m_WFR|1u4tn6+>R$7!o9kHRhto_MO*Vdx(F@ z7f;97!-LnUcv`h4Of~VTI_`ML_8d|#w1z8S>hOW&5Vgd$1JC1+{Pj^hS1r_r6p@V5&hhiLl_?*N6lDd~Zp&WzP7=!iHW6A3;78m3bLv3eNfH&XMg}VANL7@rCeQSB z>HgaHsTEZ12OxgWk7f3G0VJQV^`AJ2OITADp^c@Fg0; zf)0D_sKJdN{TBPUPB>m+|yZxTKT@^YXf>DdwV z*?ig|4lk}xAnlR&5?-k~v?M-7D5vu470K3cxm9q*n}cV%P7)lrB|^r%!@4y`_S&zx zBE*Ef`iSMq3Vb2;>{M&`1!^InU(xJK1)xUCHgui%#nocbz=A>)D%0TGQwctoaQ}9pI2C zo|wx2@2`K$MCWSE(HXnb@{gJQP^lmpOc~i{c>C44?r@@fm)d{+>q=hOtJy&JNP!F6raR?&zxNrs^1v5C$q;ef+H8EpctWT< ze4Lmp`=C3C>_^|;-X$)Z2j7i`-L#QA=8KyV%%@1+mdaZX&UUt!C%As+IkB1c&2{_G z6L7!Fkhp9f+yvhQ-F-pkB6OeaH!S@8XsMp`nSDBLT|22WSoVJ=?Mi=I)XeFO=;Q0)-3yb=2_THz@v3v(r4bUSHBYU>x`xnNuPON$4oB# z5?vRam@IqX^KQT3c^bZRcQ5qa;e#Q8h-^LP-91;{gG*oN2XWSSSJS;{Uz)jjVe{I^ z{GuMLxeU%O3o8o#=W*-rKR8CoYp-fj$Ze0{}!YWL8%s{w9L ZXHLK_t*wapojf**3re&*{ss@RWS9kCqrU(E delta 2353 zcmV-13C{Mu6TB0UkO4@Mkr;m>C4dqD^~4qld_OKOF7YB*vF%Suz5BVMc~e62gZwQv zlq^w=zprFkx)D|Rok_j=XL2>uH*awX50GP|(5yt9CqLTBV}x15q{pM2 zw#7Nnd$a=_wD4OWBaYY6K7i8J`!FlzJH|L8{SE2|*)+M+!uS zj#Rin;It|+VIy0nkqr{$)aT)FdtT?&Bk2kX${?gPiLNo>L8yPUvZ^5uV<{0RwBWu& z1T`4u($%Y7kWk-?!kd3DYLN-)j0ZB2wJ9*cd;?)V#Y6y;526UeD}X?fZh@7k4uhHc z8#&gVp%&Dzh!84toO0K?ZIH#jd>dwvb1)y*=v{_m{0q^G1K6H+`T4Dv34P=WMC6z4y0o8#ba%QgA zSKc75&^pv>m_Nt~eeR3NRX|{Yv<4Ew1h#9Je80QBOHntM!-%T?%}>#Ir7S?jnDlT8ZC(c@Bpk+C{u4_9Q12 zK;L}`FZiY31M&jn%5CZ#`PX;rZL02vU8A#3w2#jwXtHO)C3bb<&80cBhjvaB1D9o z@dx3@{h@zXER69q8$@EHDYA9j;EWY2VS6EyD$LkrY~r*KHzlrvw46hbSJPQl(t>8F zya%$Ld{^PCx}gkzQ=0_kyp~T(!{CDAOs$pR_lqn3aY031V{%EkW|iYDR&$`=|39*q zti0IOmuzp<-{S0|q4eBZ==A{U8Qd){1+W;FN5Oxo{7rDN3v$9(2*>G!_CrHBMWb0z zlp*HUz{hcF<^^c@P;y7=M!bwgy!SZn^fg9+HX_yrDG_SKLqCD?YC?mhZxLmtVLjW^V4mh>atB7m zT`zy4-$jK)KVSOnn{)+04JK%9*y**wo zj~QbA`0{c?p(t>M<-Ev?r_PNJ>e%(5soD)>`<*;nQS_*sbit?^#5{;6wZA$Y!PC^? z+aFh(o>0kO(V)t@jUv?GjU6~JP^c)X8rFXUw+8Bb!*xvcs&=>CdL&XEBeI5(PI=J> zuzo6BZ`*s?j!h0MC*fTASOAyg^<^GiUc0SDszL#_MO*5dlY}k z7EhA~wJF*VAHQs-MkFNIDGoF!vu-VOCMj3z*~&La%!{1wBZpF9K<}3 zyAI^~L;C@&S&M|gg09ykc-pMqkaT}-Ya3L$bo;o{r=mPxX6>TgUiet(SYbNAPSMk6 zKu*$7$^kimZ`S4=gWYq@`U<-arWrO}^b(d)W~^XG+y2vatnMs{3P{5}6=b9eOxDhm zd0o1__I+vvRr?u--ScCaW1a!Z=NtJaPU0Fim_%r(10Inzkv~4iSEf}7tdD;>s##*< zJWV6MJjbHw*p?hKujwA<)4qv}o6&QI^Y{R%C>6op2Xz8HK@ z7GOb#M_Qo{>#~W7@!5Q&9r~LGcYvP4$DbsIX>=bYhS6$FxR&klidfF$WNs;oR2h5# z5-I>+V`yeLCY65zkBx}nMNH}4srzs`%zq7co^O{)_O4zfd|>Exq9f_q z5%gJopuwgW*JqIW;CcyfSWGR6&k@Qo|9XS64P5U8+|Xw7OxIb01GhxTn0HwB>d0RE zO;&^$(^tRYeDZ|RIZ9lhHE4f@`HCI3zdcm#u%6ub^J^ex|B8$J=MsOdpiHiQOuD-| zU!u3EWKKOTG9Rx%J_Z^NY?;%He}9ne@YGuw2`y4I;PSoVJ=?MmORa>aLCKy^Z_ z&DFN0xtToadn3`^?fvt=Tv|G@HB0}VSr&EQ{nxozYYx=`$besL6$0 zqU)j)mE{Or9`*~Cr{Ozu_e$O!J{TMj%Qj=)+%x4pne>Hx5NCaNomWTZ z7kQcd(%^ica%z8M7`no5I5`?V_V|X1udw5G?KaV9{Aw;{2i3EagI>p7U&|olQnQan zwy|hW$(|Y<71K#Z;*-vWNS@61efvN~y*t@rc(n_4sogw4Fd2(_N-=W`W_F$9@va-~ z26?(I0J}oB!q@Q2fB%yMO}b_OP=!GOOl^v|Oxb5>4cR5%80gsgisRJop)pqjT%XQ# Xz$UG&i29v8H-a*Zq&xlw^3+fwDAuIX diff --git a/mrv2/docs/en/python_api/cmd.html b/mrv2/docs/en/python_api/cmd.html index b53a4e945..6f6f4600f 100644 --- a/mrv2/docs/en/python_api/cmd.html +++ b/mrv2/docs/en/python_api/cmd.html @@ -58,6 +58,7 @@
  • displayOptions()
  • environmentMapOptions()
  • getLayers()
  • +
  • getVersion()
  • imageOptions()
  • isMuted()
  • lutOptions()
  • @@ -177,6 +178,12 @@

    Get the layers of the timeline (GUI).

    +
    +
    +mrv2.cmd.getVersion() str
    +

    Get the version of mrv2.

    +
    +
    mrv2.cmd.imageOptions() mrv2.image.ImageOptions
    diff --git a/mrv2/docs/en/python_api/index.html b/mrv2/docs/en/python_api/index.html index 75e362893..48fb3d607 100644 --- a/mrv2/docs/en/python_api/index.html +++ b/mrv2/docs/en/python_api/index.html @@ -107,6 +107,7 @@
  • displayOptions()
  • environmentMapOptions()
  • getLayers()
  • +
  • getVersion()
  • imageOptions()
  • isMuted()
  • lutOptions()
  • diff --git a/mrv2/docs/en/searchindex.js b/mrv2/docs/en/searchindex.js index 89dd23198..38e6dac93 100644 --- a/mrv2/docs/en/searchindex.js +++ b/mrv2/docs/en/searchindex.js @@ -1 +1 @@ -Search.setIndex({"docnames": ["index", "python_api/annotations", "python_api/cmd", "python_api/image", "python_api/index", "python_api/io", "python_api/math", "python_api/media", "python_api/mrv2", "python_api/playlist", "python_api/plug-ins", "python_api/plug-ins-system", "python_api/pyFLTK", "python_api/settings", "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/io.rst", "python_api/math.rst", "python_api/media.rst", "python_api/mrv2.rst", "python_api/playlist.rst", "python_api/plug-ins.rst", "python_api/plug-ins-system.rst", "python_api/pyFLTK.rst", "python_api/settings.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": ["Welcome to mrv2\u2019s documentation!", "annotations module", "cmd module", "image module", "Python API", "io Module", "math module", "media module", "mrv2 module", "playlist module", "plugin module", "Plug-in System", "pyFLTK", "settings module", "timeline module", "usd module", "Getting Started", "Hotkeys", "mrv2 User Guide", "The mrv2 Interface", "Notes and Annotations", "Introduction", "Panels", "V\u00eddeo Playback", "Preferences", "Settings", "Video Tutorials"], "terms": {"user": [0, 16, 19, 20, 21, 23], "guid": [0, 21], "introduct": [0, 18], "get": [0, 2, 8, 15, 18, 19, 20, 23], "start": [0, 8, 18, 20, 21, 22, 23], "The": [0, 8, 16, 17, 18, 20, 21, 22, 23, 25], "interfac": [0, 18, 21], "panel": [0, 16, 17, 18, 20, 21, 23, 25], "note": [0, 1, 2, 18, 21, 22, 24], "annot": [0, 2, 4, 5, 17, 18, 21, 23], "v\u00eddeo": [0, 18], "playback": [0, 2, 4, 8, 14, 16, 17, 18, 21], "set": [0, 2, 4, 7, 14, 15, 16, 17, 18, 19, 20, 21, 23, 24], "hotkei": [0, 18, 19, 20, 21, 22, 24, 25], "prefer": [0, 2, 16, 17, 18, 19, 20, 22], "video": [0, 3, 8, 18, 22, 23], "tutori": [0, 18], "python": [0, 10, 11, 12, 17, 18, 21], "api": [0, 21, 22], "modul": [0, 4, 12], "cmd": [0, 4], "imag": [0, 2, 4, 16, 17, 19, 20, 21, 22, 23], "io": [0, 2, 4, 12], "math": [0, 3, 4, 7], "media": [0, 2, 4, 8, 17, 18, 19, 20, 21, 23], "playlist": [0, 4, 17, 18, 21, 23], "plugin": [0, 4, 11], "plug": [0, 4, 10], "system": [0, 4, 14, 16, 17, 21, 24], "timelin": [0, 2, 4, 8, 17, 18, 20, 21, 22, 23], "usd": [0, 4, 17, 18, 21], "index": [0, 7, 9], "search": [0, 16, 17, 24], "page": 0, "contain": [1, 3, 6, 7, 8, 9, 10, 13, 14, 15, 19], "all": [1, 2, 3, 6, 7, 9, 10, 13, 14, 15, 16, 17, 19, 20, 21, 22, 24], "function": [1, 8, 9, 13, 14, 17], "class": [1, 3, 5, 6, 7, 8, 9, 10, 11, 14, 15], "relat": [1, 3, 7, 9, 10, 14, 15], "annotationss": 1, "mrv2": [1, 2, 3, 4, 5, 6, 7, 9, 10, 11, 12, 13, 14, 15, 17, 20, 22, 23, 24, 25, 26], "add": [1, 3, 4, 9, 11, 20, 21, 22], "arg": [1, 8, 9, 14], "kwarg": [1, 8, 9, 14], "overload": [1, 8, 9, 14], "time": [1, 4, 8, 14, 16, 19, 22, 24], "rationaltim": [1, 4, 8, 14], "str": [1, 2, 3, 8, 9], "none": [1, 2, 3, 5, 7, 9, 13, 14, 19, 24], "current": [1, 2, 7, 8, 9, 14, 16, 17, 18, 19, 20, 22], "clip": [1, 3, 8, 9, 16, 17, 19, 21, 22, 23], "certain": [1, 19], "frame": [1, 4, 8, 14, 16, 17, 18, 20, 21, 22], "int": [1, 2, 3, 5, 6, 7, 8, 9, 13, 14, 15], "second": [1, 2, 4, 8, 13, 14, 19, 20, 22, 23, 24, 25], "float": [1, 2, 3, 5, 6, 7, 8, 13, 14, 15, 17, 19, 24], "command": [2, 11, 17, 18], "us": [2, 8, 10, 11, 16, 19, 20, 21, 22, 23, 25, 26], "run": [2, 10, 16, 22], "main": [2, 11, 16, 17, 19, 24], "displai": [2, 3, 17, 20, 21, 22, 23], "compar": [2, 4, 7, 17, 18, 21], "lut": [2, 3, 22, 24], "option": [2, 3, 5, 7, 10, 15, 16, 19, 22], "close": [2, 4, 7, 16, 17, 21, 22], "item": [2, 7, 8, 9, 16, 20, 21, 22], "1": [2, 3, 8, 12, 19], "file": [2, 7, 8, 9, 11, 16, 17, 18, 19, 20, 21], "closeal": [2, 4, 7], "itema": 2, "itemb": 2, "mode": [2, 7, 14, 15, 16, 17, 18, 19, 20, 21], "comparemod": [2, 4, 7], "wipe": [2, 7, 17, 21, 22], "2": [2, 6, 8], "two": [2, 19, 22], "compareopt": [2, 4, 7], "return": [2, 7, 8, 10, 11, 14, 17], "displayopt": [2, 3, 4], "environmentmapopt": [2, 3, 4], "environ": [2, 3, 11, 17, 18, 19, 24], "map": [2, 3, 17, 18], "getlay": [2, 4], "list": [2, 4, 7, 9, 11, 17, 19, 22, 24, 26], "layer": [2, 4, 7, 8, 19, 22], "gui": 2, "imageopt": [2, 3, 4], "ismut": [2, 4], "bool": [2, 3, 5, 7, 8, 10, 15], "true": [2, 8, 10], "audio": [2, 8, 14, 19, 21, 22], "i": [2, 8, 10, 16, 17, 18, 19, 20, 22, 23, 24, 25], "mute": [2, 8, 19], "lutopt": [2, 3, 4], "oepnsess": [], "open": [2, 4, 16, 17, 21, 22, 24], "session": [2, 17, 21, 22], "filenam": [2, 3, 9, 14, 22], "audiofilenam": 2, "save": [2, 4, 5, 9, 16, 17, 19, 20, 21, 22], "saveopt": [2, 4, 5], "fals": [2, 10], "ffmpegprofil": [2, 5], "exrcompress": [2, 5], "zip": [2, 5], "zipcompressionlevel": [2, 5], "4": [2, 6], "dwacompressionlevel": [2, 5], "45": 2, "movi": [2, 16, 17, 19, 20, 21, 24], "sequenc": [2, 16, 17, 19, 24], "from": [2, 8, 10, 11, 12, 16, 19, 20, 21, 22, 23, 24], "front": 2, "savepdf": [2, 4], "pdf": [2, 17, 21, 22], "document": [2, 16, 17, 21, 24, 26], "savesess": [2, 4], "savesessiona": [2, 4], "setcompareopt": [2, 4], "setdisplayopt": [2, 4], "setenvironmentmapopt": [2, 4], "setimageopt": [2, 4], "setlutopt": [2, 4], "setmut": [2, 4], "setstereo3dopt": [2, 4], "stereo3dopt": [2, 3, 4], "stereo": [2, 3, 7, 17, 18], "3d": [2, 3, 17, 18], "setvolum": [2, 4], "volum": [2, 4, 8, 19], "updat": [2, 4], "call": [2, 24], "fl": 2, "check": 2, "number": [2, 8, 21, 22, 23, 24], "elaps": 2, "enum": [3, 7, 15], "control": [3, 14, 17, 20, 21, 22, 24, 25], "alphablend": [3, 4], "member": [3, 5, 7, 14, 15], "straight": [3, 19], "premultipli": [3, 19], "channel": [3, 4, 17, 21, 22], "color": [3, 4, 17, 18, 19, 21, 23], "red": [3, 16, 17, 19, 20, 24], "green": [3, 17, 19, 20], "blue": [3, 16, 17, 19], "alpha": [3, 17, 22], "environmentmaptyp": [3, 4], "spheric": [3, 22], "cubic": [3, 22], "imagefilt": [3, 4], "nearest": [3, 19], "linear": [3, 19], "inputvideolevel": [3, 4], "fromfil": 3, "fullrang": 3, "legalrang": 3, "lutord": [3, 4], "postcolorconfig": 3, "precolorconfig": 3, "videolevel": [3, 4], "yuvcoeffici": [3, 4], "rec709": 3, "bt2020": 3, "stereo3dinput": [3, 4], "stereo3doutput": [3, 4], "anaglyph": [3, 22], "scanlin": [3, 22], "column": 3, "checkerboard": [3, 22], "opengl": [3, 21], "mirror": [3, 4], "x": [3, 6, 7, 17], "flip": [3, 17], "y": [3, 6, 7, 17, 19, 24], "valu": [3, 7, 8, 10, 19, 22], "enabl": [3, 15, 21], "level": [3, 4, 5, 22], "vector3f": [3, 4, 6], "bright": 3, "chang": [3, 17, 19, 20, 21, 22, 24], "contrast": [3, 22], "satur": [3, 21, 22], "tint": [3, 21, 22], "between": [3, 19, 21, 22, 23, 24], "0": [3, 8, 16, 18, 19, 22, 25], "invert": [3, 22], "inlow": 3, "In": [3, 8, 11, 17, 19, 22, 23, 24, 25, 26], "low": 3, "inhigh": 3, "high": [3, 21, 23], "gamma": [3, 17, 19, 21, 22], "outlow": 3, "out": [3, 8, 14, 17, 19, 20, 21, 22, 23, 24], "outhigh": 3, "filter": [3, 17, 22, 24], "minifi": [3, 17], "magnifi": [3, 17], "softclip": [3, 4], "soft": [3, 20, 22], "both": [3, 20], "order": [3, 16, 22], "transform": [3, 24], "blend": 3, "algorithm": 3, "environmentmap": 3, "type": [3, 16, 20, 22, 23], "horizontalapertur": 3, "horizont": [3, 7, 17, 19, 21, 22, 23], "apertur": 3, "verticalapertur": 3, "vertic": [3, 7, 17, 19, 21, 22], "focallength": 3, "focal": 3, "length": 3, "rotatex": 3, "rotat": [3, 7, 22], "rotatei": 3, "subdivisionx": 3, "subdivis": 3, "subdivisioni": 3, "spin": 3, "stereo3d": 3, "input": [3, 17, 19, 22], "stereoinput": 3, "output": [3, 22], "stereooutput": 3, "eyesepar": 3, "separ": [3, 21], "left": [3, 16, 17, 19, 20, 22, 23], "right": [3, 16, 17, 18, 19, 20, 23, 24], "ey": 3, "swapey": 3, "swap": 3, "profil": [4, 5], "compress": [4, 5, 23], "vector2i": [4, 6], "vector2f": [4, 6, 7], "vector4f": [4, 6], "afil": [4, 7], "aindex": [4, 7], "bindex": [4, 7], "bfile": [4, 7], "activefil": [4, 7], "clearb": [4, 7], "firstvers": [4, 7], "lastvers": [4, 7], "nextvers": [4, 7], "previousvers": [4, 7], "seta": [4, 7], "setb": [4, 7], "setlay": [4, 7], "setstereo": [4, 7], "toggleb": [4, 7], "path": [2, 4, 8, 9, 11, 16, 18, 22], "timerang": [4, 8, 14], "filemedia": [4, 7, 8, 9], "add_clip": [4, 9], "select": [2, 4, 9, 14, 16, 17, 19, 20, 21, 22, 23, 24], "ins": 4, "memori": [4, 13, 22, 25], "readahead": [4, 13], "readbehind": [4, 13], "setmemori": [4, 13], "setreadahead": [4, 13], "setreadbehind": [4, 13], "filesequenceaudio": [4, 14], "loop": [4, 8, 14, 16, 17, 18, 19, 21], "timermod": [4, 14], "inoutrang": [4, 8, 14], "playbackward": [4, 14], "playforward": [4, 14], "seek": [4, 14, 21], "setin": [4, 14], "setinoutrang": [4, 14], "setloop": [4, 14], "setout": [4, 14], "stop": [4, 14, 17, 19, 21, 23], "renderopt": [4, 15], "setrenderopt": [4, 15], "drawmod": [4, 15], "h264": 5, "prore": 5, "prores_proxi": 5, "prores_lt": 5, "prores_hq": 5, "prores_4444": 5, "prores_xq": 5, "rle": 5, "piz": 5, "pxr24": 5, "b44": 5, "b44a": 5, "dwaa": 5, "dwab": 5, "ffmpeg": 5, "openexr": [5, 19], "": [5, 8, 16, 17, 19, 20, 21, 22, 23, 24], "dwa": [5, 23], "vector": [6, 20], "integ": [6, 8], "3": [6, 12], "z": [6, 17], "w": [6, 17], "A": [7, 10, 19, 20, 21, 22, 24], "b": [7, 17, 19, 21, 22], "activ": [7, 10, 21, 23], "clear": [7, 17], "first": [7, 8, 16, 17, 19, 23, 24], "version": [7, 16, 17, 18, 26], "last": [7, 8, 17, 19, 23, 24], "next": [7, 17, 19, 20, 22, 23, 24], "previou": [7, 17, 19, 20, 22, 23, 24], "new": [7, 8, 10, 11, 12, 19, 20, 21, 22, 24], "toggl": [7, 17, 19, 23, 24], "overlai": [7, 17, 21, 22, 24], "differ": [7, 8, 16, 17, 19, 21, 22, 24], "tile": [7, 17, 21, 22], "comparison": [7, 21, 22], "over": [7, 19, 20], "wipecent": 7, "center": [7, 17, 19, 24], "wiperot": 7, "hold": [8, 19, 24], "self": [8, 10, 11], "idx": 8, "directoru": 8, "getbasenam": 8, "getdirectori": 8, "getextens": 8, "getnumb": 8, "getpad": 8, "isabsolut": 8, "isempti": 8, "repres": 8, "measur": 8, "rt": 8, "rate": [8, 16, 18, 19, 21], "It": [8, 19, 22, 24], "can": [8, 12, 16, 17, 19, 20, 21, 22, 23, 24, 25], "rescal": [8, 24], "anoth": [8, 24], "almost_equ": 8, "other": [8, 12, 16, 21, 22, 23, 24], "delta": 8, "static": 8, "duration_from_start_end_tim": 8, "start_tim": 8, "end_time_exclus": 8, "comput": [8, 21, 23], "durat": 8, "sampl": 8, "exclud": 8, "thi": [8, 11, 16, 17, 19, 20, 21, 22, 23, 24, 26], "same": [8, 16, 22], "distanc": 8, "For": [8, 12, 16, 19, 21, 22, 23], "exampl": [8, 10, 21, 22, 24], "10": [8, 16], "15": 8, "5": 8, "result": [8, 23], "duration_from_start_end_time_inclus": 8, "end_time_inclus": 8, "includ": [8, 21], "6": [8, 19], "from_fram": 8, "turn": 8, "object": 8, "from_second": 8, "from_time_str": 8, "time_str": 8, "convert": 8, "microsecond": 8, "string": 8, "hh": 8, "mm": 8, "ss": 8, "where": [8, 11, 22, 24], "an": [2, 8, 16, 19, 20, 21, 22, 24], "decim": [8, 24], "from_timecod": 8, "timecod": [8, 19, 24], "is_invalid_tim": 8, "invalid": 8, "consid": 8, "ar": [8, 19, 20, 21, 22, 23, 24], "nan": 8, "less": [8, 17], "than": [8, 11, 20, 23, 24], "equal": 8, "zero": 8, "is_valid_timecode_r": 8, "valid": 8, "nearest_valid_timecode_r": 8, "ha": [8, 19, 21, 22, 23, 24], "least": 8, "given": [8, 16, 20], "rescaled_to": 8, "new_rat": 8, "to_fram": 8, "base": [8, 20, 22, 25], "to_second": 8, "to_time_str": 8, "to_timecod": 8, "drop_fram": 8, "value_rescaled_to": 8, "rang": [8, 14, 19, 22], "encod": [8, 16], "mean": [8, 22, 23], "portion": [8, 22], "befor": [8, 22, 23], "epsilon_": 8, "6041666666666666e": 8, "06": 8, "end": [8, 17, 23], "strictli": 8, "preced": [8, 19], "convers": 8, "would": [8, 16, 24], "meet": 8, "begin": 8, "clamp": 8, "accord": 8, "bound": 8, "argument": 8, "anteced": 8, "duration_extended_bi": 8, "outsid": [8, 20], "If": [8, 10, 16, 19, 20, 22, 24], "becaus": 8, "data": [8, 17, 22, 23], "14": 8, "24": 8, "9": 8, "word": [8, 16], "even": [8, 11, 21, 22, 24], "fraction": 8, "extended_bi": 8, "construct": 8, "one": [8, 17, 19, 21, 22, 23, 24], "extend": [8, 20], "finish": 8, "intersect": 8, "OR": 8, "overlap": 8, "range_from_start_end_tim": 8, "creat": [8, 11, 12, 16, 20, 21, 22, 26], "exclus": 8, "end_tim": 8, "have": [8, 11, 16, 19, 20, 21, 22, 24], "range_from_start_end_time_inclus": 8, "inclus": 8, "audiopath": 8, "ani": [8, 12, 16, 19, 20, 21, 22, 24], "state": [8, 21], "currenttim": 8, "videolay": 8, "audiooffset": 8, "offset": 8, "edl": [9, 22], "otio": [2, 9, 16, 21, 24], "rel": 9, "fileitem": 9, "filemodelitem": 9, "playlistindex": 9, "must": [11, 22], "overriden": 10, "like": [10, 12, 16, 19, 23, 24], "import": [10, 11, 12, 21, 22, 24], "demoplugin": 10, "defin": [10, 11, 21], "your": [10, 16, 19, 20, 21, 22, 23, 24, 25], "own": [10, 20, 21], "variabl": [10, 11, 19, 24], "here": [10, 21, 24], "def": [10, 11], "__init__": [10, 11], "super": [10, 11], "pass": 11, "method": [10, 21], "callback": 10, "print": [10, 11, 19, 22, 24], "hello": [10, 11], "whether": [10, 19, 22, 24], "dictionari": 10, "menu": [10, 11, 17, 18, 20, 21], "entri": [10, 11, 21], "kei": [10, 17, 19, 20, 21, 22, 24], "plai": [14, 16, 17, 19, 21, 23, 24], "forward": [14, 17, 19, 23], "default": [10, 16, 17, 18, 19, 22, 25], "dict": 10, "nem": 10, "support": [11, 12, 16, 19, 21, 24], "allow": [11, 16, 17, 19, 20, 21, 22, 24, 25], "you": [11, 12, 16, 17, 19, 20, 21, 22, 23, 24, 25], "actual": [11, 20], "go": [11, 12, 16, 17, 23, 24], "farther": 11, "what": [11, 18, 19, 24], "consol": 11, "To": [11, 16, 19, 20], "mrv2_python_plugin": 11, "colon": 11, "linux": [11, 16, 24], "maco": [11, 16], "semi": 11, "window": [11, 12, 16, 17, 18, 22], "resid": 11, "py": 11, "basic": 11, "structur": 11, "helloplugin": 11, "retriev": 13, "cach": [13, 15, 18, 22, 25], "gigabyt": [13, 22, 25], "read": [13, 22, 23, 25], "ahead": [13, 22, 25], "behind": [13, 22, 25], "arg0": [13, 14], "basenam": 14, "directori": [14, 16, 17, 24], "properti": 14, "name": [14, 22], "onc": [12, 14, 16, 17, 19, 20, 23], "pingpong": 14, "revers": [14, 21], "backward": [14, 17, 19, 23], "univers": [15, 19, 21, 24], "scene": [15, 21, 24], "descript": [15, 21, 24], "render": [15, 18, 20], "point": [15, 17, 19, 22, 23], "wirefram": 15, "wireframeonsurfac": 15, "shadedflat": 15, "shadedsmooth": 15, "geomonli": 15, "geomflat": 15, "geomsmooth": 15, "renderwidth": 15, "width": 15, "complex": [15, 24], "model": 15, "draw": [15, 17, 18, 19, 21, 22, 23, 24], "enablelight": 15, "light": [15, 20, 24], "stagecachecount": 15, "stage": 15, "count": 15, "diskcachebytecount": 15, "disk": [15, 21, 23], "byte": 15, "pleas": 16, "refer": [16, 26], "github": 16, "http": [12, 16, 26], "com": [16, 26], "ggarra13": 16, "On": [16, 17, 20, 21], "dmg": 16, "icon": [16, 19], "applic": [16, 21], "alreadi": 16, "we": [16, 24], "recommend": [16, 24], "overwrit": 16, "notar": 16, "so": [16, 19, 20, 22, 24], "when": [16, 19, 20, 22, 23, 24], "abl": [16, 23], "warn": 16, "secur": 16, "wa": [16, 24], "download": [16, 24], "internet": 16, "avoid": 16, "need": [16, 19, 20, 21, 22, 23, 24], "finder": 16, "ctrl": [16, 17, 20], "mous": [16, 18, 24], "click": [16, 19, 20, 22], "That": [16, 24], "bring": [16, 22, 24], "up": [16, 17, 19, 21, 22, 23, 24], "button": [12, 16, 18, 19, 23, 24], "onli": [16, 17, 20, 22], "do": [16, 20, 21, 24], "chrome": 16, "also": [16, 19, 20, 22, 23], "protect": 16, "mai": [16, 22, 24, 26], "usual": [16, 19, 24], "archiv": 16, "make": [16, 19, 20, 22, 24], "sure": [16, 22], "arrow": [16, 17, 19, 20, 21, 23], "anywai": 16, "cannot": 16, "ex": 16, "directli": [16, 19, 20, 21], "explor": 16, "should": [16, 20, 22, 23], "Then": 16, "popup": [16, 19, 22, 24], "box": [16, 20, 21], "tell": 16, "smartscreen": 16, "prevent": 16, "unknown": 16, "aplic": 16, "place": [16, 20, 22], "pc": 16, "risk": 16, "more": [16, 17, 19, 21, 22], "inform": [12, 16, 18, 19], "text": [16, 17, 20, 21, 22, 24], "sai": [16, 19], "similar": [16, 22], "appear": [16, 19, 22], "follow": [16, 19, 22], "standard": 16, "instruct": 16, "rpm": 16, "deb": 16, "packag": 16, "requir": [16, 23], "sudo": 16, "permiss": 16, "debian": 16, "ubuntu": 16, "etc": [16, 21, 22, 23], "dpkg": 16, "v0": [16, 18], "7": 16, "amd64": 16, "tar": 16, "gz": 16, "hat": 16, "rocki": 16, "just": [16, 19, 20, 22], "shell": 16, "symlink": 16, "execut": [16, 21, 22], "usr": 16, "bin": 16, "associ": 16, "extens": 16, "easi": [16, 20, 21], "desktop": [16, 21, 22, 24], "choos": [16, 19, 24], "lack": 16, "organ": [16, 19], "uncompress": 16, "xf": 16, "folder": [16, 22, 24], "direcori": 16, "sh": 16, "script": [16, 21], "subdirectori": 16, "while": [16, 20, 22], "termin": [16, 24], "provid": [16, 19, 20, 21], "locat": [16, 22], "wai": [16, 20, 21], "recurs": 16, "thei": [16, 20, 21, 22, 24, 26], "ad": [16, 17, 18, 21, 22], "request": [16, 18], "By": [16, 19], "custom": [16, 19, 21, 24], "howev": 16, "nativ": [16, 21], "chooser": 16, "which": [16, 17, 19, 23, 24], "platform": 16, "might": 16, "o": [16, 17, 19, 21, 22, 23, 24], "won": 16, "t": [16, 17, 19, 22, 23, 24], "due": 16, "being": 16, "regist": [16, 22], "appl": 16, "either": [16, 22], "want": [16, 19, 20, 22, 23], "previous": 16, "conveni": 16, "power": [16, 17], "familiar": 16, "syntax": 16, "variou": 16, "mix": 16, "three": [16, 19, 20], "test": 16, "mov": [16, 21], "0001": 16, "exr": [16, 21, 22, 23], "edit": [16, 17, 19, 21], "back": [16, 21, 23], "natur": [16, 24], "respect": 16, "e": [16, 17, 19], "g": [16, 17, 19], "seri": 16, "jpeg": 16, "tga": [16, 21], "24fp": 16, "adjust": [16, 21, 23], "dpx": 16, "speed": [16, 17, 23], "taken": 16, "metadata": [16, 19], "avail": [16, 19, 21, 22, 24, 25], "made": [16, 19], "visibl": 16, "through": [12, 16, 21, 23, 24], "look": [12, 16], "f4": [16, 17, 22], "With": [16, 19, 20, 24], "see": [16, 21, 23], "behavior": [16, 18, 22, 24, 25], "auto": [16, 19], "come": [17, 19, 22], "assign": 17, "shift": [17, 19, 20, 23], "alt": [17, 19], "As": [17, 20], "quit": [17, 26], "program": 17, "escap": [17, 20], "h": [17, 19], "fit": [17, 19], "screen": [17, 20, 21, 23], "f": [17, 19], "resiz": 17, "textur": 17, "safe": [17, 21], "area": [17, 18, 20, 21], "d": 17, "c": [17, 24], "r": [17, 19], "step": [17, 19, 21, 23], "fp": [17, 18, 22], "j": 17, "direct": 17, "space": [17, 19], "down": [17, 19, 23, 24], "k": 17, "home": [17, 19, 23, 24], "ping": [17, 19, 23], "pong": [17, 19, 23], "pageup": 17, "pagedown": 17, "limit": [17, 23], "cut": 17, "copi": [17, 22, 24], "past": [17, 20], "v": [17, 26], "insert": 17, "slice": 17, "remov": 17, "undo": [17, 20], "redo": [17, 20], "bar": [17, 18, 20, 23], "f1": [17, 19], "top": [17, 18], "pixel": [17, 18, 19, 20, 21], "f2": [17, 19], "f3": [17, 19], "statu": [17, 19, 23, 24], "tool": [17, 19, 20, 21, 22], "dock": [17, 19, 22], "f7": [17, 19, 20], "full": [17, 19, 21, 22, 24], "f11": [17, 19], "present": [17, 19, 20, 22], "f12": [17, 19], "secondari": 17, "network": [17, 18], "n": [17, 24], "u": 17, "thumbnail": [17, 19], "transit": 17, "marker": 17, "reset": [17, 19, 22, 24], "gain": [17, 19, 21], "exposur": [17, 19, 21], "ocio": [17, 18, 19, 21, 22], "view": [17, 18, 21, 22, 23], "scrub": [17, 19, 21], "eras": [17, 20, 21], "rectangl": [17, 24], "circl": [17, 21], "pen": [17, 21], "size": [17, 19, 21, 23], "switch": [17, 19, 22, 23, 24], "black": [17, 19, 24], "background": [17, 23, 24], "hud": 17, "One": 17, "p": 17, "info": 17, "f5": 17, "f6": [17, 22], "f8": 17, "devic": 17, "f9": [17, 22, 25], "histogram": [17, 18], "vectorscop": [17, 18], "waveform": [17, 19], "f10": [17, 24], "log": [17, 18, 24], "about": [12, 17, 22], "8": [18, 19], "overview": 18, "build": [18, 21], "instal": 18, "launch": 18, "load": [18, 21, 22, 23], "drag": [18, 19, 20, 21, 22, 24], "drop": [18, 21], "browser": [18, 21, 22, 24], "recent": 18, "line": [18, 21], "hide": [18, 24], "show": [18, 22], "ui": [18, 21], "element": [18, 22], "divid": [18, 22], "context": 18, "sketch": [18, 21, 22], "modifi": [18, 19], "navig": [18, 21], "specif": 18, "languag": 18, "posit": [18, 21], "toolbar": [18, 19, 23], "error": [18, 19, 22], "hidden": [19, 20], "shown": [19, 20, 24], "third": 19, "viewport": [19, 20, 22], "fourth": 19, "under": [19, 24], "cursor": 19, "final": [19, 22], "let": 19, "know": [19, 24], "action": [19, 23, 24], "some": [12, 19, 21, 24], "shortcut": [19, 23, 24], "topbar": 19, "fullscreen": 19, "These": [19, 24, 26], "exit": 19, "alwai": [19, 20, 23], "configur": [19, 22, 24, 25], "closer": 19, "inspect": [19, 21], "middl": [19, 22], "pan": [19, 21], "within": [19, 21], "keyboard": [19, 20, 24], "perform": [19, 21], "centr": 19, "zoom": [19, 20, 21], "mousewheel": [19, 22, 24], "confort": 19, "factor": 19, "pulldown": 19, "without": [19, 20, 24], "particular": 19, "percentag": 19, "2x": 19, "pull": 19, "slider": 19, "driven": [19, 21], "opencolorio": 19, "gama": 19, "deriv": 19, "specifi": [19, 22], "cg": 19, "config": [19, 22], "ship": 19, "nuke": 19, "studio": 19, "ones": 19, "take": [19, 22], "scale": [19, 21], "quick": [19, 20], "track": [19, 21, 22], "pictur": 19, "immedi": 19, "how": [19, 20, 22, 23, 24, 25], "absolut": 19, "digit": [19, 24], "pretti": 19, "don": [19, 22, 24], "much": [19, 22, 25], "explan": 19, "There": [19, 20, 24], "paus": 19, "jump": [19, 20, 21], "per": [19, 23, 24], "desir": 19, "quickli": [19, 21, 22], "equival": 19, "press": 19, "bottom": [19, 22], "speaker": 19, "behaviour": [19, 23], "film": 19, "crop": 19, "aspect": [19, 21], "enter": [19, 20, 22, 23], "head": 19, "lot": 19, "independ": 19, "dark": 19, "grai": 19, "empti": [19, 20], "instead": [19, 22, 24, 25], "legal": 19, "handl": [19, 21], "logic": 19, "bigger": 19, "smaller": 19, "featur": [20, 21, 22], "tag": 20, "comment": 20, "record": [20, 22], "share": [20, 21, 24], "written": 20, "visual": [20, 21], "feedback": [20, 21], "colleagu": [20, 21], "bookmark": [20, 21], "mark": 20, "hit": 20, "twice": [20, 24], "stroke": [20, 21], "shape": [20, 21], "viewer": [20, 21, 22, 23, 24], "automat": [20, 22, 24], "hard": [20, 22], "depend": 20, "attach": [20, 22], "ghost": [20, 22], "mani": [20, 23, 24], "happen": [20, 22], "remain": [20, 24], "content": 20, "delet": 20, "partial": 20, "total": [20, 21], "presenc": 20, "indic": [20, 23], "yellow": 20, "veric": 20, "grip": 20, "caption": [20, 21], "onto": 20, "abov": [20, 22, 24], "rather": 20, "rasteris": 20, "fly": 20, "graphic": [20, 21, 23], "card": [20, 23], "brush": [20, 21, 22], "boundari": 20, "free": 20, "side": 20, "below": [20, 22], "rememb": [20, 23], "later": 20, "export": 20, "insid": [20, 24], "laser": [20, 22], "non": 20, "persist": 20, "fade": 20, "until": 20, "disappear": 20, "coupl": 20, "highlight": 20, "review": [20, 21], "continu": [20, 21], "still": [20, 21, 26], "around": [20, 22], "font": [20, 21, 22], "happi": 20, "cross": [20, 24], "discard": 20, "clean": 20, "sourc": 21, "profession": 21, "flipbook": 21, "effect": 21, "anim": 21, "industri": 21, "focus": 21, "intuit": 21, "highest": 21, "engin": 21, "its": [21, 22, 23, 24], "code": [21, 22], "pipelin": 21, "integr": 21, "customis": 21, "flexibl": 21, "collect": 21, "specialis": 21, "format": [21, 24], "colour": 21, "manag": 21, "organis": 21, "group": 21, "subset": 21, "highli": 21, "interact": 21, "collabor": 21, "workflow": [21, 23], "essenti": 21, "team": 21, "vfx": 21, "post": 21, "product": 21, "who": 21, "demand": [21, 23], "artwork": 21, "instantan": 21, "across": 21, "multipl": [21, 22], "robust": 21, "solut": 21, "been": [21, 23], "deploi": 21, "facil": 21, "individu": 21, "daili": 21, "sinc": 21, "august": 21, "2022": 21, "develop": [21, 26], "phase": 21, "swing": 21, "work": [21, 22, 24], "major": 21, "virtual": 21, "common": [21, 23], "todai": 21, "tif": 21, "jpg": 21, "psd": 21, "mp4": 21, "webm": 21, "player": 21, "embed": [21, 24], "sound": 21, "opentimelineio": [21, 22], "dissolv": 21, "pixar": [21, 24], "them": [21, 24], "built": [21, 24], "todo": 21, "lo": 21, "cuadro": 21, "respons": 21, "opac": 21, "easili": 21, "staff": 21, "accur": 21, "v2": 21, "correct": 21, "rgba": 21, "predefin": 21, "mask": [21, 24], "pop": [21, 22], "2nd": 21, "dual": 21, "sync": [21, 22], "synchron": 21, "lan": 21, "server": [21, 22, 24], "client": [21, 22, 24], "pref": [21, 24], "interpret": 21, "straightforward": 21, "And": 22, "perman": 22, "vanish": 22, "drawn": 22, "rectangular": 22, "minimum": 22, "maximum": [22, 23], "averag": 22, "after": 22, "field": 22, "seven": 22, "temporari": 22, "give": 22, "access": 22, "clone": 22, "again": 22, "refresh": 22, "re": 22, "sub": 22, "clipboard": 22, "gather": 22, "email": 22, "filemanag": 22, "messag": 22, "emit": 22, "dure": [22, 26], "oper": 22, "occur": 22, "ignor": [22, 23, 24], "hors": 22, "codec": [22, 23], "machin": [22, 24], "connect": [22, 24], "distinguis": 22, "ipv4": 22, "ipv6": 22, "address": 22, "host": 22, "alia": 22, "addit": [22, 26], "port": [22, 24], "fine": 22, "firewal": [22, 24], "incom": 22, "outgo": 22, "aka": 22, "append": 22, "sever": [22, 24, 26], "togeth": 22, "done": 22, "releas": 22, "resolutiono": 22, "match": [22, 23, 24], "assum": 22, "exist": 22, "each": [22, 23, 24], "section": [22, 24], "keypad": 22, "editor": 22, "mainli": [22, 25], "gb": [22, 25], "doe": [22, 23, 24, 25], "half": [22, 25], "ram": [22, 25], "qualiti": 22, "asset": [22, 24], "thing": 23, "random": 23, "widget": [12, 23], "spacebar": 23, "try": 23, "decod": 23, "store": [23, 24], "readi": 23, "effici": 23, "understand": 23, "obviou": 23, "grow": 23, "thu": 23, "slow": [23, 24], "off": 23, "resolut": 23, "wait": 23, "via": 23, "most": 23, "case": [23, 24], "although": 23, "optimis": 23, "veri": 23, "hardwar": 23, "transfer": 23, "faster": 23, "stream": 23, "dwb": 23, "larg": 23, "filmaura": 24, "usernam": 24, "resetset": 24, "old": 24, "calll": 24, "favorit": 24, "someth": 24, "wan": 24, "whole": 24, "behav": 24, "unus": 24, "reposit": 24, "withing": 24, "establish": 24, "fast": 24, "label": 24, "paramet": 24, "fltk": [12, 24], "stick": 24, "gtk": 24, "fill": 24, "well": 24, "otherwis": [10, 24], "those": 24, "recogn": 24, "dramat": 24, "privat": 24, "unless": 24, "soon": 24, "move": 24, "hex": 24, "origin": 24, "process": 24, "hsv": 24, "hsl": 24, "cie": 24, "xyz": 24, "xyi": 24, "lab": 24, "cielab": 24, "luv": 24, "cieluv": 24, "yuv": 24, "analog": 24, "pal": 24, "ydbdr": 24, "secam": 24, "yiq": 24, "ntsc": 24, "itu": 24, "601": 24, "ycbcr": 24, "709": 24, "hdtv": 24, "lumma": 24, "bit": 24, "depth": 24, "repeat": 24, "scratch": 24, "regular": 24, "express": 24, "_v": 24, "far": 24, "drive": 24, "remot": 24, "gga": 24, "unix": 24, "simpl": 24, "local": 24, "sent": 24, "receiv": 24, "noth": 24, "were": 26, "latest": 26, "www": 26, "youtub": 26, "watch": 26, "8jviz": 26, "ppcrg": 26, "plxj9nnbdnfrmd8aq41ajymb7whn99g5c": 26, "demo": 12, "constructor": 10, "rtype": 10, "correspond": 10, "new_menu": [], "redirect": 24, "tcp": 24, "55120": 24, "necessari": 24, "pyfltk": [0, 4], "prefspath": [2, 4], "rootpath": [2, 4], "root": 2, "insal": 2, "fltk14": 12, "sort": 12, "albeit": 12, "older": 12, "gitlab": 12, "sourceforg": 12, "doc": 12, "ch0_prefac": 12, "html": 12, "currentsess": [2, 4], "opensess": [2, 4], "setcurrentsess": [2, 4], "saveotio": [2, 4]}, "objects": {"": [[8, 0, 0, "-", "mrv2"]], "mrv2": [[8, 1, 1, "", "FileMedia"], [8, 1, 1, "", "Path"], [8, 1, 1, "", "RationalTime"], [8, 1, 1, "", "TimeRange"], [1, 0, 0, "-", "annotations"], [2, 0, 0, "-", "cmd"], [3, 0, 0, "-", "image"], [5, 0, 0, "-", "io"], [6, 0, 0, "-", "math"], [7, 0, 0, "-", "media"], [9, 0, 0, "-", "playlist"], [10, 0, 0, "-", "plugin"], [13, 0, 0, "-", "settings"], [14, 0, 0, "-", "timeline"], [15, 0, 0, "-", "usd"]], "mrv2.FileMedia": [[8, 2, 1, "", "audioOffset"], [8, 2, 1, "", "audioPath"], [8, 2, 1, "", "currentTime"], [8, 2, 1, "", "inOutRange"], [8, 2, 1, "", "loop"], [8, 2, 1, "", "mute"], [8, 2, 1, "", "path"], [8, 2, 1, "", "playback"], [8, 2, 1, "", "timeRange"], [8, 2, 1, "", "videoLayer"], [8, 2, 1, "", "volume"]], "mrv2.Path": [[8, 3, 1, "", "get"], [8, 3, 1, "", "getBaseName"], [8, 3, 1, "", "getDirectory"], [8, 3, 1, "", "getExtension"], [8, 3, 1, "", "getNumber"], [8, 3, 1, "", "getPadding"], [8, 3, 1, "", "isAbsolute"], [8, 3, 1, "", "isEmpty"]], "mrv2.RationalTime": [[8, 3, 1, "", "almost_equal"], [8, 3, 1, "", "duration_from_start_end_time"], [8, 3, 1, "", "duration_from_start_end_time_inclusive"], [8, 3, 1, "", "from_frames"], [8, 3, 1, "", "from_seconds"], [8, 3, 1, "", "from_time_string"], [8, 3, 1, "", "from_timecode"], [8, 3, 1, "", "is_invalid_time"], [8, 3, 1, "", "is_valid_timecode_rate"], [8, 3, 1, "", "nearest_valid_timecode_rate"], [8, 3, 1, "", "rescaled_to"], [8, 3, 1, "", "to_frames"], [8, 3, 1, "", "to_seconds"], [8, 3, 1, "", "to_time_string"], [8, 3, 1, "", "to_timecode"], [8, 3, 1, "", "value_rescaled_to"]], "mrv2.TimeRange": [[8, 3, 1, "", "before"], [8, 3, 1, "", "begins"], [8, 3, 1, "", "clamped"], [8, 3, 1, "", "contains"], [8, 3, 1, "", "duration_extended_by"], [8, 3, 1, "", "end_time_exclusive"], [8, 3, 1, "", "end_time_inclusive"], [8, 3, 1, "", "extended_by"], [8, 3, 1, "", "finishes"], [8, 3, 1, "", "intersects"], [8, 3, 1, "", "meets"], [8, 3, 1, "", "overlaps"], [8, 3, 1, "", "range_from_start_end_time"], [8, 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, "", "currentSession"], [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, "", "open"], [2, 4, 1, "", "openSession"], [2, 4, 1, "", "prefsPath"], [2, 4, 1, "", "rootPath"], [2, 4, 1, "", "save"], [2, 4, 1, "", "saveOTIO"], [2, 4, 1, "", "savePDF"], [2, 4, 1, "", "saveSession"], [2, 4, 1, "", "saveSessionAs"], [2, 4, 1, "", "setCompareOptions"], [2, 4, 1, "", "setCurrentSession"], [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.io": [[5, 1, 1, "", "Compression"], [5, 1, 1, "", "Profile"], [5, 1, 1, "", "SaveOptions"]], "mrv2.io.SaveOptions": [[5, 2, 1, "", "annotations"], [5, 2, 1, "", "dwaCompressionLevel"], [5, 2, 1, "", "exrCompression"], [5, 2, 1, "", "ffmpegProfile"], [5, 2, 1, "", "zipCompressionLevel"]], "mrv2.math": [[6, 1, 1, "", "Vector2f"], [6, 1, 1, "", "Vector2i"], [6, 1, 1, "", "Vector3f"], [6, 1, 1, "", "Vector4f"]], "mrv2.math.Vector2f": [[6, 2, 1, "", "x"], [6, 2, 1, "", "y"]], "mrv2.math.Vector2i": [[6, 2, 1, "", "x"], [6, 2, 1, "", "y"]], "mrv2.math.Vector3f": [[6, 2, 1, "", "x"], [6, 2, 1, "", "y"], [6, 2, 1, "", "z"]], "mrv2.math.Vector4f": [[6, 2, 1, "", "w"], [6, 2, 1, "", "x"], [6, 2, 1, "", "y"], [6, 2, 1, "", "z"]], "mrv2.media": [[7, 4, 1, "", "Afile"], [7, 4, 1, "", "Aindex"], [7, 4, 1, "", "BIndexes"], [7, 4, 1, "", "Bfiles"], [7, 1, 1, "", "CompareMode"], [7, 1, 1, "", "CompareOptions"], [7, 4, 1, "", "activeFiles"], [7, 4, 1, "", "clearB"], [7, 4, 1, "", "close"], [7, 4, 1, "", "closeAll"], [7, 4, 1, "", "firstVersion"], [7, 4, 1, "", "lastVersion"], [7, 4, 1, "", "layers"], [7, 4, 1, "", "list"], [7, 4, 1, "", "nextVersion"], [7, 4, 1, "", "previousVersion"], [7, 4, 1, "", "setA"], [7, 4, 1, "", "setB"], [7, 4, 1, "", "setLayer"], [7, 4, 1, "", "setStereo"], [7, 4, 1, "", "toggleB"]], "mrv2.media.CompareOptions": [[7, 2, 1, "", "mode"], [7, 2, 1, "", "overlay"], [7, 2, 1, "", "wipeCenter"], [7, 2, 1, "", "wipeRotation"]], "mrv2.playlist": [[9, 4, 1, "", "add_clip"], [9, 4, 1, "", "list"], [9, 4, 1, "", "save"], [9, 4, 1, "", "select"]], "mrv2.plugin": [[10, 1, 1, "", "Plugin"]], "mrv2.plugin.Plugin": [[10, 3, 1, "", "active"], [10, 3, 1, "", "menus"]], "mrv2.settings": [[13, 4, 1, "", "memory"], [13, 4, 1, "", "readAhead"], [13, 4, 1, "", "readBehind"], [13, 4, 1, "", "setMemory"], [13, 4, 1, "", "setReadAhead"], [13, 4, 1, "", "setReadBehind"]], "mrv2.timeline": [[14, 1, 1, "", "FileSequenceAudio"], [14, 1, 1, "", "Loop"], [14, 1, 1, "", "Playback"], [14, 1, 1, "", "TimerMode"], [14, 4, 1, "", "frame"], [14, 4, 1, "", "inOutRange"], [14, 4, 1, "", "loop"], [14, 4, 1, "", "playBackwards"], [14, 4, 1, "", "playForwards"], [14, 4, 1, "", "seconds"], [14, 4, 1, "", "seek"], [14, 4, 1, "", "setIn"], [14, 4, 1, "", "setInOutRange"], [14, 4, 1, "", "setLoop"], [14, 4, 1, "", "setOut"], [14, 4, 1, "", "stop"], [14, 4, 1, "", "time"], [14, 4, 1, "", "timeRange"]], "mrv2.timeline.FileSequenceAudio": [[14, 5, 1, "", "name"]], "mrv2.timeline.Loop": [[14, 5, 1, "", "name"]], "mrv2.timeline.Playback": [[14, 5, 1, "", "name"]], "mrv2.timeline.TimerMode": [[14, 5, 1, "", "name"]], "mrv2.usd": [[15, 1, 1, "", "DrawMode"], [15, 1, 1, "", "RenderOptions"], [15, 4, 1, "", "renderOptions"], [15, 4, 1, "", "setRenderOptions"]], "mrv2.usd.RenderOptions": [[15, 2, 1, "", "complexity"], [15, 2, 1, "", "diskCacheByteCount"], [15, 2, 1, "", "drawMode"], [15, 2, 1, "", "enableLighting"], [15, 2, 1, "", "renderWidth"], [15, 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 module"], "1": ["py", "class", "Python class"], "2": ["py", "attribute", "Python attribute"], "3": ["py", "method", "Python method"], "4": ["py", "function", "Python function"], "5": ["py", "property", "Python property"]}, "titleterms": {"welcom": 0, "mrv2": [0, 8, 16, 18, 19, 21], "": 0, "document": 0, "tabl": 0, "content": 0, "indic": [0, 19], "annot": [1, 20, 22], "modul": [1, 2, 3, 5, 6, 7, 8, 9, 10, 13, 14, 15], "cmd": 2, "imag": [3, 24], "python": [4, 22], "api": 4, "io": 5, "math": 6, "media": [7, 16, 22], "playlist": [9, 22], "plugin": 10, "plug": 11, "system": 11, "ins": 11, "set": [13, 22, 25], "timelin": [14, 19, 24], "usd": [15, 22, 24], "get": 16, "start": [16, 19, 24], "build": 16, "instal": 16, "launch": 16, "load": [16, 24], "drag": 16, "drop": 16, "browser": 16, "recent": 16, "menu": [16, 19, 22, 24], "command": 16, "line": 16, "view": [16, 19, 24], "hotkei": [17, 23], "user": [18, 24], "guid": 18, "The": [19, 24], "interfac": [19, 24], "hide": 19, "show": [19, 24], "ui": [19, 24], "element": [19, 24], "customis": 19, "mous": [19, 22], "interact": 19, "viewer": 19, "top": [19, 24], "bar": [19, 24], "frame": [19, 23, 24], "transport": 19, "control": 19, "fp": [19, 23, 24], "end": 19, "player": 19, "safe": [19, 24], "area": [19, 22, 24], "data": 19, "window": [19, 24], "displai": [19, 24], "mask": 19, "hud": [19, 24], "render": 19, "channel": 19, "mirror": 19, "background": 19, "video": [19, 26], "level": 19, "alpha": 19, "blend": 19, "minifi": 19, "magnifi": 19, "filter": 19, "panel": [19, 22, 24], "divid": 19, "note": 20, "ad": 20, "sketch": 20, "modifi": 20, "navig": 20, "draw": 20, "introduct": 21, "what": 21, "i": 21, "current": [21, 23, 24], "version": [21, 24], "v0": 21, "8": 21, "0": 21, "overview": 21, "color": [22, 24], "compar": 22, "environ": 22, "map": [22, 24], "file": [22, 24], "context": 22, "right": 22, "button": 22, "histogram": 22, "log": 22, "inform": 22, "network": [22, 24], "stereo": 22, "3d": 22, "vectorscop": 22, "v\u00eddeo": 23, "playback": [23, 24], "loop": [23, 24], "mode": [23, 24], "rate": 23, "specif": 23, "cach": 23, "behavior": 23, "prefer": 24, "alwai": 24, "secondari": 24, "On": 24, "singl": 24, "instanc": 24, "auto": 24, "refit": 24, "normal": 24, "fullscreen": 24, "present": 24, "maco": 24, "tool": 24, "dock": 24, "onli": 24, "One": 24, "gain": 24, "gamma": 24, "crop": 24, "zoom": 24, "speed": 24, "languag": 24, "scheme": 24, "theme": 24, "posit": 24, "save": 24, "exit": 24, "fix": 24, "size": 24, "take": 24, "valu": 24, "request": 24, "click": 24, "travel": 24, "drawer": 24, "thumbnail": 24, "activ": 24, "us": 24, "nativ": 24, "chooser": 24, "scrub": 24, "sensit": 24, "preview": 24, "edit": 24, "transit": 24, "marker": 24, "pixel": 24, "toolbar": 24, "rgba": 24, "lumin": 24, "ocio": 24, "config": 24, "default": 24, "input": 24, "space": 24, "miss": 24, "regex": 24, "maximum": 24, "apart": 24, "path": 24, "add": 24, "remov": 24, "error": 24, "tutori": 26, "viewport": 24, "pyfltk": 12}, "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": {"Welcome to mrv2\u2019s documentation!": [[0, "welcome-to-mrv2-s-documentation"]], "Table of Contents": [[0, "table-of-contents"]], "Indices and tables": [[0, "indices-and-tables"]], "annotations module": [[1, "module-mrv2.annotations"]], "cmd module": [[2, "module-mrv2.cmd"]], "image module": [[3, "module-mrv2.image"]], "Python API": [[4, "python-api"]], "io Module": [[5, "module-mrv2.io"]], "math module": [[6, "module-mrv2.math"]], "media module": [[7, "module-mrv2.media"]], "mrv2 module": [[8, "module-mrv2"]], "playlist module": [[9, "module-mrv2.playlist"]], "plugin module": [[10, "module-mrv2.plugin"]], "Plug-in System": [[11, "plug-in-system"]], "Plug-ins": [[11, "plug-ins"]], "pyFLTK": [[12, "pyfltk"]], "settings module": [[13, "module-mrv2.settings"]], "timeline module": [[14, "module-mrv2.timeline"]], "usd module": [[15, "module-mrv2.usd"]], "Getting Started": [[16, "getting-started"]], "Building mrv2": [[16, "building-mrv2"]], "Installing mrv2": [[16, "installing-mrv2"]], "Launching mrv2": [[16, "launching-mrv2"]], "Loading Media (Drag and Drop)": [[16, "loading-media-drag-and-drop"]], "Loading Media (mrv2 Browser)": [[16, "loading-media-mrv2-browser"]], "Loading Media (Recent menu)": [[16, "loading-media-recent-menu"]], "Loading Media (command line)": [[16, "loading-media-command-line"]], "Viewing Media": [[16, "viewing-media"]], "Hotkeys": [[17, "hotkeys"]], "mrv2 User Guide": [[18, "mrv2-user-guide"]], "The mrv2 Interface": [[19, "the-mrv2-interface"]], "Hiding/Showing UI elements": [[19, "hiding-showing-ui-elements"]], "Customising the Interface": [[19, "customising-the-interface"]], "Mouse interaction in the Viewer": [[19, "mouse-interaction-in-the-viewer"]], "The Top Bar": [[19, "the-top-bar"]], "The Timeline": [[19, "the-timeline"]], "Frame Indicator": [[19, "frame-indicator"]], "Transport Controls": [[19, "transport-controls"]], "FPS": [[19, "fps"], [24, null]], "Start and End Frame Indicator": [[19, "start-and-end-frame-indicator"]], "Player/Viewer Controls": [[19, "player-viewer-controls"]], "View Menu": [[19, "view-menu"]], "Safe Areas": [[19, null], [24, null]], "Data Window": [[19, null]], "Display Window": [[19, null]], "Mask": [[19, null]], "HUD": [[19, null], [24, null]], "Render Menu": [[19, "render-menu"]], "Channels": [[19, null]], "Mirror": [[19, null]], "Background": [[19, null]], "Video Levels": [[19, null]], "Alpha Blend": [[19, null]], "Minify and Magnify Filters": [[19, null]], "The Panels": [[19, "the-panels"]], "Divider": [[19, "divider"]], "Notes and Annotations": [[20, "notes-and-annotations"]], "Adding a Note or Sketch": [[20, "adding-a-note-or-sketch"]], "Modifying a Note": [[20, "modifying-a-note"]], "Navigating Notes": [[20, "navigating-notes"]], "Drawing Annotations": [[20, "drawing-annotations"]], "Introduction": [[21, "introduction"]], "What is mrv2 ?": [[21, "what-is-mrv2"]], "Current Version: v0.8.0 - Overview": [[21, "current-version-v0-8-0-overview"]], "Panels": [[22, "panels"]], "Annotations Panel": [[22, "annotations-panel"]], "Color Area Panel": [[22, "color-area-panel"]], "Color Panel": [[22, "color-panel"]], "Compare Panel": [[22, "compare-panel"]], "Environment Map Panel": [[22, "environment-map-panel"]], "Files Panel": [[22, "files-panel"]], "Files Panel Context Menu (right mouse button)": [[22, "files-panel-context-menu-right-mouse-button"]], "Histogram Panel": [[22, "histogram-panel"]], "Logs Panel": [[22, "logs-panel"]], "Media Information Panel": [[22, "media-information-panel"]], "Network Panel": [[22, "network-panel"]], "Playlist Panel": [[22, "playlist-panel"]], "Python Panel": [[22, "python-panel"]], "Settings Panel": [[22, "settings-panel"]], "Stereo 3D Panel": [[22, "stereo-3d-panel"]], "USD Panel": [[22, "usd-panel"]], "Vectorscope Panel": [[22, "vectorscope-panel"]], "V\u00eddeo Playback": [[23, "video-playback"]], "Current Frame": [[23, "current-frame"]], "Loop Modes": [[23, "loop-modes"]], "FPS Rate": [[23, "fps-rate"]], "Playback Specific Hotkeys": [[23, "playback-specific-hotkeys"]], "Cache Behavior": [[23, "cache-behavior"]], "Preferences": [[24, "preferences"]], "User Interface": [[24, "user-interface"]], "Always on Top and Secondary On Top": [[24, null]], "Single Instance": [[24, null]], "Auto Refit Image": [[24, null]], "Normal, Fullscreen and Presentation": [[24, null]], "UI Elements": [[24, "ui-elements"]], "The UI bars": [[24, null]], "macOS Menus": [[24, null]], "Tool Dock": [[24, null]], "Only One Panel": [[24, null]], "View Window": [[24, "view-window"]], "Gain and Gamma": [[24, null]], "Crop": [[24, null]], "Zoom Speed": [[24, null]], "Language and Colors": [[24, "language-and-colors"]], "Language": [[24, null]], "Scheme": [[24, null]], "Color Theme": [[24, null]], "View Colors": [[24, null]], "Positioning": [[24, "positioning"]], "Always Save on Exit": [[24, null]], "Fixed Position": [[24, null]], "Fixed Size": [[24, null]], "Take Current Window Values": [[24, null]], "File Requester": [[24, "file-requester"]], "Single Click to Travel Drawers": [[24, null]], "Thumbnails Active": [[24, null]], "USD Thumbnails": [[24, null]], "Use Native File Chooser": [[24, null]], "Playback": [[24, "playback"]], "Auto Playback": [[24, null]], "Looping Mode": [[24, null]], "Scrub Sensitivity": [[24, null]], "Timeline": [[24, "timeline"]], "Display": [[24, null]], "Preview Thumbnails": [[24, null]], "Edit Viewport": [[24, "edit-viewport"]], "Start in Edit mode": [[24, null]], "Thumbnails": [[24, null]], "Show Transitions": [[24, null]], "Show Markers": [[24, null]], "Pixel Toolbar": [[24, "pixel-toolbar"]], "RGBA Display": [[24, null]], "Pixel Values": [[24, null]], "Secondary Display": [[24, null]], "Luminance": [[24, null]], "OCIO": [[24, "ocio"]], "OCIO Config File": [[24, null]], "OCIO Defaults": [[24, "ocio-defaults"]], "Use Active Views and Active Displays": [[24, null]], "Input Color Space": [[24, null]], "Loading": [[24, "loading"]], "Missing Frame": [[24, null]], "Version Regex": [[24, null]], "Maximum Images Apart": [[24, null]], "Path Mapping": [[24, "path-mapping"]], "Add Path": [[24, null]], "Remove Path": [[24, null]], "Network": [[24, "network"]], "Errors": [[24, "errors"]], "Settings": [[25, "settings"]], "Video Tutorials": [[26, "video-tutorials"]]}, "indexentries": {"add() (in module mrv2.annotations)": [[1, "mrv2.annotations.add"]], "module": [[1, "module-mrv2.annotations"], [2, "module-mrv2.cmd"], [3, "module-mrv2.image"], [5, "module-mrv2.io"], [6, "module-mrv2.math"], [7, "module-mrv2.media"], [8, "module-mrv2"], [9, "module-mrv2.playlist"], [10, "module-mrv2.plugin"], [13, "module-mrv2.settings"], [14, "module-mrv2.timeline"], [15, "module-mrv2.usd"]], "mrv2.annotations": [[1, "module-mrv2.annotations"]], "close() (in module mrv2.cmd)": [[2, "mrv2.cmd.close"]], "closeall() (in module mrv2.cmd)": [[2, "mrv2.cmd.closeAll"]], "compare() (in module mrv2.cmd)": [[2, "mrv2.cmd.compare"]], "compareoptions() (in module mrv2.cmd)": [[2, "mrv2.cmd.compareOptions"]], "currentsession() (in module mrv2.cmd)": [[2, "mrv2.cmd.currentSession"]], "displayoptions() (in module mrv2.cmd)": [[2, "mrv2.cmd.displayOptions"]], "environmentmapoptions() (in module mrv2.cmd)": [[2, "mrv2.cmd.environmentMapOptions"]], "getlayers() (in module mrv2.cmd)": [[2, "mrv2.cmd.getLayers"]], "imageoptions() (in module mrv2.cmd)": [[2, "mrv2.cmd.imageOptions"]], "ismuted() (in module mrv2.cmd)": [[2, "mrv2.cmd.isMuted"]], "lutoptions() (in module mrv2.cmd)": [[2, "mrv2.cmd.lutOptions"]], "mrv2.cmd": [[2, "module-mrv2.cmd"]], "open() (in module mrv2.cmd)": [[2, "mrv2.cmd.open"]], "opensession() (in module mrv2.cmd)": [[2, "mrv2.cmd.openSession"]], "prefspath() (in module mrv2.cmd)": [[2, "mrv2.cmd.prefsPath"]], "rootpath() (in module mrv2.cmd)": [[2, "mrv2.cmd.rootPath"]], "save() (in module mrv2.cmd)": [[2, "mrv2.cmd.save"]], "saveotio() (in module mrv2.cmd)": [[2, "mrv2.cmd.saveOTIO"]], "savepdf() (in module mrv2.cmd)": [[2, "mrv2.cmd.savePDF"]], "savesession() (in module mrv2.cmd)": [[2, "mrv2.cmd.saveSession"]], "savesessionas() (in module mrv2.cmd)": [[2, "mrv2.cmd.saveSessionAs"]], "setcompareoptions() (in module mrv2.cmd)": [[2, "mrv2.cmd.setCompareOptions"]], "setcurrentsession() (in module mrv2.cmd)": [[2, "mrv2.cmd.setCurrentSession"]], "setdisplayoptions() (in module mrv2.cmd)": [[2, "mrv2.cmd.setDisplayOptions"]], "setenvironmentmapoptions() (in module mrv2.cmd)": [[2, "mrv2.cmd.setEnvironmentMapOptions"]], "setimageoptions() (in module mrv2.cmd)": [[2, "mrv2.cmd.setImageOptions"]], "setlutoptions() (in module mrv2.cmd)": [[2, "mrv2.cmd.setLUTOptions"]], "setmute() (in module mrv2.cmd)": [[2, "mrv2.cmd.setMute"]], "setstereo3doptions() (in module mrv2.cmd)": [[2, "mrv2.cmd.setStereo3DOptions"]], "setvolume() (in module mrv2.cmd)": [[2, "mrv2.cmd.setVolume"]], "stereo3doptions() (in module mrv2.cmd)": [[2, "mrv2.cmd.stereo3DOptions"]], "update() (in module mrv2.cmd)": [[2, "mrv2.cmd.update"]], "volume() (in module mrv2.cmd)": [[2, "mrv2.cmd.volume"]], "alphablend (class in mrv2.image)": [[3, "mrv2.image.AlphaBlend"]], "channels (class in mrv2.image)": [[3, "mrv2.image.Channels"]], "color (class in mrv2.image)": [[3, "mrv2.image.Color"]], "displayoptions (class in mrv2.image)": [[3, "mrv2.image.DisplayOptions"]], "environmentmapoptions (class in mrv2.image)": [[3, "mrv2.image.EnvironmentMapOptions"]], "environmentmaptype (class in mrv2.image)": [[3, "mrv2.image.EnvironmentMapType"]], "imagefilter (class in mrv2.image)": [[3, "mrv2.image.ImageFilter"]], "imagefilters (class in mrv2.image)": [[3, "mrv2.image.ImageFilters"]], "imageoptions (class in mrv2.image)": [[3, "mrv2.image.ImageOptions"]], "inputvideolevels (class in mrv2.image)": [[3, "mrv2.image.InputVideoLevels"]], "lutoptions (class in mrv2.image)": [[3, "mrv2.image.LUTOptions"]], "lutorder (class in mrv2.image)": [[3, "mrv2.image.LUTOrder"]], "levels (class in mrv2.image)": [[3, "mrv2.image.Levels"]], "mirror (class in mrv2.image)": [[3, "mrv2.image.Mirror"]], "softclip (class in mrv2.image)": [[3, "mrv2.image.SoftClip"]], "stereo3dinput (class in mrv2.image)": [[3, "mrv2.image.Stereo3DInput"]], "stereo3doptions (class in mrv2.image)": [[3, "mrv2.image.Stereo3DOptions"]], "stereo3doutput (class in mrv2.image)": [[3, "mrv2.image.Stereo3DOutput"]], "videolevels (class in mrv2.image)": [[3, "mrv2.image.VideoLevels"]], "yuvcoefficients (class in mrv2.image)": [[3, "mrv2.image.YUVCoefficients"]], "add (mrv2.image.color attribute)": [[3, "mrv2.image.Color.add"]], "alphablend (mrv2.image.imageoptions attribute)": [[3, "mrv2.image.ImageOptions.alphaBlend"]], "brightness (mrv2.image.color attribute)": [[3, "mrv2.image.Color.brightness"]], "channels (mrv2.image.displayoptions attribute)": [[3, "mrv2.image.DisplayOptions.channels"]], "color (mrv2.image.displayoptions attribute)": [[3, "mrv2.image.DisplayOptions.color"]], "contrast (mrv2.image.color attribute)": [[3, "mrv2.image.Color.contrast"]], "enabled (mrv2.image.color attribute)": [[3, "mrv2.image.Color.enabled"]], "enabled (mrv2.image.levels attribute)": [[3, "mrv2.image.Levels.enabled"]], "enabled (mrv2.image.softclip attribute)": [[3, "mrv2.image.SoftClip.enabled"]], "eyeseparation (mrv2.image.stereo3doptions attribute)": [[3, "mrv2.image.Stereo3DOptions.eyeSeparation"]], "filename (mrv2.image.lutoptions attribute)": [[3, "mrv2.image.LUTOptions.fileName"]], "focallength (mrv2.image.environmentmapoptions attribute)": [[3, "mrv2.image.EnvironmentMapOptions.focalLength"]], "gamma (mrv2.image.levels attribute)": [[3, "mrv2.image.Levels.gamma"]], "horizontalaperture (mrv2.image.environmentmapoptions attribute)": [[3, "mrv2.image.EnvironmentMapOptions.horizontalAperture"]], "imagefilters (mrv2.image.imageoptions attribute)": [[3, "mrv2.image.ImageOptions.imageFilters"]], "inhigh (mrv2.image.levels attribute)": [[3, "mrv2.image.Levels.inHigh"]], "inlow (mrv2.image.levels attribute)": [[3, "mrv2.image.Levels.inLow"]], "input (mrv2.image.stereo3doptions attribute)": [[3, "mrv2.image.Stereo3DOptions.input"]], "invert (mrv2.image.color attribute)": [[3, "mrv2.image.Color.invert"]], "levels (mrv2.image.displayoptions attribute)": [[3, "mrv2.image.DisplayOptions.levels"]], "magnify (mrv2.image.imagefilters attribute)": [[3, "mrv2.image.ImageFilters.magnify"]], "minify (mrv2.image.imagefilters attribute)": [[3, "mrv2.image.ImageFilters.minify"]], "mirror (mrv2.image.displayoptions attribute)": [[3, "mrv2.image.DisplayOptions.mirror"]], "mrv2.image": [[3, "module-mrv2.image"]], "order (mrv2.image.lutoptions attribute)": [[3, "mrv2.image.LUTOptions.order"]], "outhigh (mrv2.image.levels attribute)": [[3, "mrv2.image.Levels.outHigh"]], "outlow (mrv2.image.levels attribute)": [[3, "mrv2.image.Levels.outLow"]], "output (mrv2.image.stereo3doptions attribute)": [[3, "mrv2.image.Stereo3DOptions.output"]], "rotatex (mrv2.image.environmentmapoptions attribute)": [[3, "mrv2.image.EnvironmentMapOptions.rotateX"]], "rotatey (mrv2.image.environmentmapoptions attribute)": [[3, "mrv2.image.EnvironmentMapOptions.rotateY"]], "saturation (mrv2.image.color attribute)": [[3, "mrv2.image.Color.saturation"]], "softclip (mrv2.image.displayoptions attribute)": [[3, "mrv2.image.DisplayOptions.softClip"]], "spin (mrv2.image.environmentmapoptions attribute)": [[3, "mrv2.image.EnvironmentMapOptions.spin"]], "subdivisionx (mrv2.image.environmentmapoptions attribute)": [[3, "mrv2.image.EnvironmentMapOptions.subdivisionX"]], "subdivisiony (mrv2.image.environmentmapoptions attribute)": [[3, "mrv2.image.EnvironmentMapOptions.subdivisionY"]], "swapeyes (mrv2.image.stereo3doptions attribute)": [[3, "mrv2.image.Stereo3DOptions.swapEyes"]], "tint (mrv2.image.color attribute)": [[3, "mrv2.image.Color.tint"]], "type (mrv2.image.environmentmapoptions attribute)": [[3, "mrv2.image.EnvironmentMapOptions.type"]], "value (mrv2.image.softclip attribute)": [[3, "mrv2.image.SoftClip.value"]], "verticalaperture (mrv2.image.environmentmapoptions attribute)": [[3, "mrv2.image.EnvironmentMapOptions.verticalAperture"]], "videolevels (mrv2.image.imageoptions attribute)": [[3, "mrv2.image.ImageOptions.videoLevels"]], "x (mrv2.image.mirror attribute)": [[3, "mrv2.image.Mirror.x"]], "y (mrv2.image.mirror attribute)": [[3, "mrv2.image.Mirror.y"]], "compression (class in mrv2.io)": [[5, "mrv2.io.Compression"]], "profile (class in mrv2.io)": [[5, "mrv2.io.Profile"]], "saveoptions (class in mrv2.io)": [[5, "mrv2.io.SaveOptions"]], "annotations (mrv2.io.saveoptions attribute)": [[5, "mrv2.io.SaveOptions.annotations"]], "dwacompressionlevel (mrv2.io.saveoptions attribute)": [[5, "mrv2.io.SaveOptions.dwaCompressionLevel"]], "exrcompression (mrv2.io.saveoptions attribute)": [[5, "mrv2.io.SaveOptions.exrCompression"]], "ffmpegprofile (mrv2.io.saveoptions attribute)": [[5, "mrv2.io.SaveOptions.ffmpegProfile"]], "mrv2.io": [[5, "module-mrv2.io"]], "zipcompressionlevel (mrv2.io.saveoptions attribute)": [[5, "mrv2.io.SaveOptions.zipCompressionLevel"]], "vector2f (class in mrv2.math)": [[6, "mrv2.math.Vector2f"]], "vector2i (class in mrv2.math)": [[6, "mrv2.math.Vector2i"]], "vector3f (class in mrv2.math)": [[6, "mrv2.math.Vector3f"]], "vector4f (class in mrv2.math)": [[6, "mrv2.math.Vector4f"]], "mrv2.math": [[6, "module-mrv2.math"]], "w (mrv2.math.vector4f attribute)": [[6, "mrv2.math.Vector4f.w"]], "x (mrv2.math.vector2f attribute)": [[6, "mrv2.math.Vector2f.x"]], "x (mrv2.math.vector2i attribute)": [[6, "mrv2.math.Vector2i.x"]], "x (mrv2.math.vector3f attribute)": [[6, "mrv2.math.Vector3f.x"]], "x (mrv2.math.vector4f attribute)": [[6, "mrv2.math.Vector4f.x"]], "y (mrv2.math.vector2f attribute)": [[6, "mrv2.math.Vector2f.y"]], "y (mrv2.math.vector2i attribute)": [[6, "mrv2.math.Vector2i.y"]], "y (mrv2.math.vector3f attribute)": [[6, "mrv2.math.Vector3f.y"]], "y (mrv2.math.vector4f attribute)": [[6, "mrv2.math.Vector4f.y"]], "z (mrv2.math.vector3f attribute)": [[6, "mrv2.math.Vector3f.z"]], "z (mrv2.math.vector4f attribute)": [[6, "mrv2.math.Vector4f.z"]], "afile() (in module mrv2.media)": [[7, "mrv2.media.Afile"]], "aindex() (in module mrv2.media)": [[7, "mrv2.media.Aindex"]], "bindexes() (in module mrv2.media)": [[7, "mrv2.media.BIndexes"]], "bfiles() (in module mrv2.media)": [[7, "mrv2.media.Bfiles"]], "comparemode (class in mrv2.media)": [[7, "mrv2.media.CompareMode"]], "compareoptions (class in mrv2.media)": [[7, "mrv2.media.CompareOptions"]], "activefiles() (in module mrv2.media)": [[7, "mrv2.media.activeFiles"]], "clearb() (in module mrv2.media)": [[7, "mrv2.media.clearB"]], "close() (in module mrv2.media)": [[7, "mrv2.media.close"]], "closeall() (in module mrv2.media)": [[7, "mrv2.media.closeAll"]], "firstversion() (in module mrv2.media)": [[7, "mrv2.media.firstVersion"]], "lastversion() (in module mrv2.media)": [[7, "mrv2.media.lastVersion"]], "layers() (in module mrv2.media)": [[7, "mrv2.media.layers"]], "list() (in module mrv2.media)": [[7, "mrv2.media.list"]], "mode (mrv2.media.compareoptions attribute)": [[7, "mrv2.media.CompareOptions.mode"]], "mrv2.media": [[7, "module-mrv2.media"]], "nextversion() (in module mrv2.media)": [[7, "mrv2.media.nextVersion"]], "overlay (mrv2.media.compareoptions attribute)": [[7, "mrv2.media.CompareOptions.overlay"]], "previousversion() (in module mrv2.media)": [[7, "mrv2.media.previousVersion"]], "seta() (in module mrv2.media)": [[7, "mrv2.media.setA"]], "setb() (in module mrv2.media)": [[7, "mrv2.media.setB"]], "setlayer() (in module mrv2.media)": [[7, "mrv2.media.setLayer"]], "setstereo() (in module mrv2.media)": [[7, "mrv2.media.setStereo"]], "toggleb() (in module mrv2.media)": [[7, "mrv2.media.toggleB"]], "wipecenter (mrv2.media.compareoptions attribute)": [[7, "mrv2.media.CompareOptions.wipeCenter"]], "wiperotation (mrv2.media.compareoptions attribute)": [[7, "mrv2.media.CompareOptions.wipeRotation"]], "filemedia (class in mrv2)": [[8, "mrv2.FileMedia"]], "path (class in mrv2)": [[8, "mrv2.Path"]], "rationaltime (class in mrv2)": [[8, "mrv2.RationalTime"]], "timerange (class in mrv2)": [[8, "mrv2.TimeRange"]], "almost_equal() (mrv2.rationaltime method)": [[8, "mrv2.RationalTime.almost_equal"]], "audiooffset (mrv2.filemedia attribute)": [[8, "mrv2.FileMedia.audioOffset"]], "audiopath (mrv2.filemedia attribute)": [[8, "mrv2.FileMedia.audioPath"]], "before() (mrv2.timerange method)": [[8, "mrv2.TimeRange.before"]], "begins() (mrv2.timerange method)": [[8, "mrv2.TimeRange.begins"]], "clamped() (mrv2.timerange method)": [[8, "mrv2.TimeRange.clamped"]], "contains() (mrv2.timerange method)": [[8, "mrv2.TimeRange.contains"]], "currenttime (mrv2.filemedia attribute)": [[8, "mrv2.FileMedia.currentTime"]], "duration_extended_by() (mrv2.timerange method)": [[8, "mrv2.TimeRange.duration_extended_by"]], "duration_from_start_end_time() (mrv2.rationaltime static method)": [[8, "mrv2.RationalTime.duration_from_start_end_time"]], "duration_from_start_end_time_inclusive() (mrv2.rationaltime static method)": [[8, "mrv2.RationalTime.duration_from_start_end_time_inclusive"]], "end_time_exclusive() (mrv2.timerange method)": [[8, "mrv2.TimeRange.end_time_exclusive"]], "end_time_inclusive() (mrv2.timerange method)": [[8, "mrv2.TimeRange.end_time_inclusive"]], "extended_by() (mrv2.timerange method)": [[8, "mrv2.TimeRange.extended_by"]], "finishes() (mrv2.timerange method)": [[8, "mrv2.TimeRange.finishes"]], "from_frames() (mrv2.rationaltime static method)": [[8, "mrv2.RationalTime.from_frames"]], "from_seconds() (mrv2.rationaltime static method)": [[8, "mrv2.RationalTime.from_seconds"]], "from_time_string() (mrv2.rationaltime static method)": [[8, "mrv2.RationalTime.from_time_string"]], "from_timecode() (mrv2.rationaltime static method)": [[8, "mrv2.RationalTime.from_timecode"]], "get() (mrv2.path method)": [[8, "mrv2.Path.get"]], "getbasename() (mrv2.path method)": [[8, "mrv2.Path.getBaseName"]], "getdirectory() (mrv2.path method)": [[8, "mrv2.Path.getDirectory"]], "getextension() (mrv2.path method)": [[8, "mrv2.Path.getExtension"]], "getnumber() (mrv2.path method)": [[8, "mrv2.Path.getNumber"]], "getpadding() (mrv2.path method)": [[8, "mrv2.Path.getPadding"]], "inoutrange (mrv2.filemedia attribute)": [[8, "mrv2.FileMedia.inOutRange"]], "intersects() (mrv2.timerange method)": [[8, "mrv2.TimeRange.intersects"]], "isabsolute() (mrv2.path method)": [[8, "mrv2.Path.isAbsolute"]], "isempty() (mrv2.path method)": [[8, "mrv2.Path.isEmpty"]], "is_invalid_time() (mrv2.rationaltime method)": [[8, "mrv2.RationalTime.is_invalid_time"]], "is_valid_timecode_rate() (mrv2.rationaltime static method)": [[8, "mrv2.RationalTime.is_valid_timecode_rate"]], "loop (mrv2.filemedia attribute)": [[8, "mrv2.FileMedia.loop"]], "meets() (mrv2.timerange method)": [[8, "mrv2.TimeRange.meets"]], "mrv2": [[8, "module-mrv2"]], "mute (mrv2.filemedia attribute)": [[8, "mrv2.FileMedia.mute"]], "nearest_valid_timecode_rate() (mrv2.rationaltime static method)": [[8, "mrv2.RationalTime.nearest_valid_timecode_rate"]], "overlaps() (mrv2.timerange method)": [[8, "mrv2.TimeRange.overlaps"]], "path (mrv2.filemedia attribute)": [[8, "mrv2.FileMedia.path"]], "playback (mrv2.filemedia attribute)": [[8, "mrv2.FileMedia.playback"]], "range_from_start_end_time() (mrv2.timerange static method)": [[8, "mrv2.TimeRange.range_from_start_end_time"]], "range_from_start_end_time_inclusive() (mrv2.timerange static method)": [[8, "mrv2.TimeRange.range_from_start_end_time_inclusive"]], "rescaled_to() (mrv2.rationaltime method)": [[8, "mrv2.RationalTime.rescaled_to"]], "timerange (mrv2.filemedia attribute)": [[8, "mrv2.FileMedia.timeRange"]], "to_frames() (mrv2.rationaltime method)": [[8, "mrv2.RationalTime.to_frames"]], "to_seconds() (mrv2.rationaltime method)": [[8, "mrv2.RationalTime.to_seconds"]], "to_time_string() (mrv2.rationaltime method)": [[8, "mrv2.RationalTime.to_time_string"]], "to_timecode() (mrv2.rationaltime method)": [[8, "mrv2.RationalTime.to_timecode"]], "value_rescaled_to() (mrv2.rationaltime method)": [[8, "mrv2.RationalTime.value_rescaled_to"]], "videolayer (mrv2.filemedia attribute)": [[8, "mrv2.FileMedia.videoLayer"]], "volume (mrv2.filemedia attribute)": [[8, "mrv2.FileMedia.volume"]], "add_clip() (in module mrv2.playlist)": [[9, "mrv2.playlist.add_clip"]], "list() (in module mrv2.playlist)": [[9, "mrv2.playlist.list"]], "mrv2.playlist": [[9, "module-mrv2.playlist"]], "save() (in module mrv2.playlist)": [[9, "mrv2.playlist.save"]], "select() (in module mrv2.playlist)": [[9, "mrv2.playlist.select"]], "plugin (class in mrv2.plugin)": [[10, "mrv2.plugin.Plugin"]], "active() (mrv2.plugin.plugin method)": [[10, "mrv2.plugin.Plugin.active"]], "menus() (mrv2.plugin.plugin method)": [[10, "mrv2.plugin.Plugin.menus"]], "mrv2.plugin": [[10, "module-mrv2.plugin"]], "memory() (in module mrv2.settings)": [[13, "mrv2.settings.memory"]], "mrv2.settings": [[13, "module-mrv2.settings"]], "readahead() (in module mrv2.settings)": [[13, "mrv2.settings.readAhead"]], "readbehind() (in module mrv2.settings)": [[13, "mrv2.settings.readBehind"]], "setmemory() (in module mrv2.settings)": [[13, "mrv2.settings.setMemory"]], "setreadahead() (in module mrv2.settings)": [[13, "mrv2.settings.setReadAhead"]], "setreadbehind() (in module mrv2.settings)": [[13, "mrv2.settings.setReadBehind"]], "filesequenceaudio (class in mrv2.timeline)": [[14, "mrv2.timeline.FileSequenceAudio"]], "loop (class in mrv2.timeline)": [[14, "mrv2.timeline.Loop"]], "playback (class in mrv2.timeline)": [[14, "mrv2.timeline.Playback"]], "timermode (class in mrv2.timeline)": [[14, "mrv2.timeline.TimerMode"]], "frame() (in module mrv2.timeline)": [[14, "mrv2.timeline.frame"]], "inoutrange() (in module mrv2.timeline)": [[14, "mrv2.timeline.inOutRange"]], "loop() (in module mrv2.timeline)": [[14, "mrv2.timeline.loop"]], "mrv2.timeline": [[14, "module-mrv2.timeline"]], "name (mrv2.timeline.filesequenceaudio property)": [[14, "mrv2.timeline.FileSequenceAudio.name"]], "name (mrv2.timeline.loop property)": [[14, "mrv2.timeline.Loop.name"]], "name (mrv2.timeline.playback property)": [[14, "mrv2.timeline.Playback.name"]], "name (mrv2.timeline.timermode property)": [[14, "mrv2.timeline.TimerMode.name"]], "playbackwards() (in module mrv2.timeline)": [[14, "mrv2.timeline.playBackwards"]], "playforwards() (in module mrv2.timeline)": [[14, "mrv2.timeline.playForwards"]], "seconds() (in module mrv2.timeline)": [[14, "mrv2.timeline.seconds"]], "seek() (in module mrv2.timeline)": [[14, "mrv2.timeline.seek"]], "setin() (in module mrv2.timeline)": [[14, "mrv2.timeline.setIn"]], "setinoutrange() (in module mrv2.timeline)": [[14, "mrv2.timeline.setInOutRange"]], "setloop() (in module mrv2.timeline)": [[14, "mrv2.timeline.setLoop"]], "setout() (in module mrv2.timeline)": [[14, "mrv2.timeline.setOut"]], "stop() (in module mrv2.timeline)": [[14, "mrv2.timeline.stop"]], "time() (in module mrv2.timeline)": [[14, "mrv2.timeline.time"]], "timerange() (in module mrv2.timeline)": [[14, "mrv2.timeline.timeRange"]], "drawmode (class in mrv2.usd)": [[15, "mrv2.usd.DrawMode"]], "renderoptions (class in mrv2.usd)": [[15, "mrv2.usd.RenderOptions"]], "complexity (mrv2.usd.renderoptions attribute)": [[15, "mrv2.usd.RenderOptions.complexity"]], "diskcachebytecount (mrv2.usd.renderoptions attribute)": [[15, "mrv2.usd.RenderOptions.diskCacheByteCount"]], "drawmode (mrv2.usd.renderoptions attribute)": [[15, "mrv2.usd.RenderOptions.drawMode"]], "enablelighting (mrv2.usd.renderoptions attribute)": [[15, "mrv2.usd.RenderOptions.enableLighting"]], "mrv2.usd": [[15, "module-mrv2.usd"]], "renderoptions() (in module mrv2.usd)": [[15, "mrv2.usd.renderOptions"]], "renderwidth (mrv2.usd.renderoptions attribute)": [[15, "mrv2.usd.RenderOptions.renderWidth"]], "setrenderoptions() (in module mrv2.usd)": [[15, "mrv2.usd.setRenderOptions"]], "stagecachecount (mrv2.usd.renderoptions attribute)": [[15, "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/io", "python_api/math", "python_api/media", "python_api/mrv2", "python_api/playlist", "python_api/plug-ins", "python_api/plug-ins-system", "python_api/pyFLTK", "python_api/settings", "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/io.rst", "python_api/math.rst", "python_api/media.rst", "python_api/mrv2.rst", "python_api/playlist.rst", "python_api/plug-ins.rst", "python_api/plug-ins-system.rst", "python_api/pyFLTK.rst", "python_api/settings.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": ["Welcome to mrv2\u2019s documentation!", "annotations module", "cmd module", "image module", "Python API", "io Module", "math module", "media module", "mrv2 module", "playlist module", "plugin module", "Plug-in System", "pyFLTK", "settings module", "timeline module", "usd module", "Getting Started", "Hotkeys", "mrv2 User Guide", "The mrv2 Interface", "Notes and Annotations", "Introduction", "Panels", "V\u00eddeo Playback", "Preferences", "Settings", "Video Tutorials"], "terms": {"user": [0, 16, 19, 20, 21, 23], "guid": [0, 21], "introduct": [0, 18], "get": [0, 2, 8, 15, 18, 19, 20, 23], "start": [0, 8, 18, 20, 21, 22, 23], "The": [0, 8, 16, 17, 18, 20, 21, 22, 23, 25], "interfac": [0, 18, 21], "panel": [0, 16, 17, 18, 20, 21, 23, 25], "note": [0, 1, 2, 18, 21, 22, 24], "annot": [0, 2, 4, 5, 17, 18, 21, 23], "v\u00eddeo": [0, 18], "playback": [0, 2, 4, 8, 14, 16, 17, 18, 21], "set": [0, 2, 4, 7, 14, 15, 16, 17, 18, 19, 20, 21, 23, 24], "hotkei": [0, 18, 19, 20, 21, 22, 24, 25], "prefer": [0, 2, 16, 17, 18, 19, 20, 22], "video": [0, 3, 8, 18, 22, 23], "tutori": [0, 18], "python": [0, 10, 11, 12, 17, 18, 21], "api": [0, 21, 22], "modul": [0, 4, 12], "cmd": [0, 4], "imag": [0, 2, 4, 16, 17, 19, 20, 21, 22, 23], "io": [0, 2, 4, 12], "math": [0, 3, 4, 7], "media": [0, 2, 4, 8, 17, 18, 19, 20, 21, 23], "playlist": [0, 4, 17, 18, 21, 23], "plugin": [0, 4, 11], "plug": [0, 4, 10], "system": [0, 4, 14, 16, 17, 21, 24], "timelin": [0, 2, 4, 8, 17, 18, 20, 21, 22, 23], "usd": [0, 4, 17, 18, 21], "index": [0, 7, 9], "search": [0, 16, 17, 24], "page": 0, "contain": [1, 3, 6, 7, 8, 9, 10, 13, 14, 15, 19], "all": [1, 2, 3, 6, 7, 9, 10, 13, 14, 15, 16, 17, 19, 20, 21, 22, 24], "function": [1, 8, 9, 13, 14, 17], "class": [1, 3, 5, 6, 7, 8, 9, 10, 11, 14, 15], "relat": [1, 3, 7, 9, 10, 14, 15], "annotationss": 1, "mrv2": [1, 2, 3, 4, 5, 6, 7, 9, 10, 11, 12, 13, 14, 15, 17, 20, 22, 23, 24, 25, 26], "add": [1, 3, 4, 9, 11, 20, 21, 22], "arg": [1, 8, 9, 14], "kwarg": [1, 8, 9, 14], "overload": [1, 8, 9, 14], "time": [1, 4, 8, 14, 16, 19, 22, 24], "rationaltim": [1, 4, 8, 14], "str": [1, 2, 3, 8, 9], "none": [1, 2, 3, 5, 7, 9, 13, 14, 19, 24], "current": [1, 2, 7, 8, 9, 14, 16, 17, 18, 19, 20, 22], "clip": [1, 3, 8, 9, 16, 17, 19, 21, 22, 23], "certain": [1, 19], "frame": [1, 4, 8, 14, 16, 17, 18, 20, 21, 22], "int": [1, 2, 3, 5, 6, 7, 8, 9, 13, 14, 15], "second": [1, 2, 4, 8, 13, 14, 19, 20, 22, 23, 24, 25], "float": [1, 2, 3, 5, 6, 7, 8, 13, 14, 15, 17, 19, 24], "command": [2, 11, 17, 18], "us": [2, 8, 10, 11, 16, 19, 20, 21, 22, 23, 25, 26], "run": [2, 10, 16, 22], "main": [2, 11, 16, 17, 19, 24], "displai": [2, 3, 17, 20, 21, 22, 23], "compar": [2, 4, 7, 17, 18, 21], "lut": [2, 3, 22, 24], "option": [2, 3, 5, 7, 10, 15, 16, 19, 22], "close": [2, 4, 7, 16, 17, 21, 22], "item": [2, 7, 8, 9, 16, 20, 21, 22], "1": [2, 3, 8, 12, 19], "file": [2, 7, 8, 9, 11, 16, 17, 18, 19, 20, 21], "closeal": [2, 4, 7], "itema": 2, "itemb": 2, "mode": [2, 7, 14, 15, 16, 17, 18, 19, 20, 21], "comparemod": [2, 4, 7], "wipe": [2, 7, 17, 21, 22], "2": [2, 6, 8], "two": [2, 19, 22], "compareopt": [2, 4, 7], "return": [2, 7, 8, 10, 11, 14, 17], "displayopt": [2, 3, 4], "environmentmapopt": [2, 3, 4], "environ": [2, 3, 11, 17, 18, 19, 24], "map": [2, 3, 17, 18], "getlay": [2, 4], "list": [2, 4, 7, 9, 11, 17, 19, 22, 24, 26], "layer": [2, 4, 7, 8, 19, 22], "gui": 2, "imageopt": [2, 3, 4], "ismut": [2, 4], "bool": [2, 3, 5, 7, 8, 10, 15], "true": [2, 8, 10], "audio": [2, 8, 14, 19, 21, 22], "i": [2, 8, 10, 16, 17, 18, 19, 20, 22, 23, 24, 25], "mute": [2, 8, 19], "lutopt": [2, 3, 4], "oepnsess": [], "open": [2, 4, 16, 17, 21, 22, 24], "session": [2, 17, 21, 22], "filenam": [2, 3, 9, 14, 22], "audiofilenam": 2, "save": [2, 4, 5, 9, 16, 17, 19, 20, 21, 22], "saveopt": [2, 4, 5], "fals": [2, 10], "ffmpegprofil": [2, 5], "exrcompress": [2, 5], "zip": [2, 5], "zipcompressionlevel": [2, 5], "4": [2, 6], "dwacompressionlevel": [2, 5], "45": 2, "movi": [2, 16, 17, 19, 20, 21, 24], "sequenc": [2, 16, 17, 19, 24], "from": [2, 8, 10, 11, 12, 16, 19, 20, 21, 22, 23, 24], "front": 2, "savepdf": [2, 4], "pdf": [2, 17, 21, 22], "document": [2, 16, 17, 21, 24, 26], "savesess": [2, 4], "savesessiona": [2, 4], "setcompareopt": [2, 4], "setdisplayopt": [2, 4], "setenvironmentmapopt": [2, 4], "setimageopt": [2, 4], "setlutopt": [2, 4], "setmut": [2, 4], "setstereo3dopt": [2, 4], "stereo3dopt": [2, 3, 4], "stereo": [2, 3, 7, 17, 18], "3d": [2, 3, 17, 18], "setvolum": [2, 4], "volum": [2, 4, 8, 19], "updat": [2, 4], "call": [2, 24], "fl": 2, "check": 2, "number": [2, 8, 21, 22, 23, 24], "elaps": 2, "enum": [3, 7, 15], "control": [3, 14, 17, 20, 21, 22, 24, 25], "alphablend": [3, 4], "member": [3, 5, 7, 14, 15], "straight": [3, 19], "premultipli": [3, 19], "channel": [3, 4, 17, 21, 22], "color": [3, 4, 17, 18, 19, 21, 23], "red": [3, 16, 17, 19, 20, 24], "green": [3, 17, 19, 20], "blue": [3, 16, 17, 19], "alpha": [3, 17, 22], "environmentmaptyp": [3, 4], "spheric": [3, 22], "cubic": [3, 22], "imagefilt": [3, 4], "nearest": [3, 19], "linear": [3, 19], "inputvideolevel": [3, 4], "fromfil": 3, "fullrang": 3, "legalrang": 3, "lutord": [3, 4], "postcolorconfig": 3, "precolorconfig": 3, "videolevel": [3, 4], "yuvcoeffici": [3, 4], "rec709": 3, "bt2020": 3, "stereo3dinput": [3, 4], "stereo3doutput": [3, 4], "anaglyph": [3, 22], "scanlin": [3, 22], "column": 3, "checkerboard": [3, 22], "opengl": [3, 21], "mirror": [3, 4], "x": [3, 6, 7, 17], "flip": [3, 17], "y": [3, 6, 7, 17, 19, 24], "valu": [3, 7, 8, 10, 19, 22], "enabl": [3, 15, 21], "level": [3, 4, 5, 22], "vector3f": [3, 4, 6], "bright": 3, "chang": [3, 17, 19, 20, 21, 22, 24], "contrast": [3, 22], "satur": [3, 21, 22], "tint": [3, 21, 22], "between": [3, 19, 21, 22, 23, 24], "0": [3, 8, 16, 18, 19, 22, 25], "invert": [3, 22], "inlow": 3, "In": [3, 8, 11, 17, 19, 22, 23, 24, 25, 26], "low": 3, "inhigh": 3, "high": [3, 21, 23], "gamma": [3, 17, 19, 21, 22], "outlow": 3, "out": [3, 8, 14, 17, 19, 20, 21, 22, 23, 24], "outhigh": 3, "filter": [3, 17, 22, 24], "minifi": [3, 17], "magnifi": [3, 17], "softclip": [3, 4], "soft": [3, 20, 22], "both": [3, 20], "order": [3, 16, 22], "transform": [3, 24], "blend": 3, "algorithm": 3, "environmentmap": 3, "type": [3, 16, 20, 22, 23], "horizontalapertur": 3, "horizont": [3, 7, 17, 19, 21, 22, 23], "apertur": 3, "verticalapertur": 3, "vertic": [3, 7, 17, 19, 21, 22], "focallength": 3, "focal": 3, "length": 3, "rotatex": 3, "rotat": [3, 7, 22], "rotatei": 3, "subdivisionx": 3, "subdivis": 3, "subdivisioni": 3, "spin": 3, "stereo3d": 3, "input": [3, 17, 19, 22], "stereoinput": 3, "output": [3, 22], "stereooutput": 3, "eyesepar": 3, "separ": [3, 21], "left": [3, 16, 17, 19, 20, 22, 23], "right": [3, 16, 17, 18, 19, 20, 23, 24], "ey": 3, "swapey": 3, "swap": 3, "profil": [4, 5], "compress": [4, 5, 23], "vector2i": [4, 6], "vector2f": [4, 6, 7], "vector4f": [4, 6], "afil": [4, 7], "aindex": [4, 7], "bindex": [4, 7], "bfile": [4, 7], "activefil": [4, 7], "clearb": [4, 7], "firstvers": [4, 7], "lastvers": [4, 7], "nextvers": [4, 7], "previousvers": [4, 7], "seta": [4, 7], "setb": [4, 7], "setlay": [4, 7], "setstereo": [4, 7], "toggleb": [4, 7], "path": [2, 4, 8, 9, 11, 16, 18, 22], "timerang": [4, 8, 14], "filemedia": [4, 7, 8, 9], "add_clip": [4, 9], "select": [2, 4, 9, 14, 16, 17, 19, 20, 21, 22, 23, 24], "ins": 4, "memori": [4, 13, 22, 25], "readahead": [4, 13], "readbehind": [4, 13], "setmemori": [4, 13], "setreadahead": [4, 13], "setreadbehind": [4, 13], "filesequenceaudio": [4, 14], "loop": [4, 8, 14, 16, 17, 18, 19, 21], "timermod": [4, 14], "inoutrang": [4, 8, 14], "playbackward": [4, 14], "playforward": [4, 14], "seek": [4, 14, 21], "setin": [4, 14], "setinoutrang": [4, 14], "setloop": [4, 14], "setout": [4, 14], "stop": [4, 14, 17, 19, 21, 23], "renderopt": [4, 15], "setrenderopt": [4, 15], "drawmod": [4, 15], "h264": 5, "prore": 5, "prores_proxi": 5, "prores_lt": 5, "prores_hq": 5, "prores_4444": 5, "prores_xq": 5, "rle": 5, "piz": 5, "pxr24": 5, "b44": 5, "b44a": 5, "dwaa": 5, "dwab": 5, "ffmpeg": 5, "openexr": [5, 19], "": [5, 8, 16, 17, 19, 20, 21, 22, 23, 24], "dwa": [5, 23], "vector": [6, 20], "integ": [6, 8], "3": [6, 12], "z": [6, 17], "w": [6, 17], "A": [7, 10, 19, 20, 21, 22, 24], "b": [7, 17, 19, 21, 22], "activ": [7, 10, 21, 23], "clear": [7, 17], "first": [7, 8, 16, 17, 19, 23, 24], "version": [2, 7, 16, 17, 18, 26], "last": [7, 8, 17, 19, 23, 24], "next": [7, 17, 19, 20, 22, 23, 24], "previou": [7, 17, 19, 20, 22, 23, 24], "new": [7, 8, 10, 11, 12, 19, 20, 21, 22, 24], "toggl": [7, 17, 19, 23, 24], "overlai": [7, 17, 21, 22, 24], "differ": [7, 8, 16, 17, 19, 21, 22, 24], "tile": [7, 17, 21, 22], "comparison": [7, 21, 22], "over": [7, 19, 20], "wipecent": 7, "center": [7, 17, 19, 24], "wiperot": 7, "hold": [8, 19, 24], "self": [8, 10, 11], "idx": 8, "directoru": 8, "getbasenam": 8, "getdirectori": 8, "getextens": 8, "getnumb": 8, "getpad": 8, "isabsolut": 8, "isempti": 8, "repres": 8, "measur": 8, "rt": 8, "rate": [8, 16, 18, 19, 21], "It": [8, 19, 22, 24], "can": [8, 12, 16, 17, 19, 20, 21, 22, 23, 24, 25], "rescal": [8, 24], "anoth": [8, 24], "almost_equ": 8, "other": [8, 12, 16, 21, 22, 23, 24], "delta": 8, "static": 8, "duration_from_start_end_tim": 8, "start_tim": 8, "end_time_exclus": 8, "comput": [8, 21, 23], "durat": 8, "sampl": 8, "exclud": 8, "thi": [8, 11, 16, 17, 19, 20, 21, 22, 23, 24, 26], "same": [8, 16, 22], "distanc": 8, "For": [8, 12, 16, 19, 21, 22, 23], "exampl": [8, 10, 21, 22, 24], "10": [8, 16], "15": 8, "5": 8, "result": [8, 23], "duration_from_start_end_time_inclus": 8, "end_time_inclus": 8, "includ": [8, 21], "6": [8, 19], "from_fram": 8, "turn": 8, "object": 8, "from_second": 8, "from_time_str": 8, "time_str": 8, "convert": 8, "microsecond": 8, "string": 8, "hh": 8, "mm": 8, "ss": 8, "where": [8, 11, 22, 24], "an": [2, 8, 16, 19, 20, 21, 22, 24], "decim": [8, 24], "from_timecod": 8, "timecod": [8, 19, 24], "is_invalid_tim": 8, "invalid": 8, "consid": 8, "ar": [8, 19, 20, 21, 22, 23, 24], "nan": 8, "less": [8, 17], "than": [8, 11, 20, 23, 24], "equal": 8, "zero": 8, "is_valid_timecode_r": 8, "valid": 8, "nearest_valid_timecode_r": 8, "ha": [8, 19, 21, 22, 23, 24], "least": 8, "given": [8, 16, 20], "rescaled_to": 8, "new_rat": 8, "to_fram": 8, "base": [8, 20, 22, 25], "to_second": 8, "to_time_str": 8, "to_timecod": 8, "drop_fram": 8, "value_rescaled_to": 8, "rang": [8, 14, 19, 22], "encod": [8, 16], "mean": [8, 22, 23], "portion": [8, 22], "befor": [8, 22, 23], "epsilon_": 8, "6041666666666666e": 8, "06": 8, "end": [8, 17, 23], "strictli": 8, "preced": [8, 19], "convers": 8, "would": [8, 16, 24], "meet": 8, "begin": 8, "clamp": 8, "accord": 8, "bound": 8, "argument": 8, "anteced": 8, "duration_extended_bi": 8, "outsid": [8, 20], "If": [8, 10, 16, 19, 20, 22, 24], "becaus": 8, "data": [8, 17, 22, 23], "14": 8, "24": 8, "9": 8, "word": [8, 16], "even": [8, 11, 21, 22, 24], "fraction": 8, "extended_bi": 8, "construct": 8, "one": [8, 17, 19, 21, 22, 23, 24], "extend": [8, 20], "finish": 8, "intersect": 8, "OR": 8, "overlap": 8, "range_from_start_end_tim": 8, "creat": [8, 11, 12, 16, 20, 21, 22, 26], "exclus": 8, "end_tim": 8, "have": [8, 11, 16, 19, 20, 21, 22, 24], "range_from_start_end_time_inclus": 8, "inclus": 8, "audiopath": 8, "ani": [8, 12, 16, 19, 20, 21, 22, 24], "state": [8, 21], "currenttim": 8, "videolay": 8, "audiooffset": 8, "offset": 8, "edl": [9, 22], "otio": [2, 9, 16, 21, 24], "rel": 9, "fileitem": 9, "filemodelitem": 9, "playlistindex": 9, "must": [11, 22], "overriden": 10, "like": [10, 12, 16, 19, 23, 24], "import": [10, 11, 12, 21, 22, 24], "demoplugin": 10, "defin": [10, 11, 21], "your": [10, 16, 19, 20, 21, 22, 23, 24, 25], "own": [10, 20, 21], "variabl": [10, 11, 19, 24], "here": [10, 21, 24], "def": [10, 11], "__init__": [10, 11], "super": [10, 11], "pass": 11, "method": [10, 21], "callback": 10, "print": [10, 11, 19, 22, 24], "hello": [10, 11], "whether": [10, 19, 22, 24], "dictionari": 10, "menu": [10, 11, 17, 18, 20, 21], "entri": [10, 11, 21], "kei": [10, 17, 19, 20, 21, 22, 24], "plai": [14, 16, 17, 19, 21, 23, 24], "forward": [14, 17, 19, 23], "default": [10, 16, 17, 18, 19, 22, 25], "dict": 10, "nem": 10, "support": [11, 12, 16, 19, 21, 24], "allow": [11, 16, 17, 19, 20, 21, 22, 24, 25], "you": [11, 12, 16, 17, 19, 20, 21, 22, 23, 24, 25], "actual": [11, 20], "go": [11, 12, 16, 17, 23, 24], "farther": 11, "what": [11, 18, 19, 24], "consol": 11, "To": [11, 16, 19, 20], "mrv2_python_plugin": 11, "colon": 11, "linux": [11, 16, 24], "maco": [11, 16], "semi": 11, "window": [11, 12, 16, 17, 18, 22], "resid": 11, "py": 11, "basic": 11, "structur": 11, "helloplugin": 11, "retriev": 13, "cach": [13, 15, 18, 22, 25], "gigabyt": [13, 22, 25], "read": [13, 22, 23, 25], "ahead": [13, 22, 25], "behind": [13, 22, 25], "arg0": [13, 14], "basenam": 14, "directori": [14, 16, 17, 24], "properti": 14, "name": [14, 22], "onc": [12, 14, 16, 17, 19, 20, 23], "pingpong": 14, "revers": [14, 21], "backward": [14, 17, 19, 23], "univers": [15, 19, 21, 24], "scene": [15, 21, 24], "descript": [15, 21, 24], "render": [15, 18, 20], "point": [15, 17, 19, 22, 23], "wirefram": 15, "wireframeonsurfac": 15, "shadedflat": 15, "shadedsmooth": 15, "geomonli": 15, "geomflat": 15, "geomsmooth": 15, "renderwidth": 15, "width": 15, "complex": [15, 24], "model": 15, "draw": [15, 17, 18, 19, 21, 22, 23, 24], "enablelight": 15, "light": [15, 20, 24], "stagecachecount": 15, "stage": 15, "count": 15, "diskcachebytecount": 15, "disk": [15, 21, 23], "byte": 15, "pleas": 16, "refer": [16, 26], "github": 16, "http": [12, 16, 26], "com": [16, 26], "ggarra13": 16, "On": [16, 17, 20, 21], "dmg": 16, "icon": [16, 19], "applic": [16, 21], "alreadi": 16, "we": [16, 24], "recommend": [16, 24], "overwrit": 16, "notar": 16, "so": [16, 19, 20, 22, 24], "when": [16, 19, 20, 22, 23, 24], "abl": [16, 23], "warn": 16, "secur": 16, "wa": [16, 24], "download": [16, 24], "internet": 16, "avoid": 16, "need": [16, 19, 20, 21, 22, 23, 24], "finder": 16, "ctrl": [16, 17, 20], "mous": [16, 18, 24], "click": [16, 19, 20, 22], "That": [16, 24], "bring": [16, 22, 24], "up": [16, 17, 19, 21, 22, 23, 24], "button": [12, 16, 18, 19, 23, 24], "onli": [16, 17, 20, 22], "do": [16, 20, 21, 24], "chrome": 16, "also": [16, 19, 20, 22, 23], "protect": 16, "mai": [16, 22, 24, 26], "usual": [16, 19, 24], "archiv": 16, "make": [16, 19, 20, 22, 24], "sure": [16, 22], "arrow": [16, 17, 19, 20, 21, 23], "anywai": 16, "cannot": 16, "ex": 16, "directli": [16, 19, 20, 21], "explor": 16, "should": [16, 20, 22, 23], "Then": 16, "popup": [16, 19, 22, 24], "box": [16, 20, 21], "tell": 16, "smartscreen": 16, "prevent": 16, "unknown": 16, "aplic": 16, "place": [16, 20, 22], "pc": 16, "risk": 16, "more": [16, 17, 19, 21, 22], "inform": [12, 16, 18, 19], "text": [16, 17, 20, 21, 22, 24], "sai": [16, 19], "similar": [16, 22], "appear": [16, 19, 22], "follow": [16, 19, 22], "standard": 16, "instruct": 16, "rpm": 16, "deb": 16, "packag": 16, "requir": [16, 23], "sudo": 16, "permiss": 16, "debian": 16, "ubuntu": 16, "etc": [16, 21, 22, 23], "dpkg": 16, "v0": [16, 18], "7": 16, "amd64": 16, "tar": 16, "gz": 16, "hat": 16, "rocki": 16, "just": [16, 19, 20, 22], "shell": 16, "symlink": 16, "execut": [16, 21, 22], "usr": 16, "bin": 16, "associ": 16, "extens": 16, "easi": [16, 20, 21], "desktop": [16, 21, 22, 24], "choos": [16, 19, 24], "lack": 16, "organ": [16, 19], "uncompress": 16, "xf": 16, "folder": [16, 22, 24], "direcori": 16, "sh": 16, "script": [16, 21], "subdirectori": 16, "while": [16, 20, 22], "termin": [16, 24], "provid": [16, 19, 20, 21], "locat": [16, 22], "wai": [16, 20, 21], "recurs": 16, "thei": [16, 20, 21, 22, 24, 26], "ad": [16, 17, 18, 21, 22], "request": [16, 18], "By": [16, 19], "custom": [16, 19, 21, 24], "howev": 16, "nativ": [16, 21], "chooser": 16, "which": [16, 17, 19, 23, 24], "platform": 16, "might": 16, "o": [16, 17, 19, 21, 22, 23, 24], "won": 16, "t": [16, 17, 19, 22, 23, 24], "due": 16, "being": 16, "regist": [16, 22], "appl": 16, "either": [16, 22], "want": [16, 19, 20, 22, 23], "previous": 16, "conveni": 16, "power": [16, 17], "familiar": 16, "syntax": 16, "variou": 16, "mix": 16, "three": [16, 19, 20], "test": 16, "mov": [16, 21], "0001": 16, "exr": [16, 21, 22, 23], "edit": [16, 17, 19, 21], "back": [16, 21, 23], "natur": [16, 24], "respect": 16, "e": [16, 17, 19], "g": [16, 17, 19], "seri": 16, "jpeg": 16, "tga": [16, 21], "24fp": 16, "adjust": [16, 21, 23], "dpx": 16, "speed": [16, 17, 23], "taken": 16, "metadata": [16, 19], "avail": [16, 19, 21, 22, 24, 25], "made": [16, 19], "visibl": 16, "through": [12, 16, 21, 23, 24], "look": [12, 16], "f4": [16, 17, 22], "With": [16, 19, 20, 24], "see": [16, 21, 23], "behavior": [16, 18, 22, 24, 25], "auto": [16, 19], "come": [17, 19, 22], "assign": 17, "shift": [17, 19, 20, 23], "alt": [17, 19], "As": [17, 20], "quit": [17, 26], "program": 17, "escap": [17, 20], "h": [17, 19], "fit": [17, 19], "screen": [17, 20, 21, 23], "f": [17, 19], "resiz": 17, "textur": 17, "safe": [17, 21], "area": [17, 18, 20, 21], "d": 17, "c": [17, 24], "r": [17, 19], "step": [17, 19, 21, 23], "fp": [17, 18, 22], "j": 17, "direct": 17, "space": [17, 19], "down": [17, 19, 23, 24], "k": 17, "home": [17, 19, 23, 24], "ping": [17, 19, 23], "pong": [17, 19, 23], "pageup": 17, "pagedown": 17, "limit": [17, 23], "cut": 17, "copi": [17, 22, 24], "past": [17, 20], "v": [17, 26], "insert": 17, "slice": 17, "remov": 17, "undo": [17, 20], "redo": [17, 20], "bar": [17, 18, 20, 23], "f1": [17, 19], "top": [17, 18], "pixel": [17, 18, 19, 20, 21], "f2": [17, 19], "f3": [17, 19], "statu": [17, 19, 23, 24], "tool": [17, 19, 20, 21, 22], "dock": [17, 19, 22], "f7": [17, 19, 20], "full": [17, 19, 21, 22, 24], "f11": [17, 19], "present": [17, 19, 20, 22], "f12": [17, 19], "secondari": 17, "network": [17, 18], "n": [17, 24], "u": 17, "thumbnail": [17, 19], "transit": 17, "marker": 17, "reset": [17, 19, 22, 24], "gain": [17, 19, 21], "exposur": [17, 19, 21], "ocio": [17, 18, 19, 21, 22], "view": [17, 18, 21, 22, 23], "scrub": [17, 19, 21], "eras": [17, 20, 21], "rectangl": [17, 24], "circl": [17, 21], "pen": [17, 21], "size": [17, 19, 21, 23], "switch": [17, 19, 22, 23, 24], "black": [17, 19, 24], "background": [17, 23, 24], "hud": 17, "One": 17, "p": 17, "info": 17, "f5": 17, "f6": [17, 22], "f8": 17, "devic": 17, "f9": [17, 22, 25], "histogram": [17, 18], "vectorscop": [17, 18], "waveform": [17, 19], "f10": [17, 24], "log": [17, 18, 24], "about": [12, 17, 22], "8": [18, 19], "overview": 18, "build": [18, 21], "instal": 18, "launch": 18, "load": [18, 21, 22, 23], "drag": [18, 19, 20, 21, 22, 24], "drop": [18, 21], "browser": [18, 21, 22, 24], "recent": 18, "line": [18, 21], "hide": [18, 24], "show": [18, 22], "ui": [18, 21], "element": [18, 22], "divid": [18, 22], "context": 18, "sketch": [18, 21, 22], "modifi": [18, 19], "navig": [18, 21], "specif": 18, "languag": 18, "posit": [18, 21], "toolbar": [18, 19, 23], "error": [18, 19, 22], "hidden": [19, 20], "shown": [19, 20, 24], "third": 19, "viewport": [19, 20, 22], "fourth": 19, "under": [19, 24], "cursor": 19, "final": [19, 22], "let": 19, "know": [19, 24], "action": [19, 23, 24], "some": [12, 19, 21, 24], "shortcut": [19, 23, 24], "topbar": 19, "fullscreen": 19, "These": [19, 24, 26], "exit": 19, "alwai": [19, 20, 23], "configur": [19, 22, 24, 25], "closer": 19, "inspect": [19, 21], "middl": [19, 22], "pan": [19, 21], "within": [19, 21], "keyboard": [19, 20, 24], "perform": [19, 21], "centr": 19, "zoom": [19, 20, 21], "mousewheel": [19, 22, 24], "confort": 19, "factor": 19, "pulldown": 19, "without": [19, 20, 24], "particular": 19, "percentag": 19, "2x": 19, "pull": 19, "slider": 19, "driven": [19, 21], "opencolorio": 19, "gama": 19, "deriv": 19, "specifi": [19, 22], "cg": 19, "config": [19, 22], "ship": 19, "nuke": 19, "studio": 19, "ones": 19, "take": [19, 22], "scale": [19, 21], "quick": [19, 20], "track": [19, 21, 22], "pictur": 19, "immedi": 19, "how": [19, 20, 22, 23, 24, 25], "absolut": 19, "digit": [19, 24], "pretti": 19, "don": [19, 22, 24], "much": [19, 22, 25], "explan": 19, "There": [19, 20, 24], "paus": 19, "jump": [19, 20, 21], "per": [19, 23, 24], "desir": 19, "quickli": [19, 21, 22], "equival": 19, "press": 19, "bottom": [19, 22], "speaker": 19, "behaviour": [19, 23], "film": 19, "crop": 19, "aspect": [19, 21], "enter": [19, 20, 22, 23], "head": 19, "lot": 19, "independ": 19, "dark": 19, "grai": 19, "empti": [19, 20], "instead": [19, 22, 24, 25], "legal": 19, "handl": [19, 21], "logic": 19, "bigger": 19, "smaller": 19, "featur": [20, 21, 22], "tag": 20, "comment": 20, "record": [20, 22], "share": [20, 21, 24], "written": 20, "visual": [20, 21], "feedback": [20, 21], "colleagu": [20, 21], "bookmark": [20, 21], "mark": 20, "hit": 20, "twice": [20, 24], "stroke": [20, 21], "shape": [20, 21], "viewer": [20, 21, 22, 23, 24], "automat": [20, 22, 24], "hard": [20, 22], "depend": 20, "attach": [20, 22], "ghost": [20, 22], "mani": [20, 23, 24], "happen": [20, 22], "remain": [20, 24], "content": 20, "delet": 20, "partial": 20, "total": [20, 21], "presenc": 20, "indic": [20, 23], "yellow": 20, "veric": 20, "grip": 20, "caption": [20, 21], "onto": 20, "abov": [20, 22, 24], "rather": 20, "rasteris": 20, "fly": 20, "graphic": [20, 21, 23], "card": [20, 23], "brush": [20, 21, 22], "boundari": 20, "free": 20, "side": 20, "below": [20, 22], "rememb": [20, 23], "later": 20, "export": 20, "insid": [20, 24], "laser": [20, 22], "non": 20, "persist": 20, "fade": 20, "until": 20, "disappear": 20, "coupl": 20, "highlight": 20, "review": [20, 21], "continu": [20, 21], "still": [20, 21, 26], "around": [20, 22], "font": [20, 21, 22], "happi": 20, "cross": [20, 24], "discard": 20, "clean": 20, "sourc": 21, "profession": 21, "flipbook": 21, "effect": 21, "anim": 21, "industri": 21, "focus": 21, "intuit": 21, "highest": 21, "engin": 21, "its": [21, 22, 23, 24], "code": [21, 22], "pipelin": 21, "integr": 21, "customis": 21, "flexibl": 21, "collect": 21, "specialis": 21, "format": [21, 24], "colour": 21, "manag": 21, "organis": 21, "group": 21, "subset": 21, "highli": 21, "interact": 21, "collabor": 21, "workflow": [21, 23], "essenti": 21, "team": 21, "vfx": 21, "post": 21, "product": 21, "who": 21, "demand": [21, 23], "artwork": 21, "instantan": 21, "across": 21, "multipl": [21, 22], "robust": 21, "solut": 21, "been": [21, 23], "deploi": 21, "facil": 21, "individu": 21, "daili": 21, "sinc": 21, "august": 21, "2022": 21, "develop": [21, 26], "phase": 21, "swing": 21, "work": [21, 22, 24], "major": 21, "virtual": 21, "common": [21, 23], "todai": 21, "tif": 21, "jpg": 21, "psd": 21, "mp4": 21, "webm": 21, "player": 21, "embed": [21, 24], "sound": 21, "opentimelineio": [21, 22], "dissolv": 21, "pixar": [21, 24], "them": [21, 24], "built": [21, 24], "todo": 21, "lo": 21, "cuadro": 21, "respons": 21, "opac": 21, "easili": 21, "staff": 21, "accur": 21, "v2": 21, "correct": 21, "rgba": 21, "predefin": 21, "mask": [21, 24], "pop": [21, 22], "2nd": 21, "dual": 21, "sync": [21, 22], "synchron": 21, "lan": 21, "server": [21, 22, 24], "client": [21, 22, 24], "pref": [21, 24], "interpret": 21, "straightforward": 21, "And": 22, "perman": 22, "vanish": 22, "drawn": 22, "rectangular": 22, "minimum": 22, "maximum": [22, 23], "averag": 22, "after": 22, "field": 22, "seven": 22, "temporari": 22, "give": 22, "access": 22, "clone": 22, "again": 22, "refresh": 22, "re": 22, "sub": 22, "clipboard": 22, "gather": 22, "email": 22, "filemanag": 22, "messag": 22, "emit": 22, "dure": [22, 26], "oper": 22, "occur": 22, "ignor": [22, 23, 24], "hors": 22, "codec": [22, 23], "machin": [22, 24], "connect": [22, 24], "distinguis": 22, "ipv4": 22, "ipv6": 22, "address": 22, "host": 22, "alia": 22, "addit": [22, 26], "port": [22, 24], "fine": 22, "firewal": [22, 24], "incom": 22, "outgo": 22, "aka": 22, "append": 22, "sever": [22, 24, 26], "togeth": 22, "done": 22, "releas": 22, "resolutiono": 22, "match": [22, 23, 24], "assum": 22, "exist": 22, "each": [22, 23, 24], "section": [22, 24], "keypad": 22, "editor": 22, "mainli": [22, 25], "gb": [22, 25], "doe": [22, 23, 24, 25], "half": [22, 25], "ram": [22, 25], "qualiti": 22, "asset": [22, 24], "thing": 23, "random": 23, "widget": [12, 23], "spacebar": 23, "try": 23, "decod": 23, "store": [23, 24], "readi": 23, "effici": 23, "understand": 23, "obviou": 23, "grow": 23, "thu": 23, "slow": [23, 24], "off": 23, "resolut": 23, "wait": 23, "via": 23, "most": 23, "case": [23, 24], "although": 23, "optimis": 23, "veri": 23, "hardwar": 23, "transfer": 23, "faster": 23, "stream": 23, "dwb": 23, "larg": 23, "filmaura": 24, "usernam": 24, "resetset": 24, "old": 24, "calll": 24, "favorit": 24, "someth": 24, "wan": 24, "whole": 24, "behav": 24, "unus": 24, "reposit": 24, "withing": 24, "establish": 24, "fast": 24, "label": 24, "paramet": 24, "fltk": [12, 24], "stick": 24, "gtk": 24, "fill": 24, "well": 24, "otherwis": [10, 24], "those": 24, "recogn": 24, "dramat": 24, "privat": 24, "unless": 24, "soon": 24, "move": 24, "hex": 24, "origin": 24, "process": 24, "hsv": 24, "hsl": 24, "cie": 24, "xyz": 24, "xyi": 24, "lab": 24, "cielab": 24, "luv": 24, "cieluv": 24, "yuv": 24, "analog": 24, "pal": 24, "ydbdr": 24, "secam": 24, "yiq": 24, "ntsc": 24, "itu": 24, "601": 24, "ycbcr": 24, "709": 24, "hdtv": 24, "lumma": 24, "bit": 24, "depth": 24, "repeat": 24, "scratch": 24, "regular": 24, "express": 24, "_v": 24, "far": 24, "drive": 24, "remot": 24, "gga": 24, "unix": 24, "simpl": 24, "local": 24, "sent": 24, "receiv": 24, "noth": 24, "were": 26, "latest": 26, "www": 26, "youtub": 26, "watch": 26, "8jviz": 26, "ppcrg": 26, "plxj9nnbdnfrmd8aq41ajymb7whn99g5c": 26, "demo": 12, "constructor": 10, "rtype": 10, "correspond": 10, "new_menu": [], "redirect": 24, "tcp": 24, "55120": 24, "necessari": 24, "pyfltk": [0, 4], "prefspath": [2, 4], "rootpath": [2, 4], "root": 2, "insal": 2, "fltk14": 12, "sort": 12, "albeit": 12, "older": 12, "gitlab": 12, "sourceforg": 12, "doc": 12, "ch0_prefac": 12, "html": 12, "currentsess": [2, 4], "opensess": [2, 4], "setcurrentsess": [2, 4], "saveotio": [2, 4], "getvers": [2, 4]}, "objects": {"": [[8, 0, 0, "-", "mrv2"]], "mrv2": [[8, 1, 1, "", "FileMedia"], [8, 1, 1, "", "Path"], [8, 1, 1, "", "RationalTime"], [8, 1, 1, "", "TimeRange"], [1, 0, 0, "-", "annotations"], [2, 0, 0, "-", "cmd"], [3, 0, 0, "-", "image"], [5, 0, 0, "-", "io"], [6, 0, 0, "-", "math"], [7, 0, 0, "-", "media"], [9, 0, 0, "-", "playlist"], [10, 0, 0, "-", "plugin"], [13, 0, 0, "-", "settings"], [14, 0, 0, "-", "timeline"], [15, 0, 0, "-", "usd"]], "mrv2.FileMedia": [[8, 2, 1, "", "audioOffset"], [8, 2, 1, "", "audioPath"], [8, 2, 1, "", "currentTime"], [8, 2, 1, "", "inOutRange"], [8, 2, 1, "", "loop"], [8, 2, 1, "", "mute"], [8, 2, 1, "", "path"], [8, 2, 1, "", "playback"], [8, 2, 1, "", "timeRange"], [8, 2, 1, "", "videoLayer"], [8, 2, 1, "", "volume"]], "mrv2.Path": [[8, 3, 1, "", "get"], [8, 3, 1, "", "getBaseName"], [8, 3, 1, "", "getDirectory"], [8, 3, 1, "", "getExtension"], [8, 3, 1, "", "getNumber"], [8, 3, 1, "", "getPadding"], [8, 3, 1, "", "isAbsolute"], [8, 3, 1, "", "isEmpty"]], "mrv2.RationalTime": [[8, 3, 1, "", "almost_equal"], [8, 3, 1, "", "duration_from_start_end_time"], [8, 3, 1, "", "duration_from_start_end_time_inclusive"], [8, 3, 1, "", "from_frames"], [8, 3, 1, "", "from_seconds"], [8, 3, 1, "", "from_time_string"], [8, 3, 1, "", "from_timecode"], [8, 3, 1, "", "is_invalid_time"], [8, 3, 1, "", "is_valid_timecode_rate"], [8, 3, 1, "", "nearest_valid_timecode_rate"], [8, 3, 1, "", "rescaled_to"], [8, 3, 1, "", "to_frames"], [8, 3, 1, "", "to_seconds"], [8, 3, 1, "", "to_time_string"], [8, 3, 1, "", "to_timecode"], [8, 3, 1, "", "value_rescaled_to"]], "mrv2.TimeRange": [[8, 3, 1, "", "before"], [8, 3, 1, "", "begins"], [8, 3, 1, "", "clamped"], [8, 3, 1, "", "contains"], [8, 3, 1, "", "duration_extended_by"], [8, 3, 1, "", "end_time_exclusive"], [8, 3, 1, "", "end_time_inclusive"], [8, 3, 1, "", "extended_by"], [8, 3, 1, "", "finishes"], [8, 3, 1, "", "intersects"], [8, 3, 1, "", "meets"], [8, 3, 1, "", "overlaps"], [8, 3, 1, "", "range_from_start_end_time"], [8, 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, "", "currentSession"], [2, 4, 1, "", "displayOptions"], [2, 4, 1, "", "environmentMapOptions"], [2, 4, 1, "", "getLayers"], [2, 4, 1, "", "getVersion"], [2, 4, 1, "", "imageOptions"], [2, 4, 1, "", "isMuted"], [2, 4, 1, "", "lutOptions"], [2, 4, 1, "", "open"], [2, 4, 1, "", "openSession"], [2, 4, 1, "", "prefsPath"], [2, 4, 1, "", "rootPath"], [2, 4, 1, "", "save"], [2, 4, 1, "", "saveOTIO"], [2, 4, 1, "", "savePDF"], [2, 4, 1, "", "saveSession"], [2, 4, 1, "", "saveSessionAs"], [2, 4, 1, "", "setCompareOptions"], [2, 4, 1, "", "setCurrentSession"], [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.io": [[5, 1, 1, "", "Compression"], [5, 1, 1, "", "Profile"], [5, 1, 1, "", "SaveOptions"]], "mrv2.io.SaveOptions": [[5, 2, 1, "", "annotations"], [5, 2, 1, "", "dwaCompressionLevel"], [5, 2, 1, "", "exrCompression"], [5, 2, 1, "", "ffmpegProfile"], [5, 2, 1, "", "zipCompressionLevel"]], "mrv2.math": [[6, 1, 1, "", "Vector2f"], [6, 1, 1, "", "Vector2i"], [6, 1, 1, "", "Vector3f"], [6, 1, 1, "", "Vector4f"]], "mrv2.math.Vector2f": [[6, 2, 1, "", "x"], [6, 2, 1, "", "y"]], "mrv2.math.Vector2i": [[6, 2, 1, "", "x"], [6, 2, 1, "", "y"]], "mrv2.math.Vector3f": [[6, 2, 1, "", "x"], [6, 2, 1, "", "y"], [6, 2, 1, "", "z"]], "mrv2.math.Vector4f": [[6, 2, 1, "", "w"], [6, 2, 1, "", "x"], [6, 2, 1, "", "y"], [6, 2, 1, "", "z"]], "mrv2.media": [[7, 4, 1, "", "Afile"], [7, 4, 1, "", "Aindex"], [7, 4, 1, "", "BIndexes"], [7, 4, 1, "", "Bfiles"], [7, 1, 1, "", "CompareMode"], [7, 1, 1, "", "CompareOptions"], [7, 4, 1, "", "activeFiles"], [7, 4, 1, "", "clearB"], [7, 4, 1, "", "close"], [7, 4, 1, "", "closeAll"], [7, 4, 1, "", "firstVersion"], [7, 4, 1, "", "lastVersion"], [7, 4, 1, "", "layers"], [7, 4, 1, "", "list"], [7, 4, 1, "", "nextVersion"], [7, 4, 1, "", "previousVersion"], [7, 4, 1, "", "setA"], [7, 4, 1, "", "setB"], [7, 4, 1, "", "setLayer"], [7, 4, 1, "", "setStereo"], [7, 4, 1, "", "toggleB"]], "mrv2.media.CompareOptions": [[7, 2, 1, "", "mode"], [7, 2, 1, "", "overlay"], [7, 2, 1, "", "wipeCenter"], [7, 2, 1, "", "wipeRotation"]], "mrv2.playlist": [[9, 4, 1, "", "add_clip"], [9, 4, 1, "", "list"], [9, 4, 1, "", "save"], [9, 4, 1, "", "select"]], "mrv2.plugin": [[10, 1, 1, "", "Plugin"]], "mrv2.plugin.Plugin": [[10, 3, 1, "", "active"], [10, 3, 1, "", "menus"]], "mrv2.settings": [[13, 4, 1, "", "memory"], [13, 4, 1, "", "readAhead"], [13, 4, 1, "", "readBehind"], [13, 4, 1, "", "setMemory"], [13, 4, 1, "", "setReadAhead"], [13, 4, 1, "", "setReadBehind"]], "mrv2.timeline": [[14, 1, 1, "", "FileSequenceAudio"], [14, 1, 1, "", "Loop"], [14, 1, 1, "", "Playback"], [14, 1, 1, "", "TimerMode"], [14, 4, 1, "", "frame"], [14, 4, 1, "", "inOutRange"], [14, 4, 1, "", "loop"], [14, 4, 1, "", "playBackwards"], [14, 4, 1, "", "playForwards"], [14, 4, 1, "", "seconds"], [14, 4, 1, "", "seek"], [14, 4, 1, "", "setIn"], [14, 4, 1, "", "setInOutRange"], [14, 4, 1, "", "setLoop"], [14, 4, 1, "", "setOut"], [14, 4, 1, "", "stop"], [14, 4, 1, "", "time"], [14, 4, 1, "", "timeRange"]], "mrv2.timeline.FileSequenceAudio": [[14, 5, 1, "", "name"]], "mrv2.timeline.Loop": [[14, 5, 1, "", "name"]], "mrv2.timeline.Playback": [[14, 5, 1, "", "name"]], "mrv2.timeline.TimerMode": [[14, 5, 1, "", "name"]], "mrv2.usd": [[15, 1, 1, "", "DrawMode"], [15, 1, 1, "", "RenderOptions"], [15, 4, 1, "", "renderOptions"], [15, 4, 1, "", "setRenderOptions"]], "mrv2.usd.RenderOptions": [[15, 2, 1, "", "complexity"], [15, 2, 1, "", "diskCacheByteCount"], [15, 2, 1, "", "drawMode"], [15, 2, 1, "", "enableLighting"], [15, 2, 1, "", "renderWidth"], [15, 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 module"], "1": ["py", "class", "Python class"], "2": ["py", "attribute", "Python attribute"], "3": ["py", "method", "Python method"], "4": ["py", "function", "Python function"], "5": ["py", "property", "Python property"]}, "titleterms": {"welcom": 0, "mrv2": [0, 8, 16, 18, 19, 21], "": 0, "document": 0, "tabl": 0, "content": 0, "indic": [0, 19], "annot": [1, 20, 22], "modul": [1, 2, 3, 5, 6, 7, 8, 9, 10, 13, 14, 15], "cmd": 2, "imag": [3, 24], "python": [4, 22], "api": 4, "io": 5, "math": 6, "media": [7, 16, 22], "playlist": [9, 22], "plugin": 10, "plug": 11, "system": 11, "ins": 11, "set": [13, 22, 25], "timelin": [14, 19, 24], "usd": [15, 22, 24], "get": 16, "start": [16, 19, 24], "build": 16, "instal": 16, "launch": 16, "load": [16, 24], "drag": 16, "drop": 16, "browser": 16, "recent": 16, "menu": [16, 19, 22, 24], "command": 16, "line": 16, "view": [16, 19, 24], "hotkei": [17, 23], "user": [18, 24], "guid": 18, "The": [19, 24], "interfac": [19, 24], "hide": 19, "show": [19, 24], "ui": [19, 24], "element": [19, 24], "customis": 19, "mous": [19, 22], "interact": 19, "viewer": 19, "top": [19, 24], "bar": [19, 24], "frame": [19, 23, 24], "transport": 19, "control": 19, "fp": [19, 23, 24], "end": 19, "player": 19, "safe": [19, 24], "area": [19, 22, 24], "data": 19, "window": [19, 24], "displai": [19, 24], "mask": 19, "hud": [19, 24], "render": 19, "channel": 19, "mirror": 19, "background": 19, "video": [19, 26], "level": 19, "alpha": 19, "blend": 19, "minifi": 19, "magnifi": 19, "filter": 19, "panel": [19, 22, 24], "divid": 19, "note": 20, "ad": 20, "sketch": 20, "modifi": 20, "navig": 20, "draw": 20, "introduct": 21, "what": 21, "i": 21, "current": [21, 23, 24], "version": [21, 24], "v0": 21, "8": 21, "0": 21, "overview": 21, "color": [22, 24], "compar": 22, "environ": 22, "map": [22, 24], "file": [22, 24], "context": 22, "right": 22, "button": 22, "histogram": 22, "log": 22, "inform": 22, "network": [22, 24], "stereo": 22, "3d": 22, "vectorscop": 22, "v\u00eddeo": 23, "playback": [23, 24], "loop": [23, 24], "mode": [23, 24], "rate": 23, "specif": 23, "cach": 23, "behavior": 23, "prefer": 24, "alwai": 24, "secondari": 24, "On": 24, "singl": 24, "instanc": 24, "auto": 24, "refit": 24, "normal": 24, "fullscreen": 24, "present": 24, "maco": 24, "tool": 24, "dock": 24, "onli": 24, "One": 24, "gain": 24, "gamma": 24, "crop": 24, "zoom": 24, "speed": 24, "languag": 24, "scheme": 24, "theme": 24, "posit": 24, "save": 24, "exit": 24, "fix": 24, "size": 24, "take": 24, "valu": 24, "request": 24, "click": 24, "travel": 24, "drawer": 24, "thumbnail": 24, "activ": 24, "us": 24, "nativ": 24, "chooser": 24, "scrub": 24, "sensit": 24, "preview": 24, "edit": 24, "transit": 24, "marker": 24, "pixel": 24, "toolbar": 24, "rgba": 24, "lumin": 24, "ocio": 24, "config": 24, "default": 24, "input": 24, "space": 24, "miss": 24, "regex": 24, "maximum": 24, "apart": 24, "path": 24, "add": 24, "remov": 24, "error": 24, "tutori": 26, "viewport": 24, "pyfltk": 12}, "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": {"Welcome to mrv2\u2019s documentation!": [[0, "welcome-to-mrv2-s-documentation"]], "Table of Contents": [[0, "table-of-contents"]], "Indices and tables": [[0, "indices-and-tables"]], "annotations module": [[1, "module-mrv2.annotations"]], "cmd module": [[2, "module-mrv2.cmd"]], "image module": [[3, "module-mrv2.image"]], "Python API": [[4, "python-api"]], "io Module": [[5, "module-mrv2.io"]], "math module": [[6, "module-mrv2.math"]], "media module": [[7, "module-mrv2.media"]], "mrv2 module": [[8, "module-mrv2"]], "playlist module": [[9, "module-mrv2.playlist"]], "plugin module": [[10, "module-mrv2.plugin"]], "Plug-in System": [[11, "plug-in-system"]], "Plug-ins": [[11, "plug-ins"]], "pyFLTK": [[12, "pyfltk"]], "settings module": [[13, "module-mrv2.settings"]], "timeline module": [[14, "module-mrv2.timeline"]], "usd module": [[15, "module-mrv2.usd"]], "Getting Started": [[16, "getting-started"]], "Building mrv2": [[16, "building-mrv2"]], "Installing mrv2": [[16, "installing-mrv2"]], "Launching mrv2": [[16, "launching-mrv2"]], "Loading Media (Drag and Drop)": [[16, "loading-media-drag-and-drop"]], "Loading Media (mrv2 Browser)": [[16, "loading-media-mrv2-browser"]], "Loading Media (Recent menu)": [[16, "loading-media-recent-menu"]], "Loading Media (command line)": [[16, "loading-media-command-line"]], "Viewing Media": [[16, "viewing-media"]], "Hotkeys": [[17, "hotkeys"]], "mrv2 User Guide": [[18, "mrv2-user-guide"]], "The mrv2 Interface": [[19, "the-mrv2-interface"]], "Hiding/Showing UI elements": [[19, "hiding-showing-ui-elements"]], "Customising the Interface": [[19, "customising-the-interface"]], "Mouse interaction in the Viewer": [[19, "mouse-interaction-in-the-viewer"]], "The Top Bar": [[19, "the-top-bar"]], "The Timeline": [[19, "the-timeline"]], "Frame Indicator": [[19, "frame-indicator"]], "Transport Controls": [[19, "transport-controls"]], "FPS": [[19, "fps"], [24, null]], "Start and End Frame Indicator": [[19, "start-and-end-frame-indicator"]], "Player/Viewer Controls": [[19, "player-viewer-controls"]], "View Menu": [[19, "view-menu"]], "Safe Areas": [[19, null], [24, null]], "Data Window": [[19, null]], "Display Window": [[19, null]], "Mask": [[19, null]], "HUD": [[19, null], [24, null]], "Render Menu": [[19, "render-menu"]], "Channels": [[19, null]], "Mirror": [[19, null]], "Background": [[19, null]], "Video Levels": [[19, null]], "Alpha Blend": [[19, null]], "Minify and Magnify Filters": [[19, null]], "The Panels": [[19, "the-panels"]], "Divider": [[19, "divider"]], "Notes and Annotations": [[20, "notes-and-annotations"]], "Adding a Note or Sketch": [[20, "adding-a-note-or-sketch"]], "Modifying a Note": [[20, "modifying-a-note"]], "Navigating Notes": [[20, "navigating-notes"]], "Drawing Annotations": [[20, "drawing-annotations"]], "Introduction": [[21, "introduction"]], "What is mrv2 ?": [[21, "what-is-mrv2"]], "Current Version: v0.8.0 - Overview": [[21, "current-version-v0-8-0-overview"]], "Panels": [[22, "panels"]], "Annotations Panel": [[22, "annotations-panel"]], "Color Area Panel": [[22, "color-area-panel"]], "Color Panel": [[22, "color-panel"]], "Compare Panel": [[22, "compare-panel"]], "Environment Map Panel": [[22, "environment-map-panel"]], "Files Panel": [[22, "files-panel"]], "Files Panel Context Menu (right mouse button)": [[22, "files-panel-context-menu-right-mouse-button"]], "Histogram Panel": [[22, "histogram-panel"]], "Logs Panel": [[22, "logs-panel"]], "Media Information Panel": [[22, "media-information-panel"]], "Network Panel": [[22, "network-panel"]], "Playlist Panel": [[22, "playlist-panel"]], "Python Panel": [[22, "python-panel"]], "Settings Panel": [[22, "settings-panel"]], "Stereo 3D Panel": [[22, "stereo-3d-panel"]], "USD Panel": [[22, "usd-panel"]], "Vectorscope Panel": [[22, "vectorscope-panel"]], "V\u00eddeo Playback": [[23, "video-playback"]], "Current Frame": [[23, "current-frame"]], "Loop Modes": [[23, "loop-modes"]], "FPS Rate": [[23, "fps-rate"]], "Playback Specific Hotkeys": [[23, "playback-specific-hotkeys"]], "Cache Behavior": [[23, "cache-behavior"]], "Preferences": [[24, "preferences"]], "User Interface": [[24, "user-interface"]], "Always on Top and Secondary On Top": [[24, null]], "Single Instance": [[24, null]], "Auto Refit Image": [[24, null]], "Normal, Fullscreen and Presentation": [[24, null]], "UI Elements": [[24, "ui-elements"]], "The UI bars": [[24, null]], "macOS Menus": [[24, null]], "Tool Dock": [[24, null]], "Only One Panel": [[24, null]], "View Window": [[24, "view-window"]], "Gain and Gamma": [[24, null]], "Crop": [[24, null]], "Zoom Speed": [[24, null]], "Language and Colors": [[24, "language-and-colors"]], "Language": [[24, null]], "Scheme": [[24, null]], "Color Theme": [[24, null]], "View Colors": [[24, null]], "Positioning": [[24, "positioning"]], "Always Save on Exit": [[24, null]], "Fixed Position": [[24, null]], "Fixed Size": [[24, null]], "Take Current Window Values": [[24, null]], "File Requester": [[24, "file-requester"]], "Single Click to Travel Drawers": [[24, null]], "Thumbnails Active": [[24, null]], "USD Thumbnails": [[24, null]], "Use Native File Chooser": [[24, null]], "Playback": [[24, "playback"]], "Auto Playback": [[24, null]], "Looping Mode": [[24, null]], "Scrub Sensitivity": [[24, null]], "Timeline": [[24, "timeline"]], "Display": [[24, null]], "Preview Thumbnails": [[24, null]], "Edit Viewport": [[24, "edit-viewport"]], "Start in Edit mode": [[24, null]], "Thumbnails": [[24, null]], "Show Transitions": [[24, null]], "Show Markers": [[24, null]], "Pixel Toolbar": [[24, "pixel-toolbar"]], "RGBA Display": [[24, null]], "Pixel Values": [[24, null]], "Secondary Display": [[24, null]], "Luminance": [[24, null]], "OCIO": [[24, "ocio"]], "OCIO Config File": [[24, null]], "OCIO Defaults": [[24, "ocio-defaults"]], "Use Active Views and Active Displays": [[24, null]], "Input Color Space": [[24, null]], "Loading": [[24, "loading"]], "Missing Frame": [[24, null]], "Version Regex": [[24, null]], "Maximum Images Apart": [[24, null]], "Path Mapping": [[24, "path-mapping"]], "Add Path": [[24, null]], "Remove Path": [[24, null]], "Network": [[24, "network"]], "Errors": [[24, "errors"]], "Settings": [[25, "settings"]], "Video Tutorials": [[26, "video-tutorials"]]}, "indexentries": {"add() (in module mrv2.annotations)": [[1, "mrv2.annotations.add"]], "module": [[1, "module-mrv2.annotations"], [2, "module-mrv2.cmd"], [3, "module-mrv2.image"], [5, "module-mrv2.io"], [6, "module-mrv2.math"], [7, "module-mrv2.media"], [8, "module-mrv2"], [9, "module-mrv2.playlist"], [10, "module-mrv2.plugin"], [13, "module-mrv2.settings"], [14, "module-mrv2.timeline"], [15, "module-mrv2.usd"]], "mrv2.annotations": [[1, "module-mrv2.annotations"]], "close() (in module mrv2.cmd)": [[2, "mrv2.cmd.close"]], "closeall() (in module mrv2.cmd)": [[2, "mrv2.cmd.closeAll"]], "compare() (in module mrv2.cmd)": [[2, "mrv2.cmd.compare"]], "compareoptions() (in module mrv2.cmd)": [[2, "mrv2.cmd.compareOptions"]], "currentsession() (in module mrv2.cmd)": [[2, "mrv2.cmd.currentSession"]], "displayoptions() (in module mrv2.cmd)": [[2, "mrv2.cmd.displayOptions"]], "environmentmapoptions() (in module mrv2.cmd)": [[2, "mrv2.cmd.environmentMapOptions"]], "getlayers() (in module mrv2.cmd)": [[2, "mrv2.cmd.getLayers"]], "getversion() (in module mrv2.cmd)": [[2, "mrv2.cmd.getVersion"]], "imageoptions() (in module mrv2.cmd)": [[2, "mrv2.cmd.imageOptions"]], "ismuted() (in module mrv2.cmd)": [[2, "mrv2.cmd.isMuted"]], "lutoptions() (in module mrv2.cmd)": [[2, "mrv2.cmd.lutOptions"]], "mrv2.cmd": [[2, "module-mrv2.cmd"]], "open() (in module mrv2.cmd)": [[2, "mrv2.cmd.open"]], "opensession() (in module mrv2.cmd)": [[2, "mrv2.cmd.openSession"]], "prefspath() (in module mrv2.cmd)": [[2, "mrv2.cmd.prefsPath"]], "rootpath() (in module mrv2.cmd)": [[2, "mrv2.cmd.rootPath"]], "save() (in module mrv2.cmd)": [[2, "mrv2.cmd.save"]], "saveotio() (in module mrv2.cmd)": [[2, "mrv2.cmd.saveOTIO"]], "savepdf() (in module mrv2.cmd)": [[2, "mrv2.cmd.savePDF"]], "savesession() (in module mrv2.cmd)": [[2, "mrv2.cmd.saveSession"]], "savesessionas() (in module mrv2.cmd)": [[2, "mrv2.cmd.saveSessionAs"]], "setcompareoptions() (in module mrv2.cmd)": [[2, "mrv2.cmd.setCompareOptions"]], "setcurrentsession() (in module mrv2.cmd)": [[2, "mrv2.cmd.setCurrentSession"]], "setdisplayoptions() (in module mrv2.cmd)": [[2, "mrv2.cmd.setDisplayOptions"]], "setenvironmentmapoptions() (in module mrv2.cmd)": [[2, "mrv2.cmd.setEnvironmentMapOptions"]], "setimageoptions() (in module mrv2.cmd)": [[2, "mrv2.cmd.setImageOptions"]], "setlutoptions() (in module mrv2.cmd)": [[2, "mrv2.cmd.setLUTOptions"]], "setmute() (in module mrv2.cmd)": [[2, "mrv2.cmd.setMute"]], "setstereo3doptions() (in module mrv2.cmd)": [[2, "mrv2.cmd.setStereo3DOptions"]], "setvolume() (in module mrv2.cmd)": [[2, "mrv2.cmd.setVolume"]], "stereo3doptions() (in module mrv2.cmd)": [[2, "mrv2.cmd.stereo3DOptions"]], "update() (in module mrv2.cmd)": [[2, "mrv2.cmd.update"]], "volume() (in module mrv2.cmd)": [[2, "mrv2.cmd.volume"]], "alphablend (class in mrv2.image)": [[3, "mrv2.image.AlphaBlend"]], "channels (class in mrv2.image)": [[3, "mrv2.image.Channels"]], "color (class in mrv2.image)": [[3, "mrv2.image.Color"]], "displayoptions (class in mrv2.image)": [[3, "mrv2.image.DisplayOptions"]], "environmentmapoptions (class in mrv2.image)": [[3, "mrv2.image.EnvironmentMapOptions"]], "environmentmaptype (class in mrv2.image)": [[3, "mrv2.image.EnvironmentMapType"]], "imagefilter (class in mrv2.image)": [[3, "mrv2.image.ImageFilter"]], "imagefilters (class in mrv2.image)": [[3, "mrv2.image.ImageFilters"]], "imageoptions (class in mrv2.image)": [[3, "mrv2.image.ImageOptions"]], "inputvideolevels (class in mrv2.image)": [[3, "mrv2.image.InputVideoLevels"]], "lutoptions (class in mrv2.image)": [[3, "mrv2.image.LUTOptions"]], "lutorder (class in mrv2.image)": [[3, "mrv2.image.LUTOrder"]], "levels (class in mrv2.image)": [[3, "mrv2.image.Levels"]], "mirror (class in mrv2.image)": [[3, "mrv2.image.Mirror"]], "softclip (class in mrv2.image)": [[3, "mrv2.image.SoftClip"]], "stereo3dinput (class in mrv2.image)": [[3, "mrv2.image.Stereo3DInput"]], "stereo3doptions (class in mrv2.image)": [[3, "mrv2.image.Stereo3DOptions"]], "stereo3doutput (class in mrv2.image)": [[3, "mrv2.image.Stereo3DOutput"]], "videolevels (class in mrv2.image)": [[3, "mrv2.image.VideoLevels"]], "yuvcoefficients (class in mrv2.image)": [[3, "mrv2.image.YUVCoefficients"]], "add (mrv2.image.color attribute)": [[3, "mrv2.image.Color.add"]], "alphablend (mrv2.image.imageoptions attribute)": [[3, "mrv2.image.ImageOptions.alphaBlend"]], "brightness (mrv2.image.color attribute)": [[3, "mrv2.image.Color.brightness"]], "channels (mrv2.image.displayoptions attribute)": [[3, "mrv2.image.DisplayOptions.channels"]], "color (mrv2.image.displayoptions attribute)": [[3, "mrv2.image.DisplayOptions.color"]], "contrast (mrv2.image.color attribute)": [[3, "mrv2.image.Color.contrast"]], "enabled (mrv2.image.color attribute)": [[3, "mrv2.image.Color.enabled"]], "enabled (mrv2.image.levels attribute)": [[3, "mrv2.image.Levels.enabled"]], "enabled (mrv2.image.softclip attribute)": [[3, "mrv2.image.SoftClip.enabled"]], "eyeseparation (mrv2.image.stereo3doptions attribute)": [[3, "mrv2.image.Stereo3DOptions.eyeSeparation"]], "filename (mrv2.image.lutoptions attribute)": [[3, "mrv2.image.LUTOptions.fileName"]], "focallength (mrv2.image.environmentmapoptions attribute)": [[3, "mrv2.image.EnvironmentMapOptions.focalLength"]], "gamma (mrv2.image.levels attribute)": [[3, "mrv2.image.Levels.gamma"]], "horizontalaperture (mrv2.image.environmentmapoptions attribute)": [[3, "mrv2.image.EnvironmentMapOptions.horizontalAperture"]], "imagefilters (mrv2.image.imageoptions attribute)": [[3, "mrv2.image.ImageOptions.imageFilters"]], "inhigh (mrv2.image.levels attribute)": [[3, "mrv2.image.Levels.inHigh"]], "inlow (mrv2.image.levels attribute)": [[3, "mrv2.image.Levels.inLow"]], "input (mrv2.image.stereo3doptions attribute)": [[3, "mrv2.image.Stereo3DOptions.input"]], "invert (mrv2.image.color attribute)": [[3, "mrv2.image.Color.invert"]], "levels (mrv2.image.displayoptions attribute)": [[3, "mrv2.image.DisplayOptions.levels"]], "magnify (mrv2.image.imagefilters attribute)": [[3, "mrv2.image.ImageFilters.magnify"]], "minify (mrv2.image.imagefilters attribute)": [[3, "mrv2.image.ImageFilters.minify"]], "mirror (mrv2.image.displayoptions attribute)": [[3, "mrv2.image.DisplayOptions.mirror"]], "mrv2.image": [[3, "module-mrv2.image"]], "order (mrv2.image.lutoptions attribute)": [[3, "mrv2.image.LUTOptions.order"]], "outhigh (mrv2.image.levels attribute)": [[3, "mrv2.image.Levels.outHigh"]], "outlow (mrv2.image.levels attribute)": [[3, "mrv2.image.Levels.outLow"]], "output (mrv2.image.stereo3doptions attribute)": [[3, "mrv2.image.Stereo3DOptions.output"]], "rotatex (mrv2.image.environmentmapoptions attribute)": [[3, "mrv2.image.EnvironmentMapOptions.rotateX"]], "rotatey (mrv2.image.environmentmapoptions attribute)": [[3, "mrv2.image.EnvironmentMapOptions.rotateY"]], "saturation (mrv2.image.color attribute)": [[3, "mrv2.image.Color.saturation"]], "softclip (mrv2.image.displayoptions attribute)": [[3, "mrv2.image.DisplayOptions.softClip"]], "spin (mrv2.image.environmentmapoptions attribute)": [[3, "mrv2.image.EnvironmentMapOptions.spin"]], "subdivisionx (mrv2.image.environmentmapoptions attribute)": [[3, "mrv2.image.EnvironmentMapOptions.subdivisionX"]], "subdivisiony (mrv2.image.environmentmapoptions attribute)": [[3, "mrv2.image.EnvironmentMapOptions.subdivisionY"]], "swapeyes (mrv2.image.stereo3doptions attribute)": [[3, "mrv2.image.Stereo3DOptions.swapEyes"]], "tint (mrv2.image.color attribute)": [[3, "mrv2.image.Color.tint"]], "type (mrv2.image.environmentmapoptions attribute)": [[3, "mrv2.image.EnvironmentMapOptions.type"]], "value (mrv2.image.softclip attribute)": [[3, "mrv2.image.SoftClip.value"]], "verticalaperture (mrv2.image.environmentmapoptions attribute)": [[3, "mrv2.image.EnvironmentMapOptions.verticalAperture"]], "videolevels (mrv2.image.imageoptions attribute)": [[3, "mrv2.image.ImageOptions.videoLevels"]], "x (mrv2.image.mirror attribute)": [[3, "mrv2.image.Mirror.x"]], "y (mrv2.image.mirror attribute)": [[3, "mrv2.image.Mirror.y"]], "compression (class in mrv2.io)": [[5, "mrv2.io.Compression"]], "profile (class in mrv2.io)": [[5, "mrv2.io.Profile"]], "saveoptions (class in mrv2.io)": [[5, "mrv2.io.SaveOptions"]], "annotations (mrv2.io.saveoptions attribute)": [[5, "mrv2.io.SaveOptions.annotations"]], "dwacompressionlevel (mrv2.io.saveoptions attribute)": [[5, "mrv2.io.SaveOptions.dwaCompressionLevel"]], "exrcompression (mrv2.io.saveoptions attribute)": [[5, "mrv2.io.SaveOptions.exrCompression"]], "ffmpegprofile (mrv2.io.saveoptions attribute)": [[5, "mrv2.io.SaveOptions.ffmpegProfile"]], "mrv2.io": [[5, "module-mrv2.io"]], "zipcompressionlevel (mrv2.io.saveoptions attribute)": [[5, "mrv2.io.SaveOptions.zipCompressionLevel"]], "vector2f (class in mrv2.math)": [[6, "mrv2.math.Vector2f"]], "vector2i (class in mrv2.math)": [[6, "mrv2.math.Vector2i"]], "vector3f (class in mrv2.math)": [[6, "mrv2.math.Vector3f"]], "vector4f (class in mrv2.math)": [[6, "mrv2.math.Vector4f"]], "mrv2.math": [[6, "module-mrv2.math"]], "w (mrv2.math.vector4f attribute)": [[6, "mrv2.math.Vector4f.w"]], "x (mrv2.math.vector2f attribute)": [[6, "mrv2.math.Vector2f.x"]], "x (mrv2.math.vector2i attribute)": [[6, "mrv2.math.Vector2i.x"]], "x (mrv2.math.vector3f attribute)": [[6, "mrv2.math.Vector3f.x"]], "x (mrv2.math.vector4f attribute)": [[6, "mrv2.math.Vector4f.x"]], "y (mrv2.math.vector2f attribute)": [[6, "mrv2.math.Vector2f.y"]], "y (mrv2.math.vector2i attribute)": [[6, "mrv2.math.Vector2i.y"]], "y (mrv2.math.vector3f attribute)": [[6, "mrv2.math.Vector3f.y"]], "y (mrv2.math.vector4f attribute)": [[6, "mrv2.math.Vector4f.y"]], "z (mrv2.math.vector3f attribute)": [[6, "mrv2.math.Vector3f.z"]], "z (mrv2.math.vector4f attribute)": [[6, "mrv2.math.Vector4f.z"]], "afile() (in module mrv2.media)": [[7, "mrv2.media.Afile"]], "aindex() (in module mrv2.media)": [[7, "mrv2.media.Aindex"]], "bindexes() (in module mrv2.media)": [[7, "mrv2.media.BIndexes"]], "bfiles() (in module mrv2.media)": [[7, "mrv2.media.Bfiles"]], "comparemode (class in mrv2.media)": [[7, "mrv2.media.CompareMode"]], "compareoptions (class in mrv2.media)": [[7, "mrv2.media.CompareOptions"]], "activefiles() (in module mrv2.media)": [[7, "mrv2.media.activeFiles"]], "clearb() (in module mrv2.media)": [[7, "mrv2.media.clearB"]], "close() (in module mrv2.media)": [[7, "mrv2.media.close"]], "closeall() (in module mrv2.media)": [[7, "mrv2.media.closeAll"]], "firstversion() (in module mrv2.media)": [[7, "mrv2.media.firstVersion"]], "lastversion() (in module mrv2.media)": [[7, "mrv2.media.lastVersion"]], "layers() (in module mrv2.media)": [[7, "mrv2.media.layers"]], "list() (in module mrv2.media)": [[7, "mrv2.media.list"]], "mode (mrv2.media.compareoptions attribute)": [[7, "mrv2.media.CompareOptions.mode"]], "mrv2.media": [[7, "module-mrv2.media"]], "nextversion() (in module mrv2.media)": [[7, "mrv2.media.nextVersion"]], "overlay (mrv2.media.compareoptions attribute)": [[7, "mrv2.media.CompareOptions.overlay"]], "previousversion() (in module mrv2.media)": [[7, "mrv2.media.previousVersion"]], "seta() (in module mrv2.media)": [[7, "mrv2.media.setA"]], "setb() (in module mrv2.media)": [[7, "mrv2.media.setB"]], "setlayer() (in module mrv2.media)": [[7, "mrv2.media.setLayer"]], "setstereo() (in module mrv2.media)": [[7, "mrv2.media.setStereo"]], "toggleb() (in module mrv2.media)": [[7, "mrv2.media.toggleB"]], "wipecenter (mrv2.media.compareoptions attribute)": [[7, "mrv2.media.CompareOptions.wipeCenter"]], "wiperotation (mrv2.media.compareoptions attribute)": [[7, "mrv2.media.CompareOptions.wipeRotation"]], "filemedia (class in mrv2)": [[8, "mrv2.FileMedia"]], "path (class in mrv2)": [[8, "mrv2.Path"]], "rationaltime (class in mrv2)": [[8, "mrv2.RationalTime"]], "timerange (class in mrv2)": [[8, "mrv2.TimeRange"]], "almost_equal() (mrv2.rationaltime method)": [[8, "mrv2.RationalTime.almost_equal"]], "audiooffset (mrv2.filemedia attribute)": [[8, "mrv2.FileMedia.audioOffset"]], "audiopath (mrv2.filemedia attribute)": [[8, "mrv2.FileMedia.audioPath"]], "before() (mrv2.timerange method)": [[8, "mrv2.TimeRange.before"]], "begins() (mrv2.timerange method)": [[8, "mrv2.TimeRange.begins"]], "clamped() (mrv2.timerange method)": [[8, "mrv2.TimeRange.clamped"]], "contains() (mrv2.timerange method)": [[8, "mrv2.TimeRange.contains"]], "currenttime (mrv2.filemedia attribute)": [[8, "mrv2.FileMedia.currentTime"]], "duration_extended_by() (mrv2.timerange method)": [[8, "mrv2.TimeRange.duration_extended_by"]], "duration_from_start_end_time() (mrv2.rationaltime static method)": [[8, "mrv2.RationalTime.duration_from_start_end_time"]], "duration_from_start_end_time_inclusive() (mrv2.rationaltime static method)": [[8, "mrv2.RationalTime.duration_from_start_end_time_inclusive"]], "end_time_exclusive() (mrv2.timerange method)": [[8, "mrv2.TimeRange.end_time_exclusive"]], "end_time_inclusive() (mrv2.timerange method)": [[8, "mrv2.TimeRange.end_time_inclusive"]], "extended_by() (mrv2.timerange method)": [[8, "mrv2.TimeRange.extended_by"]], "finishes() (mrv2.timerange method)": [[8, "mrv2.TimeRange.finishes"]], "from_frames() (mrv2.rationaltime static method)": [[8, "mrv2.RationalTime.from_frames"]], "from_seconds() (mrv2.rationaltime static method)": [[8, "mrv2.RationalTime.from_seconds"]], "from_time_string() (mrv2.rationaltime static method)": [[8, "mrv2.RationalTime.from_time_string"]], "from_timecode() (mrv2.rationaltime static method)": [[8, "mrv2.RationalTime.from_timecode"]], "get() (mrv2.path method)": [[8, "mrv2.Path.get"]], "getbasename() (mrv2.path method)": [[8, "mrv2.Path.getBaseName"]], "getdirectory() (mrv2.path method)": [[8, "mrv2.Path.getDirectory"]], "getextension() (mrv2.path method)": [[8, "mrv2.Path.getExtension"]], "getnumber() (mrv2.path method)": [[8, "mrv2.Path.getNumber"]], "getpadding() (mrv2.path method)": [[8, "mrv2.Path.getPadding"]], "inoutrange (mrv2.filemedia attribute)": [[8, "mrv2.FileMedia.inOutRange"]], "intersects() (mrv2.timerange method)": [[8, "mrv2.TimeRange.intersects"]], "isabsolute() (mrv2.path method)": [[8, "mrv2.Path.isAbsolute"]], "isempty() (mrv2.path method)": [[8, "mrv2.Path.isEmpty"]], "is_invalid_time() (mrv2.rationaltime method)": [[8, "mrv2.RationalTime.is_invalid_time"]], "is_valid_timecode_rate() (mrv2.rationaltime static method)": [[8, "mrv2.RationalTime.is_valid_timecode_rate"]], "loop (mrv2.filemedia attribute)": [[8, "mrv2.FileMedia.loop"]], "meets() (mrv2.timerange method)": [[8, "mrv2.TimeRange.meets"]], "mrv2": [[8, "module-mrv2"]], "mute (mrv2.filemedia attribute)": [[8, "mrv2.FileMedia.mute"]], "nearest_valid_timecode_rate() (mrv2.rationaltime static method)": [[8, "mrv2.RationalTime.nearest_valid_timecode_rate"]], "overlaps() (mrv2.timerange method)": [[8, "mrv2.TimeRange.overlaps"]], "path (mrv2.filemedia attribute)": [[8, "mrv2.FileMedia.path"]], "playback (mrv2.filemedia attribute)": [[8, "mrv2.FileMedia.playback"]], "range_from_start_end_time() (mrv2.timerange static method)": [[8, "mrv2.TimeRange.range_from_start_end_time"]], "range_from_start_end_time_inclusive() (mrv2.timerange static method)": [[8, "mrv2.TimeRange.range_from_start_end_time_inclusive"]], "rescaled_to() (mrv2.rationaltime method)": [[8, "mrv2.RationalTime.rescaled_to"]], "timerange (mrv2.filemedia attribute)": [[8, "mrv2.FileMedia.timeRange"]], "to_frames() (mrv2.rationaltime method)": [[8, "mrv2.RationalTime.to_frames"]], "to_seconds() (mrv2.rationaltime method)": [[8, "mrv2.RationalTime.to_seconds"]], "to_time_string() (mrv2.rationaltime method)": [[8, "mrv2.RationalTime.to_time_string"]], "to_timecode() (mrv2.rationaltime method)": [[8, "mrv2.RationalTime.to_timecode"]], "value_rescaled_to() (mrv2.rationaltime method)": [[8, "mrv2.RationalTime.value_rescaled_to"]], "videolayer (mrv2.filemedia attribute)": [[8, "mrv2.FileMedia.videoLayer"]], "volume (mrv2.filemedia attribute)": [[8, "mrv2.FileMedia.volume"]], "add_clip() (in module mrv2.playlist)": [[9, "mrv2.playlist.add_clip"]], "list() (in module mrv2.playlist)": [[9, "mrv2.playlist.list"]], "mrv2.playlist": [[9, "module-mrv2.playlist"]], "save() (in module mrv2.playlist)": [[9, "mrv2.playlist.save"]], "select() (in module mrv2.playlist)": [[9, "mrv2.playlist.select"]], "plugin (class in mrv2.plugin)": [[10, "mrv2.plugin.Plugin"]], "active() (mrv2.plugin.plugin method)": [[10, "mrv2.plugin.Plugin.active"]], "menus() (mrv2.plugin.plugin method)": [[10, "mrv2.plugin.Plugin.menus"]], "mrv2.plugin": [[10, "module-mrv2.plugin"]], "memory() (in module mrv2.settings)": [[13, "mrv2.settings.memory"]], "mrv2.settings": [[13, "module-mrv2.settings"]], "readahead() (in module mrv2.settings)": [[13, "mrv2.settings.readAhead"]], "readbehind() (in module mrv2.settings)": [[13, "mrv2.settings.readBehind"]], "setmemory() (in module mrv2.settings)": [[13, "mrv2.settings.setMemory"]], "setreadahead() (in module mrv2.settings)": [[13, "mrv2.settings.setReadAhead"]], "setreadbehind() (in module mrv2.settings)": [[13, "mrv2.settings.setReadBehind"]], "filesequenceaudio (class in mrv2.timeline)": [[14, "mrv2.timeline.FileSequenceAudio"]], "loop (class in mrv2.timeline)": [[14, "mrv2.timeline.Loop"]], "playback (class in mrv2.timeline)": [[14, "mrv2.timeline.Playback"]], "timermode (class in mrv2.timeline)": [[14, "mrv2.timeline.TimerMode"]], "frame() (in module mrv2.timeline)": [[14, "mrv2.timeline.frame"]], "inoutrange() (in module mrv2.timeline)": [[14, "mrv2.timeline.inOutRange"]], "loop() (in module mrv2.timeline)": [[14, "mrv2.timeline.loop"]], "mrv2.timeline": [[14, "module-mrv2.timeline"]], "name (mrv2.timeline.filesequenceaudio property)": [[14, "mrv2.timeline.FileSequenceAudio.name"]], "name (mrv2.timeline.loop property)": [[14, "mrv2.timeline.Loop.name"]], "name (mrv2.timeline.playback property)": [[14, "mrv2.timeline.Playback.name"]], "name (mrv2.timeline.timermode property)": [[14, "mrv2.timeline.TimerMode.name"]], "playbackwards() (in module mrv2.timeline)": [[14, "mrv2.timeline.playBackwards"]], "playforwards() (in module mrv2.timeline)": [[14, "mrv2.timeline.playForwards"]], "seconds() (in module mrv2.timeline)": [[14, "mrv2.timeline.seconds"]], "seek() (in module mrv2.timeline)": [[14, "mrv2.timeline.seek"]], "setin() (in module mrv2.timeline)": [[14, "mrv2.timeline.setIn"]], "setinoutrange() (in module mrv2.timeline)": [[14, "mrv2.timeline.setInOutRange"]], "setloop() (in module mrv2.timeline)": [[14, "mrv2.timeline.setLoop"]], "setout() (in module mrv2.timeline)": [[14, "mrv2.timeline.setOut"]], "stop() (in module mrv2.timeline)": [[14, "mrv2.timeline.stop"]], "time() (in module mrv2.timeline)": [[14, "mrv2.timeline.time"]], "timerange() (in module mrv2.timeline)": [[14, "mrv2.timeline.timeRange"]], "drawmode (class in mrv2.usd)": [[15, "mrv2.usd.DrawMode"]], "renderoptions (class in mrv2.usd)": [[15, "mrv2.usd.RenderOptions"]], "complexity (mrv2.usd.renderoptions attribute)": [[15, "mrv2.usd.RenderOptions.complexity"]], "diskcachebytecount (mrv2.usd.renderoptions attribute)": [[15, "mrv2.usd.RenderOptions.diskCacheByteCount"]], "drawmode (mrv2.usd.renderoptions attribute)": [[15, "mrv2.usd.RenderOptions.drawMode"]], "enablelighting (mrv2.usd.renderoptions attribute)": [[15, "mrv2.usd.RenderOptions.enableLighting"]], "mrv2.usd": [[15, "module-mrv2.usd"]], "renderoptions() (in module mrv2.usd)": [[15, "mrv2.usd.renderOptions"]], "renderwidth (mrv2.usd.renderoptions attribute)": [[15, "mrv2.usd.RenderOptions.renderWidth"]], "setrenderoptions() (in module mrv2.usd)": [[15, "mrv2.usd.setRenderOptions"]], "stagecachecount (mrv2.usd.renderoptions attribute)": [[15, "mrv2.usd.RenderOptions.stageCacheCount"]]}}) \ No newline at end of file diff --git a/mrv2/docs/es/genindex.html b/mrv2/docs/es/genindex.html index 9da6ba076..cbbfabe5a 100644 --- a/mrv2/docs/es/genindex.html +++ b/mrv2/docs/es/genindex.html @@ -306,6 +306,8 @@

    G

  • getNumber() (método de mrv2.Path)
  • getPadding() (método de mrv2.Path) +
  • +
  • getVersion() (en el módulo mrv2.cmd)
  • diff --git a/mrv2/docs/es/objects.inv b/mrv2/docs/es/objects.inv index 7ed53a38859d5540d84cda66a654ce5a8869c4dd..06e5eb6eec63f4e90f191661c2d7dd70e4a51768 100644 GIT binary patch delta 2202 zcmV;L2xa%K6R#7HxqslrCkwgxaawMFDnwQ>nEu85)@#8Rq@>>$CNEj*f_>NIUi@)- zF{u+jQ3f}VQDV`Q5v8U-xXD8#Ayr1jZJsO87AIOux~w#WO572>#tNjBl)&{PEdVP) z`E8}|316WVm=GnFE$rh+wv2FG$;fs|(yv%v8;?ghZ9_8<*MDRS60IOu7251wUpuX@ z+ozLN)4dBYPi7}0bE4ogY0L{mKTrv&7IKSVKfY+-iVBWkKUc-FX^lYej$|3-t5A}v z*;1J{)DTX7EJ_{XpL?Q>QwZw<#cAz7q!Pjkq4WZNtq4PwoMe@(|6Jr!6bq$^G=e-^ zXd2X0PS#vdo*S}C(G6O?7R{yU$tp@hK`M9_r%~5PnO8liuanUM9a{f9qomPG2?L`h zuo7BCb{-=T*>#M<89Gj@64Px=%T%U8P)>au4!5TTuO3O3kP8Wz(hRzyT%k~7Wl=(g zV+Gd)TW}u`!48I*arJVG66&KUyo5(lhYThdlSl$8f9|Ksw{9Ce;$FTDA24$;tCLqe zwF%?$50rX|w8(tLn=E&+HX~(1fxp0>J%nbA1#_Y(i3B8eTlQWKqMN1V1E_939YSYR z*(DaTY~ULz1usnbH>5<0n3;LKzQTY{21C@E7G#C>H&r)gDUgL?X8nLHP?W$i46;X* z5^~k8e?LP&DTKywifjPG+&*62Vz|2xpD-BGoda|h-1G|cWmIsm0#Wfn*>!$Qh%f>l z&k-ez&Q-))Yw+tYk9hc|UH%7R4`w<7;@t;)!B73}Q4kncZdGO^yuO=YQ|mbF8`tYh z_sHI4%~-i6b7rPDp4G-cVGq4ro2dpc6%Gm}eQ}YC^f0EXSCjh;G+T5hB{G6;SwLJPhg!V?0R*Ju%W0)4FZvj1^+AIg?2R zmGV3`DUs_-MoW~IcL)k=l^Fsk46BK0X2PNH2q*Wo9;7KbbE7(Rh5JU~ezmOJ~3 zw5wONlIhmxl2Xs4{I~@bC)V2&)#_ z&QpEw=EvN3$lB9x>}XVY6W-!siZhtT7)&D!euwk$yBH6@%cBfVzMc`BY1tqHy+K2@hVf7{=lL+Y89a0y%=zfBsVcHbVDqx6Vr*^OQB;hH*S zK;#@p9zB+S13Y>(?`Lx=)!Qe=e%^G&IQ;k__YsmdJNBU*hnEk)DitB2K+lle z9Le=}wGnJHk;K4StX2#HZMNInUE8__l`h{suJpMi%NA+7;&K;07CKZof8N2~qK_Zo zzexi#12TfIR?P;n+jG_Gg8J?wHEeR%OE^ZEv4R_IJiKftdQ@DyhDf3qb|{~pVopp)=+544oR9wThS^sd{Fj}WF9)(6{jMmuNVR?prh*ZO4SUX^&?jGZiQENytc*!M%U1 z0DO(1^%alAJU?Ju0KFd9EMpKyV9yEp7#|F>LDe#S< zjBRAf$kaSh+1m{yrLVv9sp&?x_J5evAC=@J1z#2V2X?m*s5HMPj-{0c9<983Bf8X)kf|LM}G7h#LjV=sN?IX<`VgN4oV}PTxf7hg5nABmvS3qRC9`j9F`-;5& z+xVfb`uz33$}Ax>GU9&^uv+&Tz=t zk!zv9!dAIu+sp=k1UtW~qo@hN{~U@O1RIwhPO80Q=<(^g$0+9rwZlx922W+{tVZLr z3Fd0Loz4bPefOX}KiN=tcFT0RjnWm@()5!?2|6y|I?QcD3uq8SxV~rSL7Tj`LsnWy cO6*~et&Gi?{t3A8`HH>%NBw#7KY$OaXzMFXmH+?% delta 2215 zcmV;Y2w3;86Rs1Gxqp}VW+68}PRs32g~%!f)4!PCdM)^Zl=S<;yLP@G- zOJ&+nLpb@dD0PT`?uj-|A*|~tPHX=ml@L}4r5EsPMHsT=B&%fo=OUM)SSU@T5#-rI z)1XK>S#v>o%6}?FH)!=*G?yllRg{E+RPZcLqpp!MuX<3dxph*Jp?yM?@#}^#8rN_} zW+!6pS(t`It8pL_OnjbE(&(jxfl(7!2`wUn#|T7*j!`&6;It|+VPjgRG7W-q>f>;@ zJ+1TVkz@(Ekbo)8pexE13N=<1C1f~Oa80lU_Z=eG!4fbtu3m0YLVYg^FX6qYLk80s zlSu+9e~we-Tel4!aWCJ7512Wa)yXTK+JtfW2THv}T4cWBO_sY@n~^f1z+Yg`9zrw5 zf;mx?L;@1KEqgBq(aqBG0aQ1i4xuxu>=FxEHt-FVf)}Rz8&V=g%*?!AUj>7-ASbVTa_6JukR+<)Vd$`jm~wZdwg!PW~^M3IWviSL3D~SOZ%ZZNjN;O+mEh;IEB0tYzA)JuWEGWv5CTZZ~IJM>g z6hD+)@v_oSW04>~jc5EwG|4IJ4?2VEFwhY)1Bn*t;ILXC{Z?a9Grd+~MT&yNe+W?i zH#6;xQ@9q-F#@8}u{Ib9tPwZ;1S+Tr8!UN=C^NzJY!8EZT9C;d7!`NDNPQNClW5n@ zb@vlqi^G+744=Rj9-t%<%bk5i+SMys$%OT}q|`GhKW;(AiS_mbxjbfw`Q^*grGPxA zDK+z=5WZ-)N}c!F>>Uv2&PSc|e^lR|`7!q$mG-n7JK8I}32*T*#TiUv45kqVzr%U> zU5tm{k{DQv)rvu&&31dcYg^Z#(&f9y zl|Gkb*&=OMT<*fhLWc^+e*^3-`uG9S6Phn<1e?IcW_gL-(orJf0 zprsV{7-1WxcinzMgfPXTk)_`aJ_bTq(BY9**qfH}$i(<$KGKf*!n!{|-@?b=li@VF zFUoMV9TVoJJ)VioRGiEwAtO}=xA(CE@HK|kS3DArZ%;e%ifU3La9imJUdNQ)U75zy zIR913dpX%;xx0FsfAK+*=OZ0S&yJvbd%Ip9UtFI+*0+usyik2?NqmY>M%C9#lCELC z)o>}QqZe{c5*)ZCLZ&%@xVHDL+7D_X#AN-~KWKLJddMkCN|P1T{=)f6?zg`?RNZhr zxe4b@tN{N;cqXPwXFoBr1U9|+VOlAWi%g{I`&Ba?YQ8vte{BEnPU^B3nyi2~dtxKS zF0}@xum9p1O<}To&=h7L8$2_oz&D06wvj0#Q}aY+Z#R&XzW&aqCX8(D|1haP4arFg zzAE$&?0$7-Uz2H@_N^0~m>1e%f4RNrGDcOf*v;$jrVkKmQj+?vn8%JLxBaiP;LiR9 z2Hok07d*YIf7^HB{^DZj-y`2-bZSwF zNh5wgQ1T| zt~~;y#dj~#rA{16Rj<%sB|8j+W;Hxg+J3rz{JT%5QqF8tn%@)0(#ivmR$jdkUFt~4 z)D8-Ak-KZf238+3+4 z&W>CQ{S~&#E!$=`_#@c)Ro#o4F8H5Ak%P|0<%g4M?-+V~y6!Q`IYR9)(@le?vUOIY z@!53dYPy}y2EF?3L3@6(q44aM>2e#TE3T!9)wCXhC!V3rEp#}OQVB0E$90(7b}gVm p4B`5ood<35+JLOIkd)ZN9$OikGyM~Am8 diff --git a/mrv2/docs/es/python_api/cmd.html b/mrv2/docs/es/python_api/cmd.html index 6f009944c..15cdb4ba2 100644 --- a/mrv2/docs/es/python_api/cmd.html +++ b/mrv2/docs/es/python_api/cmd.html @@ -59,6 +59,7 @@
  • displayOptions()
  • environmentMapOptions()
  • getLayers()
  • +
  • getVersion()
  • imageOptions()
  • isMuted()
  • lutOptions()
  • @@ -177,6 +178,12 @@

    Obtener las capas de la línea de tiempo (GUI).

    +
    +
    +mrv2.cmd.getVersion() str
    +

    Retorna la versión de mrv2.

    +
    +
    mrv2.cmd.imageOptions() mrv2.image.ImageOptions
    diff --git a/mrv2/docs/es/python_api/index.html b/mrv2/docs/es/python_api/index.html index 1cfd30d5d..c2b2b7d0a 100644 --- a/mrv2/docs/es/python_api/index.html +++ b/mrv2/docs/es/python_api/index.html @@ -107,6 +107,7 @@
  • displayOptions()
  • environmentMapOptions()
  • getLayers()
  • +
  • getVersion()
  • imageOptions()
  • isMuted()
  • lutOptions()
  • diff --git a/mrv2/docs/es/searchindex.js b/mrv2/docs/es/searchindex.js index 14dfbd373..15be595b7 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/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, 2, 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": [], "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": [2, 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": [2, 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": [2, 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, "currentsession": [2, 4], "opensession": [2, 4], "setcurrentsession": [2, 4], "sets": [], "saveoti": [2, 4]}, "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, "", "currentSession"], [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, "", "open"], [2, 4, 1, "", "openSession"], [2, 4, 1, "", "prefsPath"], [2, 4, 1, "", "rootPath"], [2, 4, 1, "", "save"], [2, 4, 1, "", "saveOTIO"], [2, 4, 1, "", "savePDF"], [2, 4, 1, "", "saveSession"], [2, 4, 1, "", "saveSessionAs"], [2, 4, 1, "", "setCompareOptions"], [2, 4, 1, "", "setCurrentSession"], [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"]], "currentsession() (en el m\u00f3dulo mrv2.cmd)": [[2, "mrv2.cmd.currentSession"]], "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"]], "open() (en el m\u00f3dulo mrv2.cmd)": [[2, "mrv2.cmd.open"]], "opensession() (en el m\u00f3dulo mrv2.cmd)": [[2, "mrv2.cmd.openSession"]], "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"]], "saveotio() (en el m\u00f3dulo mrv2.cmd)": [[2, "mrv2.cmd.saveOTIO"]], "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"]], "setcurrentsession() (en el m\u00f3dulo mrv2.cmd)": [[2, "mrv2.cmd.setCurrentSession"]], "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 +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, 2, 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": [], "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": [2, 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": [2, 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": [2, 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": [2, 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, "currentsession": [2, 4], "opensession": [2, 4], "setcurrentsession": [2, 4], "sets": [], "saveoti": [2, 4], "getversion": [2, 4]}, "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, "", "currentSession"], [2, 4, 1, "", "displayOptions"], [2, 4, 1, "", "environmentMapOptions"], [2, 4, 1, "", "getLayers"], [2, 4, 1, "", "getVersion"], [2, 4, 1, "", "imageOptions"], [2, 4, 1, "", "isMuted"], [2, 4, 1, "", "lutOptions"], [2, 4, 1, "", "open"], [2, 4, 1, "", "openSession"], [2, 4, 1, "", "prefsPath"], [2, 4, 1, "", "rootPath"], [2, 4, 1, "", "save"], [2, 4, 1, "", "saveOTIO"], [2, 4, 1, "", "savePDF"], [2, 4, 1, "", "saveSession"], [2, 4, 1, "", "saveSessionAs"], [2, 4, 1, "", "setCompareOptions"], [2, 4, 1, "", "setCurrentSession"], [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"]], "currentsession() (en el m\u00f3dulo mrv2.cmd)": [[2, "mrv2.cmd.currentSession"]], "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"]], "getversion() (en el m\u00f3dulo mrv2.cmd)": [[2, "mrv2.cmd.getVersion"]], "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"]], "open() (en el m\u00f3dulo mrv2.cmd)": [[2, "mrv2.cmd.open"]], "opensession() (en el m\u00f3dulo mrv2.cmd)": [[2, "mrv2.cmd.openSession"]], "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"]], "saveotio() (en el m\u00f3dulo mrv2.cmd)": [[2, "mrv2.cmd.saveOTIO"]], "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"]], "setcurrentsession() (en el m\u00f3dulo mrv2.cmd)": [[2, "mrv2.cmd.setCurrentSession"]], "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/mrvPy/Cmds.cpp b/mrv2/lib/mrvPy/Cmds.cpp index 67eda345c..36fbd57d8 100644 --- a/mrv2/lib/mrvPy/Cmds.cpp +++ b/mrv2/lib/mrvPy/Cmds.cpp @@ -32,6 +32,11 @@ namespace mrv2 { using namespace mrv; + std::string getVersion() + { + return mrv::version(); + } + /** * \brief Open a file with optiona audio. * @@ -502,10 +507,14 @@ Used to run main commands and get and set the display, image, compare, LUT optio cmds.def( "setStereo3DOptions", &mrv2::cmd::setStereo3DOptions, _("Set the stereo 3D options."), py::arg("options")); + cmds.def( "getLayers", &mrv2::cmd::getLayers, _("Get the layers of the timeline (GUI).")); + cmds.def( + "getVersion", &mrv2::cmd::getVersion, _("Get the version of mrv2.")); + cmds.def( "update", &mrv2::cmd::update, _("Call Fl::check to update the GUI and return the number of seconds " diff --git a/mrv2/po/es.po b/mrv2/po/es.po index 5a4f606c4..643ce27c6 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-09 15:32-0300\n" +"POT-Creation-Date: 2023-10-09 17:14-0300\n" "PO-Revision-Date: 2023-02-11 13:42-0300\n" "Last-Translator: Gonzalo Garramuño \n" "Language-Team: Spanish \n" @@ -1931,7 +1931,9 @@ msgid "" "Expected a handle to a Python function or to a tuple containing a Python " "function and a string with menu options in it." msgstr "" -"Se esperaba un identificador para una función de Python o para una tupla que contiene una función de Python y una cadena de texto con opciones de menú, como __divider__." +"Se esperaba un identificador para una función de Python o para una tupla que " +"contiene una función de Python y una cadena de texto con opciones de menú, " +"como __divider__." msgid "" "Expected a tuple containing a Python function and a string with menu options " @@ -2264,6 +2266,9 @@ msgstr "Obtener las capas de la línea de tiempo (GUI)." msgid "Get the playback volume." msgstr "Obtenga el volumen de reproducción." +msgid "Get the version of mrv2." +msgstr "Retorna la versión de mrv2." + msgid "Ghosting" msgstr "Fanstasma" @@ -2446,8 +2451,8 @@ msgid "" "In '{0}' expected a function a tuple containing a Python function and a " "string with menu options in it." msgstr "" -"En '{0}' experaba un tuple conteniendo una función de Python y una cadena " -"de texto con opciones de menú en ella." +"En '{0}' experaba un tuple conteniendo una función de Python y una cadena de " +"texto con opciones de menú en ella." msgid "" "In '{0}' expected a function as a value or a tuple containing a Python " diff --git a/mrv2/po/messages.pot b/mrv2/po/messages.pot index dbdba34d5..dd5376894 100644 --- a/mrv2/po/messages.pot +++ b/mrv2/po/messages.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: mrv2 v0.8.0\n" "Report-Msgid-Bugs-To: ggarra13@gmail.com\n" -"POT-Creation-Date: 2023-10-09 15:32-0300\n" +"POT-Creation-Date: 2023-10-09 17:14-0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -87,7 +87,7 @@ msgid "" ":attr:`start_time`/:attr:`end_time_exclusive` and bound arguments.\n" msgstr "" -#: mrvPy/Cmds.cpp:432 +#: mrvPy/Cmds.cpp:435 msgid "" "\n" "Command module.\n" @@ -1244,7 +1244,7 @@ msgid "" "calculate the Read Ahead and Read Behind" msgstr "" -#: mrvPy/Cmds.cpp:513 +#: mrvPy/Cmds.cpp:520 msgid "" "Call Fl::check to update the GUI and return the number of seconds that " "elapsed." @@ -1397,7 +1397,7 @@ msgstr "" msgid "Close Current" msgstr "" -#: mrvPy/Cmds.cpp:451 +#: mrvPy/Cmds.cpp:454 msgid "Close all file items." msgstr "" @@ -1421,7 +1421,7 @@ msgstr "" msgid "Close the current A file." msgstr "" -#: mrvPy/Cmds.cpp:448 +#: mrvPy/Cmds.cpp:451 msgid "Close the file item." msgstr "" @@ -1541,7 +1541,7 @@ msgstr "" msgid "Compare the A and B files side by side" msgstr "" -#: mrvPy/Cmds.cpp:444 +#: mrvPy/Cmds.cpp:447 msgid "Compare two file items with a compare mode." msgstr "" @@ -2566,14 +2566,18 @@ msgstr "" msgid "Get maximum file sequence digits." msgstr "" -#: mrvPy/Cmds.cpp:509 +#: mrvPy/Cmds.cpp:513 msgid "Get the layers of the timeline (GUI)." msgstr "" -#: mrvPy/Cmds.cpp:523 +#: mrvPy/Cmds.cpp:530 msgid "Get the playback volume." msgstr "" +#: mrvPy/Cmds.cpp:516 +msgid "Get the version of mrv2." +msgstr "" + #: mrvPanels/mrvAnnotationsPanel.cpp:307 msgid "Ghosting" msgstr "" @@ -3401,7 +3405,7 @@ msgstr "" msgid "No playlist selected." msgstr "" -#: mrvPy/Cmds.cpp:402 +#: mrvPy/Cmds.cpp:405 msgid "No session name established, cannot save." msgstr "" @@ -3584,11 +3588,11 @@ msgstr "" msgid "Open a filename with audio" msgstr "" -#: mrvPy/Cmds.cpp:555 +#: mrvPy/Cmds.cpp:562 msgid "Open a session file." msgstr "" -#: mrvPy/Cmds.cpp:439 +#: mrvPy/Cmds.cpp:442 msgid "Open file with optional audio." msgstr "" @@ -4427,19 +4431,19 @@ msgstr "" msgid "Return the A file item." msgstr "" -#: mrvPy/Cmds.cpp:470 +#: mrvPy/Cmds.cpp:473 msgid "Return the LUT options." msgstr "" -#: mrvPy/Cmds.cpp:463 +#: mrvPy/Cmds.cpp:466 msgid "Return the display options." msgstr "" -#: mrvPy/Cmds.cpp:486 +#: mrvPy/Cmds.cpp:489 msgid "Return the environment map options." msgstr "" -#: mrvPy/Cmds.cpp:478 +#: mrvPy/Cmds.cpp:481 msgid "Return the image options." msgstr "" @@ -4455,11 +4459,11 @@ msgstr "" msgid "Return the list of layers." msgstr "" -#: mrvPy/Cmds.cpp:459 +#: mrvPy/Cmds.cpp:462 msgid "Return the path to preferences of mrv2." msgstr "" -#: mrvPy/Cmds.cpp:455 +#: mrvPy/Cmds.cpp:458 msgid "Return the root path to the insallation of mrv2." msgstr "" @@ -4467,7 +4471,7 @@ msgstr "" msgid "Return the version and exit." msgstr "" -#: mrvPy/Cmds.cpp:548 +#: mrvPy/Cmds.cpp:555 msgid "Returns current session file." msgstr "" @@ -4497,7 +4501,7 @@ msgstr "" msgid "Returns the time value for time converted to new_rate." msgstr "" -#: mrvPy/Cmds.cpp:517 +#: mrvPy/Cmds.cpp:524 msgid "Returns true if audio is muted." msgstr "" @@ -4638,19 +4642,19 @@ msgstr "" msgid "Save Single Frame" msgstr "" -#: mrvPy/Cmds.cpp:542 +#: mrvPy/Cmds.cpp:549 msgid "Save a PDF document with all annotations and notes." msgstr "" -#: mrvPy/Cmds.cpp:531 +#: mrvPy/Cmds.cpp:538 msgid "Save a movie or sequence from the front layer." msgstr "" -#: mrvPy/Cmds.cpp:558 mrvPy/Cmds.cpp:561 +#: mrvPy/Cmds.cpp:565 mrvPy/Cmds.cpp:568 msgid "Save a session file." msgstr "" -#: mrvPy/Cmds.cpp:536 +#: mrvPy/Cmds.cpp:543 msgid "Save an .otio file from the current selected image." msgstr "" @@ -4991,7 +4995,7 @@ msgstr "" msgid "Set the A file index." msgstr "" -#: mrvPy/Cmds.cpp:473 +#: mrvPy/Cmds.cpp:476 msgid "Set the LUT options." msgstr "" @@ -4999,15 +5003,15 @@ msgstr "" msgid "Set the cache memory setting in gigabytes." msgstr "" -#: mrvPy/Cmds.cpp:498 +#: mrvPy/Cmds.cpp:501 msgid "Set the compare options." msgstr "" -#: mrvPy/Cmds.cpp:467 +#: mrvPy/Cmds.cpp:470 msgid "Set the display options." msgstr "" -#: mrvPy/Cmds.cpp:490 +#: mrvPy/Cmds.cpp:493 msgid "Set the environment map options." msgstr "" @@ -5015,7 +5019,7 @@ msgstr "" msgid "Set the first version for current media." msgstr "" -#: mrvPy/Cmds.cpp:482 +#: mrvPy/Cmds.cpp:485 msgid "Set the image options." msgstr "" @@ -5039,7 +5043,7 @@ msgstr "" msgid "Set the last version for current media." msgstr "" -#: mrvPy/Cmds.cpp:520 +#: mrvPy/Cmds.cpp:527 msgid "Set the muting of the audio." msgstr "" @@ -5059,7 +5063,7 @@ msgstr "" msgid "Set the out time of the selected time range of the timeline." msgstr "" -#: mrvPy/Cmds.cpp:526 +#: mrvPy/Cmds.cpp:533 msgid "Set the playback volume." msgstr "" @@ -5071,11 +5075,11 @@ msgstr "" msgid "Set the selected time range of the timeline." msgstr "" -#: mrvPy/Cmds.cpp:506 +#: mrvPy/Cmds.cpp:509 msgid "Set the stereo 3D options." msgstr "" -#: mrvPy/Cmds.cpp:552 +#: mrvPy/Cmds.cpp:559 msgid "Sets the current session file." msgstr "" From 42451067073a76f3f5ce4e4e6adb2b9daa9a27b9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Gonzalo=20Garramu=C3=B1o?= Date: Mon, 9 Oct 2023 20:42:17 -0300 Subject: [PATCH 7/9] Made audio work with different FPS. --- tlRender | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tlRender b/tlRender index 870f18b1b..059e0db66 160000 --- a/tlRender +++ b/tlRender @@ -1 +1 @@ -Subproject commit 870f18b1b74b12c4048e1d9921d36ce1f405e731 +Subproject commit 059e0db66868a6a748ea135b5e9ca6dfbf20d7e2 From 3285f65b8ea6ff8a858bd9019fa07e98b0b71b2e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Gonzalo=20Garramu=C3=B1o?= Date: Mon, 9 Oct 2023 21:55:02 -0300 Subject: [PATCH 8/9] Added a thread safe SetAndRestore locale class. --- mrv2/docs/HISTORY.md | 4 ++ mrv2/lib/mrvCore/CMakeLists.txt | 2 + mrv2/lib/mrvCore/mrvLocale.cpp | 32 ++++++++++++++++ mrv2/lib/mrvCore/mrvLocale.h | 29 ++++++++++++++ mrv2/lib/mrvFl/mrvLanguages.cpp | 8 +++- mrv2/lib/mrvFl/mrvPreferences.cpp | 13 ++----- mrv2/lib/mrvFl/mrvSaving.cpp | 53 +++++++++++++------------- mrv2/lib/mrvGL/mrvGLViewport.cpp | 7 ++-- mrv2/lib/mrvGL/mrvGLViewportDraw.cpp | 12 ++---- mrv2/lib/mrvGL/mrvThumbnailCreator.cpp | 29 +++++++------- mrv2/lib/mrvWidgets/mrvColorInfo.cpp | 13 ++++--- mrv2/lib/mrvWidgets/mrvOCIOBrowser.cpp | 5 +-- 12 files changed, 134 insertions(+), 73 deletions(-) create mode 100644 mrv2/lib/mrvCore/mrvLocale.cpp create mode 100644 mrv2/lib/mrvCore/mrvLocale.h diff --git a/mrv2/docs/HISTORY.md b/mrv2/docs/HISTORY.md index 66d6e49f8..ef162aace 100644 --- a/mrv2/docs/HISTORY.md +++ b/mrv2/docs/HISTORY.md @@ -11,6 +11,10 @@ v0.8.0 - Made Save Session not save temporary EDLs in the session file. - Added a __divider__ entry to Plug-in menus to add a divider line between menu entries. +- Added a cmd.getVersion() to get the version of mrv2 from Python. +- Made playback play with audio when changing frame rates (slower or faster). +- Fixed a locale change when using the FPS pull-down and there were thumbnails + present. v0.7.9 ====== diff --git a/mrv2/lib/mrvCore/CMakeLists.txt b/mrv2/lib/mrvCore/CMakeLists.txt index 720abad25..67bfe7ea2 100644 --- a/mrv2/lib/mrvCore/CMakeLists.txt +++ b/mrv2/lib/mrvCore/CMakeLists.txt @@ -15,6 +15,7 @@ set(HEADERS mrvHome.h mrvHotkey.h mrvI8N.h + mrvLocale.h mrvMedia.h mrvMemory.h mrvMesh.h @@ -38,6 +39,7 @@ set(SOURCES mrvFilesPanelOptions.cpp mrvHome.cpp mrvHotkey.cpp + mrvLocale.cpp mrvMedia.cpp mrvMemory.cpp mrvMesh.cpp diff --git a/mrv2/lib/mrvCore/mrvLocale.cpp b/mrv2/lib/mrvCore/mrvLocale.cpp new file mode 100644 index 000000000..8bfec77b7 --- /dev/null +++ b/mrv2/lib/mrvCore/mrvLocale.cpp @@ -0,0 +1,32 @@ + +#include +#include +#include + +#include "mrvCore/mrvLocale.h" + +namespace mrv +{ + namespace locale + { + SetAndRestore::SetAndRestore(const int category, const char* locale) : + m_category(category) + { + m_mutex.lock(); + m_oldLocale = strdup(setlocale(category, NULL)); + if (!m_oldLocale) + throw std::runtime_error("Could not allocate locale"); + setlocale(category, locale); + } + + SetAndRestore::~SetAndRestore() + { + setlocale(m_category, m_oldLocale); + free(m_oldLocale); + m_mutex.unlock(); + } + + std::mutex SetAndRestore::m_mutex; + + } // namespace locale +} // namespace mrv diff --git a/mrv2/lib/mrvCore/mrvLocale.h b/mrv2/lib/mrvCore/mrvLocale.h new file mode 100644 index 000000000..73cc063c1 --- /dev/null +++ b/mrv2/lib/mrvCore/mrvLocale.h @@ -0,0 +1,29 @@ + +#pragma once + +#include +#include + +#define StoreLocale mrv::locale::SetAndRestore saved; + +namespace mrv +{ + namespace locale + { + //! Thread safe setlocale. + struct SetAndRestore + { + SetAndRestore( + const int category = LC_NUMERIC, const char* locale = "C"); + ~SetAndRestore(); + + const char* stored() { return m_oldLocale; }; + + private: + static std::mutex m_mutex; + int m_category; + char* m_oldLocale; + }; + + } // namespace locale +} // namespace mrv diff --git a/mrv2/lib/mrvFl/mrvLanguages.cpp b/mrv2/lib/mrvFl/mrvLanguages.cpp index d60e13c5e..3d1c29aef 100644 --- a/mrv2/lib/mrvFl/mrvLanguages.cpp +++ b/mrv2/lib/mrvFl/mrvLanguages.cpp @@ -143,7 +143,9 @@ void check_language(PreferencesUI* uiPrefs, int& language_index, mrv::App* app) // setenv( "LC_CTYPE", "UTF-8", 1 ); setenv("LANGUAGE", language, 1); - Fl_Preferences base(mrv::prefspath().c_str(), "filmaura", "mrv2"); + Fl_Preferences base( + mrv::prefspath().c_str(), "filmaura", "mrv2", + Fl_Preferences::C_LOCALE); // Save ui preferences Fl_Preferences ui(base, "ui"); @@ -279,7 +281,9 @@ namespace mrv char languageCode[32]; const char* language = "en_US.UTF-8"; - Fl_Preferences base(mrv::prefspath().c_str(), "filmaura", "mrv2"); + Fl_Preferences base( + mrv::prefspath().c_str(), "filmaura", "mrv2", + Fl_Preferences::C_LOCALE); // Load ui language preferences Fl_Preferences ui(base, "ui"); diff --git a/mrv2/lib/mrvFl/mrvPreferences.cpp b/mrv2/lib/mrvFl/mrvPreferences.cpp index 6954e503e..2081a4d1b 100644 --- a/mrv2/lib/mrvFl/mrvPreferences.cpp +++ b/mrv2/lib/mrvFl/mrvPreferences.cpp @@ -16,6 +16,7 @@ namespace fs = std::filesystem; #include // for fl_getenv #include // for macOS menus +#include "mrvCore/mrvLocale.h" #include "mrvCore/mrvHome.h" #include "mrvCore/mrvHotkey.h" #include "mrvCore/mrvMedia.h" @@ -121,8 +122,7 @@ namespace mrv float tmpF; char tmpS[2048]; - char* saved_locale = strdup(setlocale(LC_NUMERIC, NULL)); - setlocale(LC_NUMERIC, "C"); + StoreLocale; std::string msg = tl::string::Format(_("Reading preferences from \"{0}mrv2.prefs\".")) @@ -848,9 +848,6 @@ namespace mrv width = 270; ui->uiViewGroup->fixed(ui->uiDockGroup, width); - - setlocale(LC_NUMERIC, saved_locale); - free(saved_locale); } void Preferences::open_windows() @@ -897,8 +894,7 @@ namespace mrv auto uiPrefs = ViewerUI::uiPrefs; auto settingsObject = app->settingsObject(); - char* saved_locale = strdup(setlocale(LC_NUMERIC, NULL)); - setlocale(LC_NUMERIC, "C"); + StoreLocale; int visible = 0; if (uiPrefs->uiMain->visible()) @@ -1303,9 +1299,6 @@ namespace mrv base.flush(); - setlocale(LC_NUMERIC, saved_locale); - free(saved_locale); - msg = tl::string::Format(_("Preferences have been saved to: " "\"{0}mrv2.prefs\".")) .arg(prefspath()); diff --git a/mrv2/lib/mrvFl/mrvSaving.cpp b/mrv2/lib/mrvFl/mrvSaving.cpp index 07edf7aaf..0f2c70486 100644 --- a/mrv2/lib/mrvFl/mrvSaving.cpp +++ b/mrv2/lib/mrvFl/mrvSaving.cpp @@ -19,6 +19,7 @@ namespace fs = std::filesystem; #include #include "mrvCore/mrvUtil.h" +#include "mrvCore/mrvLocale.h" #include "mrvWidgets/mrvProgressReport.h" @@ -266,19 +267,18 @@ namespace mrv // Render the video. gl::OffscreenBufferBinding binding(buffer); CHECK_GL; - const std::string savedLocale = - std::setlocale(LC_NUMERIC, nullptr); - setlocale(LC_NUMERIC, "C"); - render->begin( - offscreenBufferSize, view->getColorConfigOptions(), - view->lutOptions()); - CHECK_GL; - render->drawVideo( - {videoData}, - {math::Box2i(0, 0, renderSize.w, renderSize.h)}); - CHECK_GL; - render->end(); - std::setlocale(LC_NUMERIC, savedLocale.c_str()); + { + StoreLocale; + render->begin( + offscreenBufferSize, view->getColorConfigOptions(), + view->lutOptions()); + CHECK_GL; + render->drawVideo( + {videoData}, + {math::Box2i(0, 0, renderSize.w, renderSize.h)}); + CHECK_GL; + render->end(); + } glBindBuffer(GL_PIXEL_PACK_BUFFER, 0); CHECK_GL; @@ -593,19 +593,20 @@ namespace mrv // Render the video. gl::OffscreenBufferBinding binding(buffer); CHECK_GL; - const std::string savedLocale = - std::setlocale(LC_NUMERIC, nullptr); - setlocale(LC_NUMERIC, "C"); - render->begin( - offscreenBufferSize, view->getColorConfigOptions(), - view->lutOptions()); - CHECK_GL; - render->drawVideo( - {videoData}, - {math::Box2i(0, 0, renderSize.w, renderSize.h)}); - CHECK_GL; - render->end(); - std::setlocale(LC_NUMERIC, savedLocale.c_str()); + { + StoreLocale; + render->begin( + offscreenBufferSize, + view->getColorConfigOptions(), + view->lutOptions()); + CHECK_GL; + render->drawVideo( + {videoData}, + {math::Box2i( + 0, 0, renderSize.w, renderSize.h)}); + CHECK_GL; + render->end(); + } // back to conventional pixel operation // glUnmapBuffer(GL_PIXEL_PACK_BUFFER); diff --git a/mrv2/lib/mrvGL/mrvGLViewport.cpp b/mrv2/lib/mrvGL/mrvGLViewport.cpp index b0bd933b3..14708c8fd 100644 --- a/mrv2/lib/mrvGL/mrvGLViewport.cpp +++ b/mrv2/lib/mrvGL/mrvGLViewport.cpp @@ -16,6 +16,7 @@ #include "mrViewer.h" #include "mrvCore/mrvColorSpaces.h" +#include "mrvCore/mrvLocale.h" #include "mrvCore/mrvSequence.h" #include "mrvCore/mrvI8N.h" @@ -266,8 +267,8 @@ namespace mrv { gl::OffscreenBufferBinding binding(gl.buffer); CHECK_GL; - char* saved_locale = strdup(setlocale(LC_NUMERIC, NULL)); - setlocale(LC_NUMERIC, "C"); + + StoreLocale; gl.render->begin( renderSize, p.colorConfigOptions, p.lutOptions); CHECK_GL; @@ -303,8 +304,6 @@ namespace mrv CHECK_GL; gl.render->end(); CHECK_GL; - setlocale(LC_NUMERIC, saved_locale); - free(saved_locale); } } } diff --git a/mrv2/lib/mrvGL/mrvGLViewportDraw.cpp b/mrv2/lib/mrvGL/mrvGLViewportDraw.cpp index 0a1583644..6cb1decdb 100644 --- a/mrv2/lib/mrvGL/mrvGLViewportDraw.cpp +++ b/mrv2/lib/mrvGL/mrvGLViewportDraw.cpp @@ -4,6 +4,7 @@ #include +#include "mrvCore/mrvLocale.h" #include "mrvCore/mrvMemory.h" #include "mrvCore/mrvUtil.h" @@ -235,9 +236,9 @@ namespace mrv const auto& renderSize = getRenderSize(); { + StoreLocale; + gl::OffscreenBufferBinding binding(gl.buffer); - char* saved_locale = strdup(setlocale(LC_NUMERIC, NULL)); - setlocale(LC_NUMERIC, "C"); gl.render->begin(renderSize, p.colorConfigOptions, p.lutOptions); if (p.missingFrame && p.missingFrameType != MissingFrameType::kBlackFrame) @@ -256,15 +257,12 @@ namespace mrv _drawOverlays(renderSize); gl.render->end(); - setlocale(LC_NUMERIC, saved_locale); - free(saved_locale); } { + StoreLocale; gl::OffscreenBufferBinding binding(gl.stereoBuffer); - char* saved_locale = strdup(setlocale(LC_NUMERIC, NULL)); - setlocale(LC_NUMERIC, "C"); gl.render->begin(renderSize, p.colorConfigOptions, p.lutOptions); if (p.stereo3DOptions.eyeSeparation != 0.F) @@ -283,8 +281,6 @@ namespace mrv _drawOverlays(renderSize); gl.render->end(); - setlocale(LC_NUMERIC, saved_locale); - free(saved_locale); } } diff --git a/mrv2/lib/mrvGL/mrvThumbnailCreator.cpp b/mrv2/lib/mrvGL/mrvThumbnailCreator.cpp index 12fb4d9e2..392ba1c04 100644 --- a/mrv2/lib/mrvGL/mrvThumbnailCreator.cpp +++ b/mrv2/lib/mrvGL/mrvThumbnailCreator.cpp @@ -16,6 +16,7 @@ #include #include +#include "mrvCore/mrvLocale.h" #include "mrvCore/mrvSequence.h" // mrViewer includes @@ -404,21 +405,19 @@ namespace mrv gl::OffscreenBufferBinding binding( offscreenBuffer); - char* saved_locale = - strdup(setlocale(LC_NUMERIC, NULL)); - setlocale(LC_NUMERIC, "C"); - render->begin( - offscreenBufferSize, - requestIt->colorConfigOptions, - requestIt->lutOptions); - render->drawVideo( - {videoData}, - {math::Box2i( - 0, 0, info.size.w, info.size.h)}, - {i}, {d}); - render->end(); - setlocale(LC_NUMERIC, saved_locale); - free(saved_locale); + { + StoreLocale; + render->begin( + offscreenBufferSize, + requestIt->colorConfigOptions, + requestIt->lutOptions); + render->drawVideo( + {videoData}, + {math::Box2i( + 0, 0, info.size.w, info.size.h)}, + {i}, {d}); + render->end(); + } glPixelStorei(GL_PACK_ALIGNMENT, 1); glReadPixels( diff --git a/mrv2/lib/mrvWidgets/mrvColorInfo.cpp b/mrv2/lib/mrvWidgets/mrvColorInfo.cpp index f6a221908..6a79d767e 100644 --- a/mrv2/lib/mrvWidgets/mrvColorInfo.cpp +++ b/mrv2/lib/mrvWidgets/mrvColorInfo.cpp @@ -14,12 +14,14 @@ #include #include -#include "mrViewer.h" - #include "mrvCore/mrvColorSpaces.h" +#include "mrvCore/mrvLocale.h" #include "mrvCore/mrvString.h" -#include "mrvGL/mrvGLViewport.h" + +#include "mrvGL/mrvTimelineViewport.h" + #include "mrvColorInfo.h" +#include "mrViewer.h" #include "mrvFl/mrvIO.h" @@ -326,8 +328,9 @@ namespace mrv text.str(""); text.str().reserve(1024); - const char* locale = setlocale(LC_NUMERIC, NULL); - text.imbue(std::locale(locale)); + + StoreLocale; + text.imbue(std::locale(saved.stored())); text << "@b\t" << std::fixed << std::setw(7) << std::setprecision(2) << kR << "R" << "\t" << kG << "G" diff --git a/mrv2/lib/mrvWidgets/mrvOCIOBrowser.cpp b/mrv2/lib/mrvWidgets/mrvOCIOBrowser.cpp index 40390c6ba..679cabdf4 100644 --- a/mrv2/lib/mrvWidgets/mrvOCIOBrowser.cpp +++ b/mrv2/lib/mrvWidgets/mrvOCIOBrowser.cpp @@ -7,6 +7,7 @@ #include #include "mrvCore/mrvOS.h" +#include "mrvCore/mrvLocale.h" #include "mrvCore/mrvMedia.h" #include "mrvFl/mrvIO.h" @@ -125,7 +126,7 @@ namespace mrv { this->clear(); - const char* oldloc = setlocale(LC_NUMERIC, "C"); + StoreLocale; switch (_type) { @@ -141,8 +142,6 @@ namespace mrv default: LOG_ERROR(_("Unknown type for mrvOCIOBrowser")); } - - setlocale(LC_NUMERIC, oldloc); } } // namespace mrv From 38930414405773d9ae2815b2338dbdd0ce60a285 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Gonzalo=20Garramu=C3=B1o?= Date: Mon, 9 Oct 2023 22:10:33 -0300 Subject: [PATCH 9/9] Removed debugging statement. --- mrv2/lib/mrvWidgets/mrViewer.fl | 5 ----- 1 file changed, 5 deletions(-) diff --git a/mrv2/lib/mrvWidgets/mrViewer.fl b/mrv2/lib/mrvWidgets/mrViewer.fl index 230ec7c80..4f82897dd 100644 --- a/mrv2/lib/mrvWidgets/mrViewer.fl +++ b/mrv2/lib/mrvWidgets/mrViewer.fl @@ -565,11 +565,6 @@ 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();}