-
Notifications
You must be signed in to change notification settings - Fork 1.6k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Ability to create a .gif animation #172
Comments
@lidel yup I've actually been using Peek for a while, but this tool is absolutely the best I've found for quickly annotating and taking screenshots, so a GIF recorder would elevate this to mind blown. I'll keep using Peek for the moment though... |
tip for those using a tiling window manager: You can't use peek, since it doesn't seem to work well with a tiling window manager, instead you could use this: #!/usr/bin/env sh
[ $# -lt 2 ] && \
echo 'You have to pass a duration in seconds and a filename: "gif.sh 10 /tmp/record.gif"' && \
exit 1
byzanz-record \
--cursor \
--verbose \
--delay=2 \
--duration=${1} \
$(xrectsel "--x=%x --y=%y --width=%w --height=%h") \
"${2}" |
Much appreciated @Bios-Marcel , you've saved me quite the headache. |
@lidel Peek doesn't work at the moment for recording GIFs. Another alternative is Kazam, but it doesn't support GIF. Another alternative is Green Recorder, but it has the same issue. |
I dont think flameshot intends to be a video recorder so it would be better to check out something else such as SimpleScreenRecorder. SSR does support saving as a GIF but honestly, DONT do that. You should always record as a video, preferably MKV or MP4, and then convert that to a GIF once you have it perfect for the GIF. Recording straight to GIF will lose so much quality and be gigantic filesizes. In fact, I would suggest abandoning GIFs all together for big captures as direct video play is now available on most browsers even most mobile browsers via HTML5 so you dont need the GIF format anymore. Even sites like Imgur default to Videos instead of GIFs because of this reason. |
To follow up on @Bios-Marcel I'm using i3 and Peek, it works fine! Not sure if it's a change with Peek or if Bios was using a different tiling wm. It's a floating window so you'll obviously need to consider that when using it, and if you were smart about it you could probably nicely control the window size/position via i3 commands to emulate full-screen/full-window etc. |
Here are some gif tools on OSX https://github.com/onmyway133/GifCapture
|
I would throw in my two cents and point out another screenshot program (Gyazo) has a ~10 second GIF capture feature, so why would Flameshot not have it? |
Oh hey old thread but if you record a video, you can convert it to GIF while keeping the quality. It's just that ffmpeg -i input.mp4 -vf "split[s0][s1];[s0]palettegen[p];[s1][p]paletteuse" -loop 0 output.gif As a side note, that's how ShareX records GIFs if I remember correctly. It just converts the video at the end of the recording, which is simply amazing. |
Peek is being deprecated because (along other reasons) author thinks GIF is a thing of a past, since video is now widely supported: phw/peek#1191 That said, I would love to see video support in Flameshot, because it has such a nice interface. My benchmark is Windows program called Screenpresso, which could also visually show mouse clicks - very helpful thins for QAs . Right now I'm using Kazam next to Flameshot. It is simple but misses customization and Flameshot overlay UI, so Kazam + Flameshot would be a perfect blend. |
I have used flameshot for longer than I remember. I have it bound to a keybind calling flameshot gui. I think with that, there are tons of mountains to cross because of how flameshot works to implement this, like completely freezing the window when I call that command which I very do use and like. For example, if I were to call that command, the window freezes, then I take time to resize my window, etc. what about the actual content that changed in the last x seconds and I want a gif? But then if you add that functionality, what about the speed of the application you love that disappears because it needs to buffer the last y seconds just in case you take a video? I would absolutely adore this functionality, but I believe it should at least be a separate call, if not a fork of flameshot with another name, so it could only focus on video and be a separate instead of what flameshot currently does, which is implement everything you want in a screenshot and be VERY fast about it. |
Having it would be great, it is very useful on development/testing communications |
+1 |
The Peek project has been declared deprecated 😢 |
This would be nice to have. Here the command I use to record part of screen:
|
This would be so nice as the interface is already super fast and sleek 🥹, Windows' snip tool also has a toggle to capture image or video which saves a ton of time. PS: Just notices that SHIFT + WINDOWS + R starts the recording in the window' snip tool :) |
This is very useful in my web development, especially when creating tickets for issues on the frontend, however sometimes I'd like to demonstrate a usability or animation issue, for this it would be epic if there was a .gif creator. I little record button after making my selection with a configurable framerate in the settings would do wonders!
The text was updated successfully, but these errors were encountered: