Skip to content

Commit

Permalink
Change output from .mkv to .mp4
Browse files Browse the repository at this point in the history
  • Loading branch information
TheWicklowWolf authored Oct 20, 2023
1 parent ed1f4b5 commit d21513d
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions src/ChannelTube.py
Original file line number Diff line number Diff line change
Expand Up @@ -187,7 +187,7 @@ def download_video(self, video, channel_folder_path):
"quiet": False,
"writethumbnail": True,
"progress_hooks": [self.progress_callback],
"merge_output_format": "mkv",
"merge_output_format": "mp4",
"postprocessors": [
{
"key": "EmbedThumbnail",
Expand All @@ -213,11 +213,10 @@ def progress_callback(self, d):

def master_queue(self):
try:
logger.warning("Sync Task started at: " + datetime.datetime.now().strftime("%d-%m-%y %H:%M:%S"))
logger.warning("Sync Task started...")
for channel in self.req_channel_list:
logging.warning("Looking for channel Videos on YouTube: " + channel["Name"])
vid_list = self.get_list_of_videos(channel)
logging.warning("Got Video List: " + channel["Name"])
logging.warning("Starting Downloading List: " + channel["Name"])
self.check_and_download(vid_list, channel)
logging.warning("Finished Downloading List: " + channel["Name"])
Expand Down

0 comments on commit d21513d

Please sign in to comment.