Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Feature request] Denoise sample generation #527

Open
Bukethead opened this issue Jun 22, 2023 · 2 comments
Open

[Feature request] Denoise sample generation #527

Bukethead opened this issue Jun 22, 2023 · 2 comments

Comments

@Bukethead
Copy link

Bukethead commented Jun 22, 2023

Is your feature request related to a problem? Please describe.
An annoyance more than a problem, my feature request would save time, I have rendered whole videos at the improper denoise level and either need to reduce or increase it, re-upscaling the same video entirely with different denoise settings wastes time.

Describe the solution you'd like
Have the option to generate samples (short clips, possibly at different durations of the video) at each denoise level so the user can select the best level based on each instance of upscaling on a per video basis.

@Bukethead Bukethead changed the title [Feature request] *Fill in Title here* [Feature request] Denoise sample generation Jun 22, 2023
@AaronFeng753
Copy link
Owner

Right now software already has "video sampling" feature in the "additional settings" Tab, for now you can try that feature (I know that's not the exact same feature you requested)

@Nikanoru
Copy link

In the meantime I suggest you just use ffmpeg to cut out a short clip from your video file. It works perfectly for me, the command I use for example is:

ffmpeg -i "C:\Path\To\Movie\movie.mp4" -ss 00:00:00 -to 00:00:10 -c:v copy -c:a copy NameOfFile.mp4

In the example above ffmpeg would create a clip from the very start of the movie to 10 seconds.

Let's say you have a movie called Turtles.mp4 which is located in D:\Movies and you want to have a 20 seconds clip from the 00:30:00 to 00:30:20 you would change the command to:

ffmpeg -i "D:\Movies\Turtles.mp4" -ss 00:30:00 -to 00:30:20 -c:v copy -c:a copy TurtlesClip.mp4

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

3 participants