Minimal example: transcode from MP3 to WMA:
ffmpeg -i input.mp3 output.wma
You can get the list of supported formats with:
ffmpeg -formats
You can get the list of installed codecs with:
import Image, { ImageProps } from 'next/image'; | |
import { imageBuilder } from './sanity'; | |
import type { SanityImageSource } from '@sanity/image-url/lib/types/types'; | |
interface MyImageProps extends Omit<ImageProps, 'src'> { | |
src: SanityImageSource; | |
quality?: number; | |
blur?: number; | |
} |
send : Cmd Msg | |
send = | |
Http.post | |
{ url = "/subscribers" | |
, body = | |
[ ( "email", JE.string "[email protected]" ) ] | |
|> JE.object | |
|> Http.jsonBody | |
, expect = Http.expectWhatever EmailCb | |
} |