@omnimedia/omnitool 1.1.0-51 → 1.1.0-52

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@omnimedia/omnitool",
3
- "version": "1.1.0-51",
3
+ "version": "1.1.0-52",
4
4
  "description": "open source video processing tools",
5
5
  "license": "MIT",
6
6
  "author": "Przemysław Gałęzki",
@@ -18,7 +18,6 @@ export class Playback {
18
18
 
19
19
  #controller = realtime()
20
20
  onTick = this.#controller.onTick
21
- onSeek = pub()
22
21
 
23
22
  audioContext = new AudioContext({sampleRate: 48000})
24
23
  audioGain = this.audioContext.createGain()
@@ -44,7 +43,6 @@ export class Playback {
44
43
  async seek(time: Ms) {
45
44
  this.pause()
46
45
  this.#playbackStart = time
47
- this.onSeek.publish()
48
46
  return await this.visualSampler.sample(this.timeline, time)
49
47
  }
50
48