-
-
Notifications
You must be signed in to change notification settings - Fork 1.4k
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
Switch between audio/video/subtitle tracks in preview #256
Comments
HTML5 audioTracks/videoTracks APISwitching between video/audio tracks is
Update2: Also works with: // https://chromestatus.com/feature/5748496434987008
// https://peter.sh/experiments/chromium-command-line-switches/
// https://chromium.googlesource.com/chromium/src/+/main/third_party/blink/renderer/platform/runtime_enabled_features.json5
app.commandLine.appendSwitch('enable-blink-features', 'AudioVideoTracks'); To change audio track: video.audioTracks[0].enabled = false;
video.audioTracks[1].enabled = true; To change video track: temp1.videoTracks[0].selected = false;
temp1.videoTracks[1].selected = true;
Drawbacks
Other alternatives
Generate tmp fileAn alternative not so elegant solution: allow generating a preview file from a user-specified audio and video track (ala convert to supported format) |
This would be amazing. I record 3 different audio tracks as an MKV file then remux them into an MP4 with OBS, but I can't seem to find an editor that allows me to listen to all 3 of them, trim the footage without deleting the 2nd & 3rd audio track, & not have to export with a quality loss. LosslessCut is the first one that I've seen that will trim the footage & keep the audio tracks. Now, I just need all 3 audio tracks to be able to be previewed. |
I concur, this feature would eliminate a second video player from my workflow. I think it would be great for a start to simply be able to select the track in the preview (without any fancy remuxing) |
is it really necessary to correlate object id with stream index? just list every track that can be accessed and let user choose which to play should be ok |
Switching audio tracks for playback would be very useful to cut segments for multiple translations. |
Still crossing my fingers intensively that it will soon be possible to playback multiple audio tracks at once, like you can in most editors and VLC. It will make rough cutting several hours of footage so many times easier, since I won't have to wait on proxy file generation. LLC runs video files like butter, even at several times speed. Much appreciated for this fantastic piece of software, mifi! |
I think it's not too hard to implement, and it's definitely one of the most requested features, so I think it will be one of the next features! |
Found this app recently, and it is EXACTLY what I was looking for...with the only drawback being the lack of playing multiple audio files, as mentioned above. Similar to @OrbanjoGaming, I record three tracks in OBS. If there is anyone else recording using OBS and looking for this, there is one workaround for new files until this gets implemented: Amazing work on this software; looking forward to this getting implemented! |
我昨天发现了这个工具,他真的让我的流程缩短了几百倍,也解放了我的硬盘. |
also with MediaSource for unsupported codecs
switcing between audio/video tracks implemented! |
In v3.61.0, if the video only has one audio track, I cannot select subtitle preview. |
thanks for reporting. that's a bug |
yes i fixed that bug too. will be out in the next version |
Any updates in regards to playing multiple audio tracks? |
I don't think the AudioTracks API in Chromium yet supports enabling multiple tracks. When that's supported it's a breeze, but i don't know if it's gonna happen any time soon |
Hi,
I often have to cut videos with subtitles enabled so I can make my cut start/stop positions as accurate as possible. Therefore I have to resort to using an external player which slows down my workflow a lot.
It'll be nice if we can also select any track embedded in the file (audio/video/subtitle) so it's shown in the preview window.
Even just the ability to see the subtitles would be great; I feel like people who work with subtitles will find it very useful.
Thanks for reading!
The text was updated successfully, but these errors were encountered: