Changelog¶
Version 0.9.2¶
- Fixed a bug where ALE’s with blank lines would not convert correctly.
- Fixed a bug that was preventing
cdl_convertfrom being correctly installed in Python 2.6 - Fixed continuous integration testing.
- No longer officially supporting Python 3.2, as I’ve had to remove it from our CI builds. It should still work just fine though, but we won’t be running CI against it.
Version 0.9¶
- Added ability to parse CMX EDLs
- Fixed a script bug where a collection format containing color decisions will not have those color decisions exported as individual color corrections.
- Fixed a bug where we weren’t reading line endings correctly in certain situations.
- Added a cdl_convert.py stub file to the package root level, which will allow running of the cdl_convert script without installation. Due to relative imports in the python code, it was no longer possible to call cdl_convert/cdl_convert.py directly.
- The script, when run directly from cdl_convert.py, will now write errors to stderror correctly, and exit with a status of 1.
Version 0.8¶
- Added –single flag. When provided with an output collection format, each color correction in the input will be exported to it’s own collection.
- Giving a ColorCorrection a non-duplicate ID now works unless the
--haltflag is given. This means that incoming collections that contain duplicate IDs will not fail out.
Version 0.7.1¶
- Fixed bug where ALE’s without ‘Scan Filename’ fields could not parse correctly.
Version 0.7¶
The biggest change in 0.7 is the addition of collection format support.
.ccc, Color Correction Collections, can now be parsed and written. .cdl,
Color Decision Lists, can now be parsed and written. .ale
and .flex files now return a collection.
- New script flags:
- Adds
--checkflag to script, which checks all parsedColorCorrectsfor sane values, and prints warnings to shell - Adds
-d,--destinationflag to the script, which allows user to specify the output directory converted files will be written to. - Adds
--no-ouputflag to the script, which goes through the entire conversion process but doesn’t actually write anything to disk. Useful for troubleshooting, especially when combined with--check - Adds
--haltflag to the script, which halts on errors that can be resolved safely (such as negative slope or power values)
- Adds
Renames
ColorCollectionBasetoColorCollection, since it will be used directly by bothcccandcdl.Adds
parse_cccwhich returns aColorCollection.Adds
write_cccwhich writes aColorCollectionas acccfile.Adds
parse_cdlwhich returns aColorCollection.Adds
write_cdlwhich returns aColorCollectionas acdlfile.ColorCollectionis now a fully functional container class, with many attributes and methods.Added
ColorDecision, which stores either aColorCorrectionorColorCorrectionRef, and an optionalMediaRefAdded
ColorCorrectionRef, which stores a reference to aColorCorrectionAdded
parentattribute toColorCorrection.Calling
sop_nodeorsat_nodeon aColorCorrectionbefore attempting to set a SOP or Sat power now works.ColorCorrectioncdl_fileinit argument renamed toinput_file, which is now optional and able to be set after init.parse_ccandparse_rnh_cdlnow only yield a singleColorCorrection, not a single member list.Added dev-requirements.txt (contains
mock)All
determine_destmethods now take a seconddirectoryargument, which determines the output directory.Adds
sanity_checkfunction which prints values which might be unusual to stdout.parse_cdlandwrite_cdlrenamed toparse_rnh_cdlandwrite_rnh_cdlrespectively.member_resetmethods:ColorCorrectionnow has areset_membersmethod, which resets the class level member’s dictionary.MediaRefalso has areset_membersmethod, as doesColorCollectionreset_allfunction calls all of the abovereset_membersmethods at once.
- Renamed
cdl_fileargument: parse_cccdl_filearg renamed toinput_fileand now accepts a either a raw string or anElementTreeElementasinput_file.parse_rnh_cdlcdl_filearg renamed toinput_file.parse_aleedl_filearg renamed toinput_file.parse_flexedl_filearg renamed toinput_file.
- Renamed
- Python Structure Refactoring
- Moved
HALT_ON_ERRORinto theconfigmodule, which should now be referenced and set by importing the entireconfigmodule, and referencing or settingconfig.HALT_ON_ERROR - Script functionality remains in
cdl_convert.cdl_convert, but everything else has been moved out. AscColorSpaceBase,AscDescBase,AscXMLBaseandColorNodeBasenow live undercdl_convert.baseColorCollectionnow lives incdl_convert.collectionColorCorrection,SatNodeandSopNodenow live undercdl_convert.correctionColorDecision,ColorCorrectionRefandMediaRefnow live undercdl_convert.decision- All parse functions now live under
cdl_convert.parse - All write functions now live under
cdl_convert.write sanity_checknow live undercdl_convert.utilsreset_allnow lives under the main module
- Moved
Version 0.6.1¶
- Added
AscXMLBaseclass for nodes that can be represented by XML to inherit. - Suppressed scientific notation from being written out when writing files. Should now write out as close as Python accuracy allows, and the same number of digits.
write_ccnow writes out 100% correct XML using ElementTree.- Added tests for
write_cc, which brings our coverage to 100%
Version 0.6¶
Adds much greater ASC CDL XML compliance with the addition of many classes that represent node concepts in the CDL XML schema.
Moves
viewing_descandinput_descattributes and methods into the base classAscColorSpaceBase.Moved
descattribute and methods into the base classAscDescBase.Adds
ColorCollectionBaseclass for a basis of all collection type nodes (ColorCorrectionCollection,ColorDecisionList, etc).Adds
MediaRefclass which represents the MediaRef node of a ColorDecision. This class allows convenient handling of files given as media reference.Adds
HALT_ON_ERRORmodule variable which determines certain exception handling behavior. Exceptions that can normally be handled with default behavior (such as negative Slope or Power values) will be dealt with silently instead of stopping the program. Negative Slope and Power values, for example, will clip to 0.0.ColorCorrection(formallyAscCdl) class changes:- Renames
AscCdltoColorCorrection. - Adds class level member dictionary, which allows lookup of a
ColorCorrectioninstance by the unique ID. ColorCorrectionobjects now require a unique ID to be instantiated.- Removes
metadataattribute ofColorCorrection. - Moves SOP and SAT operations out of
ColorCorrectioninto their own classes, which are based onColorNodeBase. TheSatNodeandSopNodeclasses are still meant to be children ofColorCorrection. - Added
sop_nodeandsat_nodeattributes to access the childSatNodeandSopNode. - Removed
metadataattribute, splitting it into the inherited attributes ofinput_desc,viewing_descanddesc. descattribute is now fully fleshed out as a list of all encountered description fields.- Renamed
cc_idfield toid, shadowing the built inidwithin the class. - Slope, Offset and Power now return as a tuple instead of a list to prevent index assignment, appending and extending.
- Renames
parse_ccshould now parse a much greater variety of.ccfiles more accurately.- Now supports infinite Description fields
- Now supports Viewing and Input Description fields
- Significantly simplifies the function.
parse_flexhas been significantly simplified.Test Suite broken up into sub-modules.
Adds PyPy support.
Adds ReadTheDocs
Adds docs to build
Version 0.5¶
- Project is now structured according to Python packaging guidelines with
setup.pyetc. - Some
AscCdlattributes have been moved into dictionaries (Note that this was later reversed in release 0.6) - Refactors some parse functions to be less complex
- Makes
write_cdlmuch simpler and more pythonic.
Version 0.4.2¶
- Hotfix to fix
from __future__imports
Version 0.4¶
- Python 3 compatible
- More unit testing bug fixes and enhancements.
- Adds better type and exception handling for
AscCdlsetters. - Now sanitizes id fields of any characters they shouldn’t contain.
- Test suite runs on windows now
- Adds Travis-ci for continuous integration testing
parse_ccnow usesElementTreefor XML parsing