mirror of
https://github.com/sbrow/nu-ffmpeg.git
synced 2025-12-29 16:23:11 -05:00
10 lines
280 B
Nu
Executable File
10 lines
280 B
Nu
Executable File
#!/usr/bin/env nu
|
|
|
|
use ../ffprobe;
|
|
|
|
def main [] {
|
|
echo "# Return a table from ffprobe"
|
|
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'
|
|
}
|