claydrone / ipfs-video-frontend

The website front-end hosted on ipfs.video

Home Page:https://ipfs.video

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

IPFS video front-end

This is the IPFS video front-end hosted on https://ipfs.video

The basic idea is being able to play a video from IPFS directly or using one of the gateways available.

Development notes

To detect the type of MP4 embedded media, I did some reverse engineering to find the correct bytes for the different codecs embedded in the mp4 file.

Commands to do that include:

#!/bin/bash
echo avc1
mp4file --dump "$1" | grep AVCProfileIndication
mp4file --dump "$1" | grep profile_compatibility
mp4file --dump "$1" | grep AVCLevelIndication

echo mp4a
mp4file --dump "$1" | grep objectTypeId
mp4file --dump "$1" | grep AVCProfileIndication

About

The website front-end hosted on ipfs.video

https://ipfs.video


Languages

Language:Vue 87.6%Language:JavaScript 5.6%Language:HTML 3.2%Language:Shell 3.0%Language:SCSS 0.6%