Scrub

Results 339 comments of Scrub

> If you right-click the Icon, you can toggle between globally enabled and globally disabled I did not know that was possible, it would be nice if it was documented...

In order to achieve this, we should probably move the current file extension guessing from CLI to Core so we aren't hard coding in the enqueuer: https://github.com/lay295/TwitchDownloader/blob/1afcc3ce2166ab128cb6ca0463fae46acc2e59b5/TwitchDownloaderCLI/Modes/DownloadVideo.cs#L50-L58 https://github.com/lay295/TwitchDownloader/blob/1afcc3ce2166ab128cb6ca0463fae46acc2e59b5/TwitchDownloaderWPF/WindowQueueOptions.xaml.cs#L477-L480

FFmpeg uses the file extension to automatically determine several things.

After #998, we may as well add the "worst" keyword to the enqueuer as well.

I compared the gunshots of a VOD in the Twitch player and a cropped download in Sony Vegas 17.0 at 0.25x and found no desync.

> Had the same issue with some media players having a desynchronized audio, as well as some video editors: Davinci Resolve worked fine but with everything else I'd have to...

> I can't fully read C#, I'm C++ dev, I saw this ticket already two times, and there still not solution. Maybe it's problem with API. Unfortunately I can only...

> I CTRL-F'd the video downloader cs and shoddily fixed this by changing "FromSeconds" to "FromMilliseconds" in block shown below. Its only a work-around, only possible to crop start time,...

> This issue happens because `TwitchDownloader` splits the compressed video outside of I-frames (in copy mode), and doesn't recode the affected GOPs My proposed solution is two-fold: 1. Have an...

> 1. Have an option to round the trim times to whole ts files > 2. When trimming in precise mode, use FFmpeg to re-encode the first/last ts files, then...