This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| python -m clairmeta.cli check -type dcp tests/resources/DCP/ECL-SET/ECL39-SINGLE-CPL-LVLS_TST_C_EN-XX_UK-U_51_4K_DI_20180103_ECL_SMPTE_OV | |
| 2020-09-01 19:44:40,577 - Clairmeta - INFO - Probing DCP : tests/resources/DCP/ECL-SET/ECL39-SINGLE-CPL-LVLS_TST_C_EN-XX_UK-U_51_4K_DI_20180103_ECL_SMPTE_OV | |
| 2020-09-01 19:44:40,745 - Clairmeta - INFO - Total time : 0.17 seconds | |
| 2020-09-01 19:44:40,843 - Clairmeta - INFO - Checking DCP : tests/resources/DCP/ECL-SET/ECL39-SINGLE-CPL-LVLS_TST_C_EN-XX_UK-U_51_4K_DI_20180103_ECL_SMPTE_OV | |
| 2020-09-01 19:44:40,941 - Clairmeta - INFO - DCP : tests/resources/DCP/ECL-SET/ECL39-SINGLE-CPL-LVLS_TST_C_EN-XX_UK-U_51_4K_DI_20180103_ECL_SMPTE_OV | |
| 2020-09-01 19:44:40,941 - Clairmeta - INFO - Size : 42.09 MiB | |
| 2020-09-01 19:44:40,941 - Clairmeta - INFO - Error(s): | |
| + CPL_ECL39-SINGLE-CPL-LVLS_TST_C_EN-XX_UK-U_51_4K_DI_20180103_ECL_SMPTE_OV.xml (ECL39-SINGLE-CPL-LVLS_TST_C_EN-XX_UK-U_51_4K_DI_20180103_ECL_SMPTE_OV) | |
| . CPL reel attributes shall be coherents across all reels. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| FROM ubuntu:focal | |
| ENV DEBIAN_FRONTEND=noninteractive | |
| RUN apt-get update && apt-get install -y --no-install-recommends \ | |
| curl \ | |
| ca-certificates \ | |
| build-essential \ | |
| devscripts \ | |
| fakeroot \ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import colour | |
| import numpy as np | |
| import matplotlib.pyplot as plt | |
| np.set_printoptions(suppress=True) | |
| """ | |
| Example shader generated by ocio v1, using Troy's config untouched, lutsize is 32 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| diff --git a/lib/IlmCtlSimd/CtlSimdInst.cpp b/lib/IlmCtlSimd/CtlSimdInst.cpp | |
| index 4d329fc..fc5ff8f 100644 | |
| --- a/lib/IlmCtlSimd/CtlSimdInst.cpp | |
| +++ b/lib/IlmCtlSimd/CtlSimdInst.cpp | |
| @@ -189,7 +189,7 @@ SimdInst::executePath (SimdBoolMask &mask, SimdXContext &xcontext) const | |
| REPLACE_EXC | |
| (e, "\n" << | |
| xcontext.fileName() << ":" << | |
| - inst->lineNumber() << ": " << e); | |
| + inst->lineNumber() << ": " << e.what()); |
NewerOlder