Logan King

Results 64 comments of Logan King

@iwasthesword > Revert [this change](https://github.com/m1guelpf/yt-whisper/pull/28/commits/c8487a0c55dda3bcd208c97360867d5c4fd68d10#diff-45bec21c01438b045c4e98e822e1f6def41c40982e4218be668879a64b7cbee8L7) as it was giving me error ModuleNotFoundError: No module named 'utils' - The reverted change is the only commit in this PR. Did you need...

@iwasthesword > I'm using as instructed in the README, install via github then yt_whisper Then that installs whatever version @m1guelpf has released on pip. Not what is in this unmerged...

https://github.com/sloganking/codevis/issues/19#issuecomment-1294498993 > I recommend running with the flags that increase verbosity, then you can see where it struggles @Byron Which flags are you talking about? > As an anonymous mmap...

https://github.com/sloganking/codevis/pull/11#issuecomment-1237559206 > Saving the image as png also takes a couple of additional (real) memory gigabytes as it compresses the image buffer into memory first, while other formats can flush...

Apparently text rendering from font files seems like an impossibly complex nightmare. But having codevis make text readable could be done with bitmap fonts like [unifont-bitmap](https://crates.io/crates/unifont-bitmap). `unifont-bitmap` doesn't offer various...

@FlareFlo Images can now be made readable with the `--readable` flag in release `v0.6.0`

I now see `impl> for FlacTag` https://github.com/TianyiShi2001/audiotags/blob/2fa3f6c0d2d45d471a90b4c68ffa5c5cc8fd36a8/src/components/flac_tag.rs#L8-L40 Which I tried to use via ```rust fn set_duration(file: &Path, duration: f64) { use audiotags::*; let tag = Tag::new().read_from_path(file).unwrap(); let mut any_tag =...

I see `FlacTag::duration()` https://github.com/TianyiShi2001/audiotags/blob/2fa3f6c0d2d45d471a90b4c68ffa5c5cc8fd36a8/src/components/flac_tag.rs#L127-L131 Is returned from dividing the number of samples from the sample rate ```rust s.total_samples as f64 / f64::from(s.sample_rate) ``` So it might make since that you...

ffmpeg seems to be able to do that via `ffmpeg -i input.flac -c:v copy -c:a flac output.flac`. https://stackoverflow.com/questions/60653531/ffmpeg-flac-audio-file-duration-in-metadata-is-0

I am not sure if this library currently offers a different way to prorate subscriptions, or just a way to view if they are prorated. As https://docs.rs/async-stripe/0.22.2/stripe/struct.RetrieveUpcomingInvoice.html#structfield.subscription_prorate does exist.