-
Notifications
You must be signed in to change notification settings - Fork 166
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
Audio/Video out of sync #78
Comments
How many are you concatenating? How long is the delay, ms or seconds? If the length of the audio track of the videos doesn't match exactly the length of the video track then this will happen. |
I'm concatenating around 10 videos. The delay reach almost a second. Yhea, that's exactly what's happening. Recording videos from phone camera can give a different video/audio length file and it would be really nice to have some option for the transcoder to take care of this problem since could be a common use of appending videos from phone camera. |
You can maybe work around it by trimming your audio data source to match the video counter part:
(I didn't test this code) |
@cbernier2 in this case I will have to split the video and audio in two different files before apply this code. I think appending videos should somehow apply a fix to avoid out of sync problem automatically since it's a common practice. |
@buntupana You don't have to split the video and audio, use the same file and by specifying TrackType.AUDIO, the transcoder will know to apply the Trim to only the audio. |
@cbernier2 Hi, I have the exact same problem as @buntupana, as my audio gets out of sync more and more, the more files I append |
@gaborSomogyvari finally I decided to switch to a ffmpeg library |
(Pasted to all my answers today: it's been a long time since my last issues review. I am sorry about the delay and I know you likely have moved on by now. Still, I'm going to answer where I can) Sorry to hear about this issue. Can anyone provide two files that, if concatenated, create the out-of-sync problem? |
using version: 0.9.0
I'm concatenating several videos and as a result I'm getting a video with a big sync delay with audio. Videos are taken from camera using CameraView library. I'm aware that a video recorded by phone camera usually has audio/video different lengths and that that is provoking the problem..but shouldn't be the transcoder taking care of it.
The text was updated successfully, but these errors were encountered: