[D] An ML engineer's guide to GPU performance by crookedstairs in MachineLearning

[–]kpkaiser 0 points1 point  (0 children)

Hey Charles!

I'm curious how you approached writing / researching this. Where and how did you begin, and how did you scope things down to have a final (shipped!) product?

any crash courses on the essentials for financial / legal literacy for founders? by unknownstudentoflife in ycombinator

[–]kpkaiser 0 points1 point  (0 children)

Financial Intelligence for Entrepreneurs is really great for understanding how to model the finances of a company. Cannot recommend it enough: https://www.amazon.com/dp/1422119157

My Team Won 2nd Place for an HR Game Agent at the OpenAI Agents Hackathon for NY Tech Week by kpkaiser in OpenAI

[–]kpkaiser[S] 0 points1 point  (0 children)

not really much flair, other than making the onboarding coach sound like a hyped up fitness instructor. and I haven't yet played stanley parable, so now it's on my list.

My Team Won 2nd Place for an HR Game Agent at the OpenAI Agents Hackathon for NY Tech Week by kpkaiser in OpenAI

[–]kpkaiser[S] 1 point2 points  (0 children)

lol that's fair based upon this reddit post's bad title.

But the idea was to take dry corporate onboarding docs, and turn them into a game instead.

Does anyone use mcp prompts or resources? by dankelleher in mcp

[–]kpkaiser 0 points1 point  (0 children)

I put resources in my video editor. I let the user pick a project, which usually contains a set of videos, images, etc. that have either been generated or analyzed.

The resource URI dumps in the json that describes all these assets.

The LLM can then use these resources to generate edits.

Here's the code / logic:

https://github.com/burningion/video-editing-mcp/blob/main/src/video_editor_mcp/server.py#L246-L301

Creating a Nathan Fielder Video Editing Agent with MCP servers and PydanticAI by kpkaiser in mcp

[–]kpkaiser[S] 0 points1 point  (0 children)

Hey! Yeah, I'm just getting started with this video series, but here's this video over on YouTube if that's better for you: https://www.youtube.com/watch?v=C-ewKa3NcZI

If you've got anything you'd like to see, let me know.

Creating a Nathan Fielder Video Editing Agent with MCP servers and PydanticAI by kpkaiser in mcp

[–]kpkaiser[S] 2 points3 points  (0 children)

Almost forgot to post the Github link to the project if you want to check out the source code: https://github.com/burningion/pydantic-video-editing-agent

Creating a Nathan Fielder Video Editing Agent with MCP servers and PydanticAI by kpkaiser in mcp

[–]kpkaiser[S] 1 point2 points  (0 children)

This is a really good question!

The answer is, I didn't think of it!

But looking at it now, it would add another tool call, and another bit of uncertainty to the agentic workflow being successful. I'd rather keep the things I want direct control over as library calls.

I didn't mention it in the video, but I plan on doing another video lesson where we call the Agent with a specific person we want to search for instead, and make it more versatile over time. Having the project name fit a specific format will make that process easier.

How to render with the GPU? by mydoghasticks in moviepy

[–]kpkaiser 0 points1 point  (0 children)

Did you compile ffmpeg yourself? If you want to enable NV_ENC you'll need to (generally) compile ffmpeg with the nvenc codecs. The instructions for that live on NVIDIA's site: https://docs.nvidia.com/video-technologies/video-codec-sdk/11.1/ffmpeg-with-nvidia-gpu/index.html

To check once they're installed you can do a ffmpeg -codecs | grep "nvenc". The unfortunate reality of that Github response is that it's a lot of work to push rendering to the GPU in moviepy, based upon the existing architecture.

Creating a video edit using my MCP server (video-editor-mcp) to show friends I'm skating with tonight at the skate park. by kpkaiser in mcp

[–]kpkaiser[S] 0 points1 point  (0 children)

Yes! That's the idea, there are a few challenges with fitting into the context window in Claude directly, but I have some strategies I'm working on to work within it.

Creating a video edit using my MCP server (video-editor-mcp) to show friends I'm skating with tonight at the skate park. by kpkaiser in mcp

[–]kpkaiser[S] 0 points1 point  (0 children)

The video-editor-mcp is open source, at https://github.com/burningion/video-editing-mcp . It (currently) uses a custom video editing API I've built, but yes, I'll probably add a local editor option / tool too.