fix: Updated nushell version.

This commit is contained in:
2025-12-29 13:40:39 -05:00
parent 66c36e6a42
commit c0878b0295
16 changed files with 145 additions and 85 deletions

View File

@@ -31,6 +31,6 @@ export def "streams audio" []: table<streams: table, format: record> -> table {
}
# Get the dimensions of a video stream
export def "dimensions" []: table<streams: table, format: record> -> record<width: int, height: int> {
export def "dimensions" []: record<width: int, height: int> -> record<width: int, height: int> {
$in | select width height
}