Remove time_start metadata when using synchronize filter

This commit is contained in:
Romain Neutron 2013-11-28 18:39:28 +01:00
commit 7ede8579c6
2 changed files with 2 additions and 1 deletions

View file

@ -4,6 +4,7 @@ CHANGELOG
* 0.4.2 (xx-xx-xx)
* Add Rotate filter.
* Remove time_start metadata when using synchronize filter
* 0.4.1 (11-26-2013)

View file

@ -39,6 +39,6 @@ class SynchronizeFilter implements VideoFilterInterface
*/
public function apply(Video $video, VideoInterface $format)
{
return array('-async', '1');
return array('-async', '1', '-metadata:s:v:0', 'start_time=0');
}
}