We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0abe885 commit 6881cbaCopy full SHA for 6881cba
processors/visualisation/download_tiktok.py
@@ -161,6 +161,7 @@ class TikTokImageDownloader(BasicProcessor):
161
"options": {
162
"thumbnail": "Video Thumbnail",
163
"music": "Music Thumbnail",
164
+ "author_avatar": "User avatar"
165
},
166
"default": "thumbnail"
167
}
@@ -217,6 +218,8 @@ def process(self):
217
218
url_column = "thumbnail_url"
219
elif self.parameters.get("thumb_type") == "music":
220
url_column = "music_thumbnail"
221
+ elif self.parameters.get("thumb_type") == "author_avatar":
222
+ url_column = "author_avatar"
223
else:
224
self.dataset.update_status("No image column selected.", is_final=True)
225
self.dataset.finish(0)
0 commit comments