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

VideoCompress.getByteThumbnail extract the same frame at different position #275

Open
stephane-archer opened this issue Sep 26, 2024 · 0 comments

Comments

@stephane-archer
Copy link

final uint8list = await VideoCompress.getByteThumbnail(
  videopath,
  position: 0
);
final uint8list = await VideoCompress.getByteThumbnail(
  videopath,
  position: 10
);
final uint8list = await VideoCompress.getByteThumbnail(
  videopath,
  position: 100
);
final uint8list = await VideoCompress.getByteThumbnail(
  videopath,
  position: 1000
);

except position: 0 VideoCompress.getByteThumbnail returns the same frame each time on MacOS
it's not clear how VideoCompress.getByteThumbnail selects the frame to extract, does it use keyframe? the extracted keyframe doesn't match the position on macOS

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant