File tree Expand file tree Collapse file tree 1 file changed +0
-6
lines changed Expand file tree Collapse file tree 1 file changed +0
-6
lines changed Original file line number Diff line number Diff line change @@ -196,8 +196,6 @@ def transcode(
196
196
source : str ,
197
197
callback_url : str ,
198
198
mode : TranscodeMode = TranscodeMode .economy ,
199
- start : int = None ,
200
- end : int = None ,
201
199
video_config : VideoConfig = VideoConfig (),
202
200
audio_config : AudioConfig = AudioConfig (),
203
201
) -> None :
@@ -206,8 +204,6 @@ def transcode(
206
204
:param str source: URL of the video to transcode, preferably a downloadable URL
207
205
:param str callback_url: URL to receive the callback
208
206
: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)
211
207
:param VideoConfig video_config: Video configuration (optional)
212
208
:param AudioConfig audio_config: Audio configuration (optional)
213
209
:return: None
@@ -219,8 +215,6 @@ def transcode(
219
215
"source" : source ,
220
216
"callback_url" : callback_url ,
221
217
"mode" : mode ,
222
- "start" : start ,
223
- "end" : end ,
224
218
"video_config" : video_config .__dict__ ,
225
219
"audio_config" : audio_config .__dict__ ,
226
220
},
You can’t perform that action at this time.
0 commit comments