mirror of
https://github.com/imputnet/cobalt.git
synced 2026-05-22 14:24:23 -05:00
[GH-ISSUE #420] Videos from cobalt have incorrect frame rate in VEGAS Pro #9076
Reference in New Issue
Block a user
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @cysjunk on GitHub (Apr 6, 2024).
Original GitHub issue: https://github.com/imputnet/cobalt/issues/420
bug description
VEGAS Pro reads any YouTube videos I download in Cobalt at an extremely high frame rate which makes it so that I can't edit the video.
reproduction steps
steps to reproduce the behavior:
screenshots

links
if applicable, add links that cause the issue. more = better.
platform
additional context
Cobalt issue or VEGAS issue? I've tried other downloaders and the video output seems to work fine in VEGAS, but not with Cobalt.
@bramaudi commented on GitHub (Apr 6, 2024):
Is your downloaded video are in webm format?
The downloaded webm video is missing the duration in it's metadata so media player will not be able to calculate the time duration, my current solution was just do stream copy locally with ffmpeg or something, with Linux we can quickly fixed this problem by running these simple command:
I'm not sure why cobalt not post-processing downloaded video yet.
@cysjunk commented on GitHub (Apr 6, 2024):
VEGAS doesn't support webm so I use mp4 format.
@wukko commented on GitHub (Apr 7, 2024):
vegas, just like all outdated software, can't calculate file length based on actual media data. this is why it gets confused.
this can be fixed by:
ffmpeg -i filehere.mp4 -c copy outfilehere.mp4