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

Audio separating #5502

Open
AnonymousRonin opened this issue Apr 21, 2024 · 3 comments
Open

Audio separating #5502

AnonymousRonin opened this issue Apr 21, 2024 · 3 comments
Assignees
Labels
💡 enhancement This issue describes an improvement, enhancement, or feature request for OpenShot

Comments

@AnonymousRonin
Copy link

I'm trying to determine if there is the ability to separate two audio tracks that are together in the original. It is a music track with radio traffic as well layed over the video. I am trying to separate the music from the radio traffic, want to change the music.

@AnonymousRonin AnonymousRonin added the 💡 enhancement This issue describes an improvement, enhancement, or feature request for OpenShot label Apr 21, 2024
@Colorjet3
Copy link
Collaborator

Currently not possible with OpenShot. Use something like Audacity to do it.

@Timwi
Copy link

Timwi commented May 18, 2024

This is actually super simple to do with ffmpeg:

ffmpeg -i inputfile.mp4 -map 0:a:0 -c copy audio_track_0.mp4

Change the 0:a:0 to 0:a:1, 0:a:2, etc., to extract each individual audio track. Then you can use the resulting mp4 files in OpenShot.

@AnonymousRonin
Copy link
Author

AnonymousRonin commented May 18, 2024 via email

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
💡 enhancement This issue describes an improvement, enhancement, or feature request for OpenShot
Projects
None yet
Development

No branches or pull requests

4 participants