question-mark
Stuck on an issue?

Lightrun Answers was designed to reduce the constant googling that comes with debugging 3rd party libraries. It collects links to all the places you might be looking at while hunting down a tough bug.

And, if you’re still stuck at the end, we’re happy to hop on a call to see how we can help out.

[Bug] missing metadata

See original GitHub issue

my code

After messing around for awhile I learned that you have to use --start-fullscreen to get a full capture of the page you want to record. Video outputs, plays, however it seems to missing the “end time”. Any idea how I would go about fixing this?

Screenshot of playback bar in vlc

Issue Analytics

  • State:closed
  • Created 2 years ago
  • Reactions:1
  • Comments:8 (2 by maintainers)

github_iconTop GitHub Comments

6reactions
InsideBSITheSecondcommented, Sep 21, 2021

I fixed this by piping it to a ffmpeg instead of an fs stream You do that by doing (this is assuming an audio stream) (and you need to have ffmpeg binaries installed)

const { exec } = require("child_process");
ffmpeg = exec(`ffmpeg -y -i - output.wav`);
stream.pipe(ffmpeg.stdin);
[[...stuff...]]
stream.unpipe(ffmpeg);
ffmpeg.kill();

might be unnecessary to unpipe but since it’s in my code and it works… ¯\(ツ)

Read more comments on GitHub >

github_iconTop Results From Across the Web

Calculate Order API Bug (Missing Metadata) - Square Developer
There seems to be a bug in /v2/orders/calculate regarding metadata in that it accepts metadata on line items but does not return metadata...
Read more >
[BUG] Missing metadata in `read_metadata` · Issue #5 - GitHub
I'm working on downloading metadata from recount3, and there are a number of studies for which read_metadata does not appear to be working....
Read more >
[bug] Missing Metadata in some instance of a workflow - Operate
I have started an instance from Zeebe Modeler 0.9.1 and look at the result in Operate 0.23.0. I see the Metadata of the...
Read more >
Reocurring error with missing metadata files
2) i am having problems with metadatafiles (.dll) suddenly missing. Most of the time it can be fixed by deleting the bin/ &...
Read more >
17902: Question theme error: Missing metadata (Type: M)
View Issue Details ... This bug affects 1 person(s). 6. ID, Project, Category, View Status, Date ...
Read more >

github_iconTop Related Medium Post

No results found

github_iconTop Related StackOverflow Question

No results found

github_iconTroubleshoot Live Code

Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free

github_iconTop Related Reddit Thread

No results found

github_iconTop Related Hackernoon Post

No results found

github_iconTop Related Tweet

No results found

github_iconTop Related Dev.to Post

No results found

github_iconTop Related Hashnode Post

No results found