File tree Expand file tree Collapse file tree 1 file changed +15
-0
lines changed Expand file tree Collapse file tree 1 file changed +15
-0
lines changed Original file line number Diff line number Diff line change @@ -18,6 +18,7 @@ A python tool for fetching thousands of videos fast from a Youtube channel along
1818- [ Basic Usage (Python API)] ( #basic-usage-python-api )
1919- [ Using Different Fetchers] ( #using-different-fetchers )
2020- [ Retreive Different Languages] ( #retreive-different-languages )
21+ - [ Fetching Only Manually Created Transcripts] ( #fetching-only-manually-created-transcripts )
2122- [ Exporting] ( #exporting )
2223- [ Other Methods] ( #other-methods )
2324- [ Proxy Configuration] ( #proxy-configuration )
@@ -193,6 +194,20 @@ ytfetcher from_channel -c TheOffice -m 50 -f csv --print --languages tr en
193194
194195---
195196
197+ ## Fetching Only Manually Created Transcripts
198+
199+ ` ytfethcer ` allows you to fetch ** only manually created transcripts** from a channel which allows you to get more precise transcripts.
200+
201+ ``` python
202+ fetcher = YTFetcher.from_channel(channel_handle = " TEDx" , manually_created = True ) # Set manually_created flag to True
203+ ```
204+
205+ You can also easily enable this feature with ` --manually-created ` argument in CLI.
206+
207+ ``` bash
208+ ytfetcher from_channel -c TEDx -f csv --manually-created
209+ ```
210+
196211## Exporting
197212
198213Use the ` Exporter ` class to export ` ChannelData ` in ** csv** , ** json** , or ** txt** :
You can’t perform that action at this time.
0 commit comments