It's rare, but sometimes the Orange Site is... good?
Conversation
Notices
-
Embed this notice
Adam Harvey (a@fedi.lawngno.me)'s status on Wednesday, 13-Dec-2023 07:53:19 JST Adam Harvey
- 翠星石, Doughnut Lollipop 【記録係】:blobfoxgooglymlem: and snacks and 3 others like this.
-
Embed this notice
Haelwenn /элвэн/ :triskell: (lanodan@queer.hacktivis.me)'s status on Wednesday, 13-Dec-2023 07:53:12 JST Haelwenn /элвэн/ :triskell:
@a "The design is very human" -
Embed this notice
Frost「:therian:|霜の狼|人面獣心」 (frost@chitter.xyz)'s status on Wednesday, 13-Dec-2023 08:00:30 JST Frost「:therian:|霜の狼|人面獣心」
@lanodan @a That must explain why it can be confusing sometimes – I'm not human! :3
Haelwenn /элвэн/ :triskell: likes this. -
Embed this notice
мрман (Колорадо) придурок (mrman@noagendasocial.com)'s status on Thursday, 14-Dec-2023 13:48:31 JST мрман (Колорадо) придурок
-
Embed this notice
翠星石 (suiseiseki@freesoftwareextremist.com)'s status on Friday, 15-Dec-2023 04:09:23 JST 翠星石
@lanodan I'm finding myself able to enter more and more ffmpeg commands without looking at the manual ですぅ. -
Embed this notice
翠星石 (suiseiseki@freesoftwareextremist.com)'s status on Friday, 15-Dec-2023 04:11:43 JST 翠星石
@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. -
Embed this notice
John (john@chaos.social)'s status on Wednesday, 19-Feb-2025 15:57:57 JST John
@a @Suiseiseki
Going to create an alias in my shell so that cat does this. 😌 -
Embed this notice
Adam Harvey (a@fedi.lawngno.me)'s status on Wednesday, 19-Feb-2025 15:57:58 JST Adam Harvey
@Suiseiseki Thanks! I'm glad we can iterate on this.
-
Embed this notice
翠星石 (suiseiseki@freesoftwareextremist.com)'s status on Wednesday, 19-Feb-2025 15:58:40 JST 翠星石
@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 ; } -
Embed this notice
翠星石 (suiseiseki@freesoftwareextremist.com)'s status on Wednesday, 19-Feb-2025 16:41:10 JST 翠星石
@John This is the Fediverse and I am posting on BloatFE via Pleroma. -
Embed this notice
John (john@chaos.social)'s status on Wednesday, 19-Feb-2025 16:41:12 JST John
@Suiseiseki this is a peek Mastodon reply and I mean that in the nicest way possible
-
Embed this notice
Joshix (joshix@fosspri.de)'s status on Tuesday, 25-Feb-2025 14:14:10 JST Joshix
@Suiseiseki @John @a You could use ffmpeg to concatenate the files. No need to create multiple ffmpeg subprocesses.
cat() {
ffmpeg -v quiet -f data -i "concat:$(printf '%s|' "$@")" -map 0 -f data -
}翠星石 likes this.