Тёмный
Bufferhead
Bufferhead
Bufferhead
Подписаться
expert in breaking ci pipelines. i do silly web projects sometimes. building
@mediamaskio right now.

Host your Database for Free on Github Pages
10:13
3 месяца назад
The Race to Replace Redis
7:21
4 месяца назад
The Downfall of Redis
13:11
4 месяца назад
I made Infinite Craft Open Source
6:23
5 месяцев назад
This Image is My Password
6:22
5 месяцев назад
Supercharge HTMX with AI to Program a Website
7:27
6 месяцев назад
The Secret Size of Youtube
5:27
7 месяцев назад
This Calculator is programmed in HTML
4:21
8 месяцев назад
Is Bluesky REALLY decentralized?
6:16
9 месяцев назад
This Minecraft house is built with React.js
11:34
9 месяцев назад
Bringing Back Old Twitter
3:45
9 месяцев назад
Комментарии
@dregavero
@dregavero День назад
Thank you, works very well ⭐👏
@jonjigoncalves
@jonjigoncalves День назад
Hey, i was finally able to get it working. Youll Need to have a view things downloaded like VS Studio, Node, VsCode(makes it easier for me than CMD or PowerShell, and Python, the hardest thing to figure out and it took me five hours was the dependencies, particularly Plasmo, it must be installed in order for the browser extension to work, and youll keep getting an error about it, youll have to go to their documentation to get the install command(forgot what it was, sorry i think "pnpm install plasmo" and you should be able to run the production build and load the unpacked file to chrome/extension. you might have to refresh the login page if you try to log into the same site over and over to admire the image pass at work. haha
@copcilufaranume
@copcilufaranume 12 дней назад
just do like... @media (preferes-dark-mode: dark) { :root { color-scheme: dark; } } @media (preferes-dark-mode: light) { :root { color-scheme: light; } }
@coffeetons
@coffeetons 14 дней назад
awesome editing skills! Btw, do you think this is better to use rather than use 2 step verification? I have a bunch of accounts with different passwords that I have to keep them in a paper to even remember them, so do you know if this method is more secure than 2 step-verification?
@levi3970
@levi3970 28 дней назад
garnet is written in C#. what a fucking JOKE.
@kidhow
@kidhow Месяц назад
hey! installed your extension and tried it, is there any way to make it not asking for password input popup whenever i dragged the image to login form? i want it seamless and just straight login to account
@bprof9418
@bprof9418 19 дней назад
Hey, how did you install the extension I'm having hard time figuring it out
@BohAiCov
@BohAiCov Месяц назад
I can't find a tutorial on how to actually do this, i seek suggestions and help
@Rattlegutsvevo
@Rattlegutsvevo Месяц назад
extension you made just doesnt work. maybe im doing something wrong but regardless a tutorial would be nice
@LuizPlayzYT
@LuizPlayzYT Месяц назад
just use Infinite Craft Inserter extension
@old9
@old9 Месяц назад
↗️↘️↗️↘️↗️↘️↗️↘️↗️↘️↗️↘️
@SirusStarTV
@SirusStarTV Месяц назад
4:16 Transcode, Compress and Edit basically AND audio or video file in the universe
@Lowmicq
@Lowmicq Месяц назад
How do I set up plainsight?
@miko007
@miko007 2 месяца назад
jeez, i somehow thought, the guy would actually fix ffmpeg, got really excited, then, it was just the website *sigh*
@rasyasejati
@rasyasejati 2 месяца назад
docs on the page would be useful, and search with a shortcut (ctrl+k)
@nikkehtine
@nikkehtine 2 месяца назад
You can make the hero section more useful by making the "convert" section on the right interactive - the ".mp4" and ".avi" buttons can be transformed into menus where you can choose whatever format you want. Hell, even make the "Convert" word a menu and showcase different operations you can perform with ffmpeg.
@nikkehtine
@nikkehtine 2 месяца назад
For such a "nerdy" open source tool, the official website looks actually very nice and clean
@noob-qk7mo
@noob-qk7mo 2 месяца назад
underrated channel
@OdyseeEnjoyer
@OdyseeEnjoyer 2 месяца назад
Can you redesign Debian's next time?
@enijar
@enijar 2 месяца назад
Excellent redesign, however it's missing dark mode - an absolute must for websites that have a developer audience
@ZforZine
@ZforZine 2 месяца назад
and now do av1an 😁
@vhwjpzf1z0fi73a
@vhwjpzf1z0fi73a 2 месяца назад
amazing
@oglothenerd
@oglothenerd 2 месяца назад
I feel click-bated. I don't want to watch yet another website redesign.
@raracool04
@raracool04 2 месяца назад
This is a pretty good design, but im not sure if the principle suits FFMPEG. Using testimonials and such makes it seem like youre trying to sell FFMPEG to me, not that its a free and crucial tool. I know you highlight that in the video which I appreciate a lot, but i think there should be more focus on contributors, open communication, stuff like that. In this version, especially with the venture capitalist aesthetic (which is not a bad thing!) i have conditioned myself to search for a "pricing" entry in the navigation bar
@mihailazar2487
@mihailazar2487 2 месяца назад
what people don't get about ffmpeg is that it really has no limit to how many filters you can stack and when using complex mode, your graph need not be a single linear pipeline, but you can do different operations to different parts and then splice them all together You can actually also do full alpha-mask compositing of a video on top of another video while mixing the bg audio. This means that for a small subset of video editing, you could have a video editor which transpiles a user-edited timeline of clips and effects into a single giant ffmpeg command which would run so much faster because ffmpeg actually knows how to operate with streams on a file level. you can add a 10 second intro and outro to a 10h video INSTANTLY because it can do some voodoo with the files themselves and just splice them together without actually decoding most of the video. Concatenation is O(1) complexity The current way all video editors work is that they use ffmpeg to split all input videos into what essentially boils down to a folder full of images* . Then they go through the timeline and for each frame stack all of the effects and render the image into an output folder. Then call ffmpeg again to take all those images and encode them into the user-specified format. This is dumb. Like, really really dumb. With modern hardware that has support for accelerating the decoding of all of these formats, one should reasonably expect that unless you are doing 3D raytracing or anything like that your video should render in about the same amount of time as it takes to watch it. But as I'm sure any of you who have used any video editor ever, from the piece of crap that is kdenlive, to the industry standard adobe premiere, which is still mostly single-core after them having promised multicore support in like the 2010s (even davinci resolve, which has some gpu acceleration cannot simple concat and rescale operations faster than real-time) with ffmpeg, it is common to encode at 5-8x the real speed of the videos unless you are using some very agressive compression. ffmpeg is not just a piece of software that makes google 38 billion a year, you as a regular guy can use it, and it's great save a few commands as scripts and you can now instantly compress that video that is just too big for discord to accept without firing up your entire editor, or using one of those garbage on-line video converters that are full of ads and guess what ? are running ffmpeg themselves too XD * | (some use more clever buffering methods but essentially they all use images as the operating representation)
@ilyhanshi
@ilyhanshi 2 месяца назад
great job!
@adventuretuna
@adventuretuna 2 месяца назад
You just tricked me into watching an ffmpeg tutorial
@AROAH
@AROAH 2 месяца назад
Insert “I hate modern web design I hate modern web design” schizo meme here
@gusslx
@gusslx 2 месяца назад
The intention is great but to be honest, the new design gives the impression of a corporate site seeking investors. While it looks good, it conveys a completely wrong message. Don't overlook this in your next projects! Design with purpose rather than for looks.
@thehen101
@thehen101 2 месяца назад
now you just need to compile it with wasm and embed it into the website
@MrSofazocker
@MrSofazocker 2 месяца назад
Only objection I have is, whenever I want to download an open source tool and the website doesn't look it its from the 80s I turn around and leave the site bcs I think I fell into a copy-cat site.
@nise6148
@nise6148 2 месяца назад
Okay i thought you will redesign mpreg genre
@OklmZerTuVasRienFaire
@OklmZerTuVasRienFaire 2 месяца назад
the thing is what people who use ffmpeg want direct, concise docs, not good looking websites, honestly it doesn't matter at all great lookings website are for startups
@hexxt_
@hexxt_ 2 месяца назад
this is so awesome. we really need this
@kipchickensout
@kipchickensout 2 месяца назад
Subtitles automatically turned on and ffmpeg was written different each time xd
@omgboy4939
@omgboy4939 2 месяца назад
at first I thought you were making a local site to manage ffmpeg in graphical mode instead of using commands
@RandomGeometryDashStuff
@RandomGeometryDashStuff 2 месяца назад
06:31 I am surprised that remuxing (like convert mp4 to mkv but do not reencode video and audio) is not common task.
@arjix8738
@arjix8738 2 месяца назад
sadly MKVs are not a popular format outside of piracy and people that want to attach nice metadata to their videos
@RandomGeometryDashStuff
@RandomGeometryDashStuff 2 месяца назад
04:08 does "Learn More" go to same page as "Documentation" in real ffmpeg website?
@RandomGeometryDashStuff
@RandomGeometryDashStuff 2 месяца назад
I thought this video is about redesigning ffmpeg itself (like cli, logs)
@julesoscar8921
@julesoscar8921 2 месяца назад
It look nice
@hyper.2547
@hyper.2547 2 месяца назад
This man cant redesign the arch forums.
@user-dp5bq5ks6j
@user-dp5bq5ks6j 2 месяца назад
Great style in the video. I love that you included the command line for how it's used. Minor touch. Great
@someguy9175
@someguy9175 2 месяца назад
Do YAML next, god knows they need a new website lmao
@STARGAMERMJ
@STARGAMERMJ 2 месяца назад
Nice video ❤
@agentotten
@agentotten 2 месяца назад
You should do a pull request, just so it is out there.
@Prakyy
@Prakyy 2 месяца назад
Inb4 some old fart shows up saying how they liked the crappy-old outdated design better. This seems to be a trend on almost every redesign video I see.
@arjix8738
@arjix8738 2 месяца назад
I consider myself an old fart (I am only 20, today's my bday!) and honestly, I hate it when people "modernize" stuff that were fine being left alone can't say that I hate the redesign, but it is not really an original design, it feels like a free template for wordpress the old design has more character designs like this make the web more corporate and less alive the Japanese have a nice term called Tsukumogami, which is about inanimate objects gaining a soul and character after existing for a while websites that have a unique look and feel, they feel alive, they stand out applying modern design to those websites, is the same as effectively removing their soul PS: I hate the old ffmpeg design (well, they haven't changed it so it is the current design ig)
@phillipanselmo8540
@phillipanselmo8540 2 месяца назад
the 2014 website is bad the 2009 design is glorious
@coffeblock
@coffeblock 2 месяца назад
best tutorial for ffmpeg!
@0xPanda1
@0xPanda1 2 месяца назад
Just need a documentation page and viola
@RenderingUser
@RenderingUser 2 месяца назад
I want this to exist in just the about section of ffmpeg. The current ffmpeg webpage is so elegant
@savire.ergheiz
@savire.ergheiz 2 месяца назад
You know its good if the dev abandoned being fancy 😂
@YonatanAvhar
@YonatanAvhar 2 месяца назад
6:55 you shouldn't have to worry about managing your disk space in 2024, you just need a bigger drive I never thing about how much disk space I use, and I never run out since my disk is large enough
@Prakyy
@Prakyy 2 месяца назад
1 hour of uncompressed 1080p60 footage would take up about 1.35 TB of storage. You don't have to worry about it because someone else will.
@tablettablete186
@tablettablete186 2 месяца назад
COD players: "I wish for such power...😢"
@arjix8738
@arjix8738 2 месяца назад
@@Prakyy eh, that would only happen if you ever extract all the frames from a video I doubt people do that, I've only ever done it to upscale an old anime from 2005
@kenonerboy
@kenonerboy 2 месяца назад
​@arjix8738 what do u think uncompressed means?
@arjix8738
@arjix8738 2 месяца назад
@@kenonerboy nobody has uncompressed video, only film makers do that I know what uncompressed means, don't question me I have also implemented LZMA in C++