예제 #1
0
파일: Timecode.php 프로젝트: jmoati/ffmpeg
 /**
  * @param Timecode $timecode
  *
  * @return Timecode
  */
 public function subtract(Timecode $timecode) : Timecode
 {
     $this->fromSeconds($this->getSeconds() - $timecode->getSeconds());
     return $this;
 }