It's rare, but sometimes the Orange Site is... good?
@a That command is a bit long, the shorter `ffmpeg -v quiet -f data -i cure.txt -map 0 -f data -` works just as well.
@Suiseiseki Thanks! I'm glad we can iterate on this.
@a @Suiseiseki
Going to create an alias in my shell so that cat does this. 😌
@John @a An alias won't work - you'll need to add a bash function; cat() { ffmpeg -v quiet -f data -i "$1" -map 0 -f data - ; }
Unfortunately, such trivial function doesn't operate as a concatenate program, to achieve that, you need to add a bash loop as below;
cat() { for argument ; do ffmpeg -v quiet -f data -i "$argument" -map 0 -f data - ; done ; }
Unfortunately, such trivial function doesn't operate as a concatenate program, to achieve that, you need to add a bash loop as below;
cat() { for argument ; do ffmpeg -v quiet -f data -i "$argument" -map 0 -f data - ; done ; }
@Suiseiseki this is a peek Mastodon reply and I mean that in the nicest way possible