{"id":24167443,"url":"https://github.com/apollo199999999/redditvideogenerator","last_synced_at":"2025-09-20T11:32:45.237Z","repository":{"id":64157677,"uuid":"568703073","full_name":"Apollo199999999/RedditVideoGenerator","owner":"Apollo199999999","description":"Generate r/AskReddit Reddit videos and upload them to YouTube automatically","archived":false,"fork":false,"pushed_at":"2023-08-25T10:24:11.000Z","size":175976,"stargazers_count":8,"open_issues_count":0,"forks_count":0,"subscribers_count":2,"default_branch":"main","last_synced_at":"2023-08-25T12:42:05.456Z","etag":null,"topics":["api","bot","generator","reddit","video","youtube"],"latest_commit_sha":null,"homepage":"https://clickphase.vercel.app/redditvideogenerator","language":"C#","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"other","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/Apollo199999999.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE.txt","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2022-11-21T08:27:46.000Z","updated_at":"2023-06-21T09:12:17.000Z","dependencies_parsed_at":"2023-01-15T01:00:40.653Z","dependency_job_id":null,"html_url":"https://github.com/Apollo199999999/RedditVideoGenerator","commit_stats":null,"previous_names":[],"tags_count":2,"template":null,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Apollo199999999%2FRedditVideoGenerator","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Apollo199999999%2FRedditVideoGenerator/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Apollo199999999%2FRedditVideoGenerator/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Apollo199999999%2FRedditVideoGenerator/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Apollo199999999","download_url":"https://codeload.github.com/Apollo199999999/RedditVideoGenerator/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":233660098,"owners_count":18710026,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["api","bot","generator","reddit","video","youtube"],"created_at":"2025-01-12T21:13:48.120Z","updated_at":"2025-09-20T11:32:35.217Z","avatar_url":"https://github.com/Apollo199999999.png","language":"C#","funding_links":[],"categories":[],"sub_categories":[],"readme":"# RedditVideoGenerator\n\n**NOTE: Since some files in the repository utilises Git LFS to be pushed to GitHub, please refrain from downloading, cloning, or forking this repository in order to save bandwidth.**\n\nProject site: https://clickphase.vercel.app/redditvideogenerator\n\n## Overview\n\nRedditVideoGenerator - Generate r/AskReddit Reddit videos and upload them to YouTube automatically\n\n![RedditVideoGenerator screenshot](https://user-images.githubusercontent.com/60572589/208618854-bfa87369-ed00-42fe-b545-7fab2c2db273.png)\n\nRedditVideoGenerator is able to fully generate a 15 minute Reddit video, with background music courtesy of Kevin Macleod, a thumbnail image for YouTube, as well as a title and description for YouTube, all fully autonomously.\n\n## Rationale\n\nThis recent trend in Reddit Text-To-Speech Videos consists (usually) of a very simple formula:\n\n1) A Reddit post is selected\n2) A sentence of text from one of the comments is revealed.\n3) Text To Speech reads out said sentence.\n4) Once the Text To Speech is complete, the next sentence of text is revealed.\n5) Repeat till the whole comment has been read out\n6) A transition video is played\n7) Move on to the next comment  \n8) Repeat steps 2-7 till you have a long enough video\n\nAs the format of this process is mostly unchanged, it can therefore be automated.\n\n## Samples\n\n### Sample video generated by RedditVideoGenerator (click on the image to play the video):\n\n[![Sample video](https://user-images.githubusercontent.com/60572589/208622845-19133ee2-92c6-4578-b752-bba466a137a9.png)](https://www.youtube.com/watch?v=0_h4B9_SXWU)\n\n### Sample thumbnail generated by RedditVideoGenerator:\n\n![Sample Thumbnail](https://user-images.githubusercontent.com/60572589/208621038-0706de5c-6945-4f6d-925e-a48c491b9388.png)\n\n## How video generation works\n\n1) RedditVideoGenerator queries the Reddit API to get a random top daily post\n2) Details about the post are fed into the TitleCard control, and an image is generated from the control\n3) The post title is then fed into Microsoft's C# Text-To-Speech API (System.Speech), which generate a wave audio file.\n4) The image and audio are then combined to form a video using FFmpeg\n5) RedditVideoGenerator then queries Reddit API to get the top comments from the post\n6) Details about each comment are fed into the CommentCard control\n7) The comment body is then split into sentences, and for each sentence, an image file is generated using the CommentCard control, while a wave audio file is generated from the sentence being fed into Microsoft's C# Text-To-Speech API\n8) The image and audio are then combined to form a video using FFmpeg\n9) All of the videos generated per sentence are then concatenated using FFmpeg to form a comment video\n10) This process is then repeated for each comment, until the video duration is 15 minutes\n11) The title video and comment videos are concatenated using FFmpeg, with transitions and an outro, from the Resources folder, being included in the video as well.\n12) Background music is then generated using music made by Kevin Macleod, and is then added to the video\n13) The video thumbnail is then generated using the ThumbnailImage control\n14) If the user has indicated that they want to upload the video to YouTube, RedditVideoGenerator queries the YouTube API and signs in to the user's Google account using OAuth 2.0. **Note that video uploading may not always be successful, as there is a daily quota limit for the number of videos that RedditVideoGenerator can upload to YouTube.** For details about how RedditVideoGenerator utilises data associated with your YouTube channel, view our [privacy policy](https://github.com/Apollo199999999/RedditVideoGenerator/blob/main/PRIVACYPOLICY.md).\n\n## How to use\n\nTo use RedditVideoGenerator, simply download and install the latest version of RedditVideoGenerator from [releases](https://github.com/Apollo199999999/RedditVideoGenerator/releases) and run it. RedditVideoGenerator will automatically start generating the Reddit video after being run. \n\n## Customisation\n\nRedditVideoGenerator currently does not offer any built-in customisation options for the generated Reddit videos. However, if you wish to edit the resources used for generating the video (such as the images used in the video), you can modify them in-place in RedditVideoGenerator's resources folder, located in the same directory where you installed RedditVideoGenerator. If you do decide to modify those images, ensure that the file name(s) of the new image(s) are the same as the file name(s) of the old images. However, **I do not recommend modifying the videos in the resources directory (such as the outro and transition videos),** as those videos are encoded using a specific video and audio encoder in order to work with RedditVideoGenerator. Modifying those videos may result in unwanted outcomes. You can always modify the generated Reddit video in a video editor.\n\n## Minimum system requirements\n\n* At least 1GB of free space\n\n* Windows 10 or Windows 11 (I have not tested RedditVideoGenerator with Windows 7 or Windows 8.1, so use RedditVideoGenerator at your own risk if you are using those operating systems) \n\n## Privacy Policy\n\nYou can view RedditVideoGenerator's privacy policy here: https://github.com/Apollo199999999/RedditVideoGenerator/blob/main/PRIVACYPOLICY.md\n\n## License\n\nRedditVideoGenerator is licensed under the MIT License. You can view it here: https://github.com/Apollo199999999/RedditVideoGenerator/blob/main/LICENSE\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fapollo199999999%2Fredditvideogenerator","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fapollo199999999%2Fredditvideogenerator","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fapollo199999999%2Fredditvideogenerator/lists"}