- Joined
- Jan 28, 2018
Just carry your desktop PC + Screen and keyboard everywhere tbh. Best performance. What are you, a wuss?
Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
first, to be writing the name of your mother on the pad of paper
I think there's a touch of an elitist "why aren't you using the command line like a real man" going on there.wasn't the original post 2030
tbh Linux/FOSS GUIs always look like they were cobbled up with random bits of scrap metal
ffmpeg -i horseporn.mp4 -ss 00:03:20 -t 00:00:10 -c:v copy -c:a copy output1.mp4I have a youtube video downloaded. I want to take a couple of seconds from the middle and turn it into a gif/png. Can anyone recommend the best way of doing this on Debian?
Unintentional, considering I'm on Windows right now.I think there's a touch of an elitist "why aren't you using the command line like a real man" going on there.
All the signs were there though:Well, shit. Shame on me for being fooled.![]()
I'm going to be honest and say that KDE still doesn't feel as smooth as I like, but it's more nitpicking since it works fine for a glorified tablet (that kicks fucking ass)
I have a youtube video downloaded. I want to take a couple of seconds from the middle and turn it into a gif/png. Can anyone recommend the best way of doing this on Debian?
To add on to Anom's bit, you can get your gif using ffmpeg too, so the full command would be something like e.g.ffmpeg -i horseporn.mp4 -ss 00:03:20 -t 00:00:10 -c:v copy -c:a copy output1.mp4
This command would start at 3:20 and clip 10 seconds. Not sure if it's automatically in your distro but it should be easy enough to add ffmpeg (so many things require it you probably already have it). You just have to find your start and end points.
ffmpeg -ss 00:00:08 -i copereddit.mp4 -t 00:00:06 -vf "scale=320:-1,split[s0][s1];[s0]palettegen[p];[s1][p]paletteuse" clipped.gif
-vf
string is the important bit. scale=320:-1
says we want a gif that's 320px wide (and the -1 means "whatever gives us the same aspect ratio as the original vid"). The split;palettegen;paletteuse
nonsense is essentially a quality tweak that has it rip the color palette from the vid to use so that it doesn't end up spotty like you often see in gifs. There's other optimizations you can do (mostly to get the file size down since these end up pretty beefy).wtf is that real
The cat dancing up on its hind legs and clapping like it's a person? Fuck if I know, but I'm pressing X.wtf is that real
I didn't mean you, I meant the general attitude that excuses absolutely shitty design in favor of functionality. This is actually a good thing if functionality is why you're in, but it is not a great sales pitch for an OS if it looks like hot vomit on the screen.Unintentional, considering I'm on Windows right now.
**raises hand**There are no women in tech like this. It's just not a thing. Any true and honest woman in this thread - raise your hand.
Not sure how you could use VeraCrypt to do that, I use it for creating encrypted containers (basically folders) and the other common use is to encrypt portable media like USBs.Anyone have experience with VeraCrypt? (specifically on anything arch based). I'm wondering if I can encrypt my root and home partition in place without having to reinstall my whole OS or delete data
If you're doing drive encryption on Linux you use LUKS.Anyone have experience with VeraCrypt? (specifically on anything arch based). I'm wondering if I can encrypt my root and home partition in place without having to reinstall my whole OS or delete data
Wow, and I was expecting to have to grapple with some janky Windows Movie Maker style Qt Monstrosity. I never imagined I could just do it. Anyway, this is exactly what I was looking for, thanks.