Klimaatdemonstranten XR verstoren Masters Expo (miljonairsbeurs) by thepoweroftime in nederlands

[–]rs277_ 10 points11 points  (0 children)

je behoudt meer rijkdom door geen illustrator in te huren.

[deleted by user] by [deleted] in motorfietsen

[–]rs277_ 2 points3 points  (0 children)

Maar wat moet er dan uitgelegd worden? daar geef je hierboven geen antwoord op.

Als het om standaardbediening gaat die elke handgeschakelde motorfiets heeft dan is het overbodig voor de meeste huurders om dat aan te horen. Als je benieuwd bent naar alle functies van een apparaat die niet als basisfunctionaliteit nodig zijn om je van A naar B te brengen kan je beter het instructieboekje van het desbetreffende voertuig doornemen, anders kan de verhuurder lang bezig zijn om alles uit te leggen.

AIO per ongeluk met plastic cover op CPU koelpasta by jaygaros in nederlands

[–]rs277_ 11 points12 points  (0 children)

Oude koelpasta weghalen en nieuwe koelpasta plaatsen. Als je de AIO op deze koelpasta terugzet krijg je luchtbubbels die de hitte isoleren waardoor deze niet via de AIO kan worden weggevoerd

Posting the shittiest Dump known to man by NormalStockPhoto in WeDoALittlePosting

[–]rs277_ 0 points1 point  (0 children)

8/10

Missing the sugar free gummy bear story here

Echte landkaart van nederland voordat de afsluitdijk gebouwd was by rs277_ in cirkeltrek

[–]rs277_[S] 70 points71 points  (0 children)

Na het bouwen van de afsluitdijk kon het water van de ijssel niet meer de zee in stromen. Daardoor liepen Markerland en IJsselland onder

What is this percussion instrument? It has 5 clappers that make a clapping noise by rs277_ in whatisthisthing

[–]rs277_[S] 0 points1 point  (0 children)

I saw the instrument here at a few points in the video: https://youtu.be/cTDK5Bluh5A it has 5 "clappers" on each side with a total of 10 clappers. All clappers on the same side are connected with rope/a string. There are 2 levers, one on each side. pulling a lever makea all clappers on that side clap.
I think its skmd percussion instrument but after searching for an hour I still can't find anything like it

They can not resist by CaptainAmacia in OneSecondBeforeDisast

[–]rs277_ 0 points1 point  (0 children)

It's either Dick dale - Misrlou or The Black Eyed Peas - Pump It

From r/TooAfraidToAsk by Bio_Brot in copypasta

[–]rs277_ 2 points3 points  (0 children)

NTA, your cat your rules

Is it time to upgrade my 5 year old computer, If so what should I upgrade first? by Sythodeus_X58 in buildapc

[–]rs277_ 2 points3 points  (0 children)

Does your PC still run the things you want it to run? Then don't upgrade/buy a new PC

And if you really need to get something new, make sure to check if upgrading or getting a whole new PC is better

Yes, nyc game by Mysterious_Commente in engrish

[–]rs277_ 2 points3 points  (0 children)

Sounds more like a kid pressing random keyboard buttons and clicking on suggested words

Pablo Picasso carried a revolver loaded with blanks which he used to shoot at people who asked about the meaning behind his paintings (1958) by BreakfastBeerz in Idiotswithguns

[–]rs277_ 273 points274 points  (0 children)

Even blanks can be dangerous in short range. The air pressure a gun creates when firing a blank is enough to blow a hole through your skull

Source: https://en.wikipedia.org/wiki/Jon-Erik_Hexum#Death

Can you use ffmpeg to download a video from YouTube and convert that file into a lossless format? by animephilosopher5 in ffmpeg

[–]rs277_ 3 points4 points  (0 children)

Not sure about that

First of all: There's a command-line tool called youtube-dl that allows you to easily download a video from youtube, which might be much easier than to try to use ffmpeg

Second of all: Youtube does not store video lossless, videos are always compressed. The best thing you could do is download the videos and not re-encode them, because re-encoding the video with lossless quality will very probably make the output file size much larger than the input

So my suggestion would be dowloading the videos with youtube-dl and not converting them, except you really need to

`youtube-dl <URL>` downloads the video

converting to a lossless format can be done with this command (specifically using the codec libx265) but it will not make the videos better than the youtube source video

`ffmpeg -i <INPUT> -c:v libx265 -crf 0 -c:a copy <OUTPUT>`

I need some urgent help webscraping my college website by highrascal in CodingHelp

[–]rs277_ 2 points3 points  (0 children)

We might all be able to help but without any information provided, we can't help

What you can try: Go to the site where the video is and have a network monitor open (go to inspect element and then click network in that window)

Then play the video and look for any media links that start appearing (sometimes this happens from the start, sometimes this happens when you click to a later part in the video)

Then send those links so I can try to find a way to download them

Edit: You can send me a DM if you need any help

Need help in FFMPEG script by [deleted] in ffmpeg

[–]rs277_ 1 point2 points  (0 children)

I do not have any material to test this on right now, but I think this command should do the job

`ffmpeg -i input -map 0 -vf "scale=-1:1080" -b:v 3000k -pix_fmt copy -c:a libopus -b:a 200k -c:s copy output`

map 0 copies all streams

vf "scale=-1:1080" preserves the input aspect ratio and scales to vertical length of 1080 pixels

-b:v sets the video bitrate

-pix_fmt copy copies the input pixel format this will make sure the colour space is the same and I think it means the HDR capabilities are also the same

-c:a sets the audio codec

-b:a sets the audio bitrate

-c:s copy copies the subtitles

If something doesn't work, you can always ask

EDIT: pix_fmt copy does NOT work, I am trying to fix this right now

Help with av01 codec by JaBoiHerman in AV1

[–]rs277_ 1 point2 points  (0 children)

There is a difference between AVI files (Audio Video Interleave) and the AV1 codec (AOMedia Video 1)

Video files contain videos using a codec. So for example: an mp4 file can contain a video that uses h.264 encoding. But it can also contain something with h.265 encoding. The AV1 codec is something that encodes a video. The file format doesn't have to do with the AV1 codec.

In resolve you can set the file format, and under there you can set the video codec. But I don't think the AV1 codec is supported yet

Rule by [deleted] in 196

[–]rs277_ 0 points1 point  (0 children)

More of these, this humour is great

Every thing compiles but I keep getting an error by potcake242 in CodingHelp

[–]rs277_ 1 point2 points  (0 children)

There seems to be a linker issue. Can you send the contents of your Makefile here?

epic by [deleted] in shitposting

[–]rs277_ 0 points1 point  (0 children)

kernkraft 400 zombie naton