Video transcoding - NFT Marketplace - IPFS protocol

The First Cloud Video Transcoding Service for NFT Marketplaces.

Start Transcoding
No credit card required

Create Decentralized apps with IPFS.

Store your media files forever thanks to these awesome Pinning services

Read how to store on IPFS →

Create unique NFT Marketplaces using IPFS Network.

Foundation & KnownOrigin use Coconut to transcode digital video art

Video transcoding - Foundation NFT Marketplace

The simplest Video Transcoding API.

Store your video content on the IPFS network in less than 20 lines of code

Enjoy powerful libraries to harness cloud video encoding for your project
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
// Our mission at Coconut is to make cloud video transcoding simple
const coconut = new Coconut.Client('api-key');

coconut.notification = {
  'url': 'https://app/api/coconut/webhook'
};

coconut.storage = { 
  'service': 'ipfs_pinata',
  'credentials': { 'api_key': 'xxx', 'secret_api_key': 'xxx' }
};

coconut.Job.create({
  'input': { 'url': 'https://cdn/path/file.mp4' },
  'outputs': {
    'mp4:1080p': { 'path': '/1080p.mp4' }
  }
}, function(job, err) {
...
});