-
Notifications
You must be signed in to change notification settings - Fork 6
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
Add the "Delay" Parameter Feature #40
Comments
I'll take a look at this tomorrow and see what can be done |
Hello, some news regarding this? |
Hey, sorry for the late response, this got list in my huge to do list spread over many projects. I was looking into the code, what you want to achieve can easily be done with custom command line commands. I can certainly add 29 conversions to the code base, but first we need to ensure that you're using the command to achieve exactly what you want. Generally best practice when it comes to negative/positive delays, this is done by the container itself. So if you was encoding your audio and putting it back into the container, you'd just feed the delay amount to the container/muxer and it would be in sync when you play it. This is why my default if you don't provide an output filename to Once you split a video/audio file apart, they are no longer relative to each other. So, somewhere this delay needs to be stored if you plan to put them back together. This is the default/best practice way that 99% of people would do it. However, what it appears you're asking for here is a way to essentially speed up/slow down the audio to match with the video. This is what the So to go over what we discussed: BUT none of the above is needed at all what so ever, if you are encoding audio from a souce, then putting it back in. You'd only need to feed the |
Look at the latest release, let me know if this solves your issue/concerns. Also, read in depth of the above to ensure you are doing what you'd need. As |
Hello, thanks for your explanations, I already tried your tool's last version and now the framerates' conversion If you could add a new option regarding the delays (+/-) values introduction, that would be great. Otherwise, please By te way, I see tools like the aforementioned "MeGUI" and another one (clever ffmpeg gui), have an additional "pitch correction" option (besides just a length related one) when dealing with framerate's conversions. So, I'm wondering if your tool Thanks. |
Hello, I'm wondering what do you think about it, please. |
I'll keep this tab open so I can look at this and give you a proper respone sometime tomorrow. |
@jlw4049
Hello, yesterday I needed to do some synchronization task with an audio file of certain movie, which has a "23,976" -af "adelay=1s:all=true" but despite it worked (3 silence seconds were added at the track's beginning), Do you know how should be added the above custom command in order it works properly? Or which one Thanks. |
Hello @Jack1789. I've been very very busy with other tools and work so I haven't done any work on what we talked about before. In general when you're doing something like this you'll want to do this in a couple steps. Step 1) You can use the GUI to do your frame rate conversion. Step 2) You will likely want to feed this command directly to FFMPEG since atm my tool doesn't really do a codec copy, it's for encoding only for almost all codecs. What you need to do here is a command like:
Those above steps should achieve your desired results. If you need to get ahold of me quicker than this you can contact me on discord |
@jlw4049 For the time being, I'm using the tool I mentioned before (MeGUI), which despite its limitation regarding converting framerates between "23,976<>24", with the help of an external command (-af "atempo=24/23.976"), can still be used with the desired results and it will all involve just a single process. I don't mind about the recoding process, since any framerate conversion task will imply that, but I do care about it being just one single process, instead having to deal with other tools, containers (MKV) or additional repacks or recodifications. I think since "MeGUI" can actually do the process correctly, your program should also be able to do it, but maybe it needs the relevant delay command to be applied properly. Thanks. |
I'm going to leave this open. Eventually I will add the delay add/strip features when time allows. I'm pretty busy so it'll be quite some time without some incentive to work on it. Once I finish up some projects I don't mind taking a look at this again though. |
Is your feature request related to a problem? Please describe.
After converting the frame rate of a dubbing track, I need to add a few seconds of delay at the
track's start, to get it correctly synchronized with the target movie's original audio track.
I tried to use the next custom command to do the job: -itsoffset
It didn't work.
Describe the solution you'd like
Adding the needed delay to the resultant converted track, will be enough to avoid having to use
another tool to do the job instead.
Describe alternatives you've considered
I tried with MeGUI tool, which has the aforementioned feature, and would have been perfect to do the job
straightforwardly, but for some reason, it lacks specifically the framerate conversion setting I'm needing: 24 <> 23,976.
And it won't allow to let the user enter a value manually, but just use one of the available ones.
Additional context
By the way, maybe you could add the "29,97" to the framerates' values list. And even an option
to input values manually.
Thanks in advance.
The text was updated successfully, but these errors were encountered: