Files
nu-ffmpeg/examples/ffprobe.nu
2024-03-03 00:48:03 -05:00

10 lines
271 B
Nu
Executable File

#!/usr/bin/env nu
use ../ffprobe;
# Return a table from ffprobe
def main [] {
echo "> ffprobe https://sample-videos.com/video321/mp4/720/big_buck_bunny_720p_1mb.mp4"
ffprobe $'($env.FILE_PWD)/videos/sample-videos.com/video321/mp4/720/big_buck_bunny_720p_1mb.mp4'
}