Tag

DotNetCore

3 stories
J
Joynal Abedin

Integrating Runway ML API in .NET: a complete guide

Runway ML is one of the leading AI video generation platforms. It gives developers a REST API to generate videos from text prompts or images — no GPU infrastructure required. This guide covers everything you need to integrate Runway ML into a .NET application: what models are available, how pricing works, what the API flow looks like, and how to handle long-running video generation jobs.

82
Integrating Runway ML API in .NET: a complete guide
J
Joynal Abedin

How to Upload Images from a .NET Backend to Cloudflare R2 and Store the Image URL

Modern applications often need to store user-uploaded images such as profile pictures, food photos, receipts, invoices, or product images. While storing files directly on your web server works initially, it becomes difficult to manage as your application grows. A better solution is to use cloud object storage. Cloudflare R2 is a cost-effective, scalable object storage service that is compatible with Amazon S3 APIs and provides global access to uploaded files.

121
How to Upload Images from a .NET Backend to Cloudflare R2 and Store the Image URL
J
Joynal Abedin

C# Properties, Class & Method

A property is like a combination of a variable and a method, and it has two methods: a get and a set method: C# also provides a way to use short-hand / automatic properties, where you do not have to define the field f...

65