cheese_greater@lemmy.world to No Stupid Questions@lemmy.ca · edit-227 days agoHow effort-intensive (or automatable) is it to take a large video file and append a picture/thumbnail to it so its not a black thumbail?message-squaremessage-square3linkfedilinkarrow-up15arrow-down10
arrow-up15arrow-down1message-squareHow effort-intensive (or automatable) is it to take a large video file and append a picture/thumbnail to it so its not a black thumbail?cheese_greater@lemmy.world to No Stupid Questions@lemmy.ca · edit-227 days agomessage-square3linkfedilink
minus-squarecheese_greater@lemmy.worldOPlinkfedilinkarrow-up2·27 days ago ffmpeg -i input.mp4 -c copy -attach cover.jpg -metadata:s:t mimetype=image/jpeg out.mp4 Thanks!
minus-squarejoelle_ether@piefed.blahaj.zonelinkfedilinkEnglisharrow-up2·27 days agosure thing, I’m pretty sure that there may even be a way to do it without making a copy but that was part of a larger command or rather set of commands I used
ffmpeg -i input.mp4 -c copy -attach cover.jpg -metadata:s:t mimetype=image/jpeg out.mp4
sure thing, I’m pretty sure that there may even be a way to do it without making a copy but that was part of a larger command or rather set of commands I used