Skip to content

Commit fa73a1e

Browse files
committed
fix: remove ts
1 parent 1993b82 commit fa73a1e

File tree

1 file changed

+0
-6
lines changed

1 file changed

+0
-6
lines changed

videodb/client.py

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -196,8 +196,6 @@ def transcode(
196196
source: str,
197197
callback_url: str,
198198
mode: TranscodeMode = TranscodeMode.economy,
199-
start: int = None,
200-
end: int = None,
201199
video_config: VideoConfig = VideoConfig(),
202200
audio_config: AudioConfig = AudioConfig(),
203201
) -> None:
@@ -206,8 +204,6 @@ def transcode(
206204
:param str source: URL of the video to transcode, preferably a downloadable URL
207205
:param str callback_url: URL to receive the callback
208206
:param TranscodeMode mode: Mode of the transcoding
209-
:param int start: Start timestamp of the video to transcode (optional)
210-
:param int end: End timestamp of the video to transcode (optional)
211207
:param VideoConfig video_config: Video configuration (optional)
212208
:param AudioConfig audio_config: Audio configuration (optional)
213209
:return: None
@@ -219,8 +215,6 @@ def transcode(
219215
"source": source,
220216
"callback_url": callback_url,
221217
"mode": mode,
222-
"start": start,
223-
"end": end,
224218
"video_config": video_config.__dict__,
225219
"audio_config": audio_config.__dict__,
226220
},

0 commit comments

Comments
 (0)