VNote is a great program, for my is great to write markdown Download VNote 32 bits See my 32 bits deb build: https://github.com/wachin/vnote/releases Note: If you are curious, you will realize that the deb that I compiled is smaller than the ones on the github page of the Chinese developers, this is because VNote can use the dependencies of the Linux operating system, for example: Kdenlive, which is a program huge but because it uses many KDE dependencies, you can see this by looking at its packages: kdenlive-data which weighs 9 MB and kdenlive which weighs almost 3 MB, the same with the deb I compiled, instead the developers have made it available by integrating many of its dependencies right there to make it work on many (64-bit) Linux, not like the one I have compiled only for Linux based on Debian 11 Bullseye Download VNote 64 bits On the official page: https://github.com/vnotex/vnote/releases As you can...
Idea of creating a desktop recorded program using FFmpeg with Pause option
It is possible to record desktop in a terminal with FFmpeg but is not possible have pause option, only with Ctrl + C is possible to stop the video but this create a video (then several by repeating this) and to Resume is necessary to start again the recording and next with other commands joing the video files. Because this I have been searching the Web tirelessly on Github, Gitlab, fling.com, Google, I was looking for someone who has done a GUI program to use FFmpeg on Linux to make Screencast and
be able to put Pause, I found a GUI software writing in Go (https://golang.org/) called ffmpegui:
The main idea of this program is join all video files in the stop option button:
but the developer writing it on a MAC OS X and I can't run on Linux, but the developer said that have Linux support, I don't know how to
XvidCap abandoned
I
started looking for this idea because I know the xvidcap application which
can be configured to record a rectangle + follow the mouse, and is
possible to move inside the box, and have Pause, but the application has been abandoned
but
the program records video of very poor quality, and the audio sounds
very bad when one moves with the box, and is not possible use it to make
great video tutorials (with FFmpeg yes)
I know that there is other applications like: SimpleScreenRecorder, Vokoscreen-NG, etc but no one is like XvidCap (but FFmpeg is greate)
I
am not developer but try to read about what happened and I found that
the commands that theveloper used are to ffmpeg on MAC OS X. I think
that the solution is change that commands to the commands for ffmpeg on
Linux
At
this time I am try to using ffmpeg from terminal to made screencast,
but without pause, only stop and if is necessary next have to join some
videos a one.
TO RECORD A 480p RECTANGLE + FOLLOW THE MOUSE (MOVE EDGE AT 50px)
The
following are instructions to record in a rectangle of 854x480 pixels +
follow the mouse, to explain in more detail the places on the screen
where we are moving, and the rectangle will only move following the
mouse when the pointer reaches within 50 pixels up to the border within
the box
.
. . this feature only works correctly in Linux Operating Systems with
FFmpeg 4, example Ubuntu 20.04 Focal that has the version FFmpeg 4.2.4 (https://packages.ubuntu.com/focal/ffmpeg), or Debian 11 Bullseye that has FFmpeg 4.3.2 (https://packages.debian.org/bullseye/ffmpeg) and Linux like MX Linux 21, this or that you use in Ubuntu a PPA or compile from source code one of the versions 4 of FFmpeg.
I made a video:
Commands to join the videos
At the moment I think that is possible to join the videos with this:
First Create a list of all files to convert
for f in *.mp4; do echo "file '$f'" >> mylist.txt; done
Comments
Post a Comment