23        uint startFrame = this->varStartFrame()->getValue();
 
   24        uint endFrame = this->varEndFrame()->getValue();
 
   26        uint frame = this->inFrameNumber()->getValue();
 
   28        uint stride = this->varStride()->getValue();
 
   30        if (frame >= startFrame && frame <= endFrame)
 
   32            if ((frame - startFrame) % stride == 0)
 
 
   42        uint num = this->inFrameNumber()->getValue();
 
   43        uint stride = this->varStride()->getValue();
 
   47        if (this->varReordering()->getValue()){
 
   51        std::string prefix = this->varPrefix()->getValue();
 
   53        auto path = this->varOutputPath()->getValue().path();
 
   55        std::stringstream ss; ss << index;
 
   58        std::string filename = path.string() + 
"\\" + prefix + ss.str();