Content pfp
Content
@
0 reply
0 recast
0 reaction

🎩 MxVoid 🎩 pfp
🎩 MxVoid 🎩
@mxvoid
Troubleshooting tips for uploading your videos (🧵): • If you're allowlisted to upload video, both the mobile and the browser clients will let you select .mp4 and .mov files • If the upload hangs, it’s a filetype/codec issue and you need to reencode the video (handbrake.fr is free and open-source) 1/
24 replies
12 recasts
70 reactions

Grins pfp
Grins
@grins
I plop this simple ffmpeg bash script into my rc/alias to quickly clean videos before upload convertvideo() { ffmpeg -i $1 -vcodec libx264 -crf 24 $2; } for example: $: convertvideo video.mov video.mp4
0 reply
1 recast
4 reactions