Simple Screen Recorder (SSR) needed (Solved)

Booting, installing, newbie
Message
Author
User avatar
pp4mnklinux
Posts: 375
Joined: Fri 23 Aug 2013, 06:56

Simple Screen Recorder (SSR) needed (Solved)

#1 Post by pp4mnklinux »

I found this solution at:
http://www.murga-linux.com/puppy/viewto ... 49&t=97905

But it doesn't work with my puppy v6

_____________ORIGINAL POST___________________________

Hello everybody:

I'm running Puppy v6 and I wanna install Simple Screen Recorder (i'm used to this soft) can you tell me how can I install it?

Step by step guide please


-------------THANKS A LOT.-------

nm.g- if not possible, please suggest me another soft
Last edited by pp4mnklinux on Thu 12 Mar 2015, 09:02, edited 1 time in total.

User avatar
Semme
Posts: 8399
Joined: Sun 07 Aug 2011, 20:07
Location: World_Hub

#2 Post by Semme »

Both *Trusty* pkgs here. Make sure Qt's installed >> http://www.maartenbaert.be/simplescreenrecorder/

Problem? Works fine on this end..
Attachments
ssr_pup6.jpg
(35.44 KiB) Downloaded 425 times

User avatar
pp4mnklinux
Posts: 375
Joined: Fri 23 Aug 2013, 06:56

thanks but.....

#3 Post by pp4mnklinux »

Thanks a lot... I downloaded and installed it, but although I found it I cant start it.

I click on the SSR icon program but it doesn't start....

Can u explain me the step by step procedure to install it¿?¿¿?

THANKY

User avatar
Semme
Posts: 8399
Joined: Sun 07 Aug 2011, 20:07
Location: World_Hub

#4 Post by Semme »

You installed how many packages from the link I left you?
>>> Living with the immediacy of death helps you sort out your priorities. It helps you live a life less trivial <<<

User avatar
pp4mnklinux
Posts: 375
Joined: Fri 23 Aug 2013, 06:56

#5 Post by pp4mnklinux »

Hi Semme:

I went to the link you told me and I chose to download the first option, but Iḿ not sure about " Make sure Qt's installed >> http://www.maartenbaert.be/simplescreenrecorder/ "

I think I downloaded and installed the "simplescreenrecorder_0.3.3-1~ppa1~vivid1_i386.deb (984.3 KiB) " but it doesn't work.
I downloaded "REcord my desktop" too, but it does't work


:(
Attachments
Launchpad downloaded.png
(109.71 KiB) Downloaded 213 times

User avatar
greengeek
Posts: 5789
Joined: Tue 20 Jul 2010, 09:34
Location: Republic of Novo Zelande

#6 Post by greengeek »

It may be worth having a look at "Take a shot". It allows you to create an animated gif of your screen activity. Don't know if it suits your needs, but it is what I use when i want to capture screen clicks and mouse activity etc.

Thread here

User avatar
pp4mnklinux
Posts: 375
Joined: Fri 23 Aug 2013, 06:56

@greengeek Thanks but...

#7 Post by pp4mnklinux »

Thanks a lot for your suggestion, but I need SSR, because I need to create real videos of my on-screen action, to explain all the procedure to my students, or partners or....

I know that a gif could help me, but I really need the velocity, and no need of edition of SRR and of course the quality.


...but THANKS A LOT FOR YOUR HELP

User avatar
greengeek
Posts: 5789
Joined: Tue 20 Jul 2010, 09:34
Location: Republic of Novo Zelande

#8 Post by greengeek »

Open a terminal and type:
simplescreenrecorder
Does it show any errors?

I think it needs pulseaudio so you may also have to add that from somewhere.

User avatar
trapster
Posts: 2117
Joined: Mon 28 Nov 2005, 23:14
Location: Maine, USA
Contact:

#9 Post by trapster »

Open a terminal and use this:
Replace the resolution of your choice.
Use "Ctrl-C" to stop it.

Code: Select all

ffmpeg -f x11grab -s 1024x600 -r 25 -i :0.0 -qscale 0 /mnt/home/movies/my_video.mpg
trapster
Maine, USA

Asus eeepc 1005HA PU1X-BK
Frugal install: Slacko
Currently using full install: DebianDog

User avatar
Semme
Posts: 8399
Joined: Sun 07 Aug 2011, 20:07
Location: World_Hub

#10 Post by Semme »

Not working, huh? That schure looks like a Quirky icon on your desktop. All these bastard pups..

Here, navigate to /etc/DISTRO_SPECS, open the file, then copy'n paste its contents with your reply.
>>> Living with the immediacy of death helps you sort out your priorities. It helps you live a life less trivial <<<

User avatar
pp4mnklinux
Posts: 375
Joined: Fri 23 Aug 2013, 06:56

thanks a lot

#11 Post by pp4mnklinux »

Thanks a lot for your help... Iĺl answer u next week.- I haven't got time now.- THANKY

User avatar
greengeek
Posts: 5789
Joined: Tue 20 Jul 2010, 09:34
Location: Republic of Novo Zelande

#12 Post by greengeek »

trapster wrote:Open a terminal and use this:
Replace the resolution of your choice.
Use "Ctrl-C" to stop it.

Code: Select all

ffmpeg -f x11grab -s 1024x600 -r 25 -i :0.0 -qscale 0 /mnt/home/movies/my_video.mpg
Thats works great for me. Is there any way to add a 'sleep 3' on the same command line so that I would have time to minimise the terminal before the recording starts? (easy enough to do in a script but I'm keen to know if it can all be written in the one line direct into a terminal)

User avatar
Semme
Posts: 8399
Joined: Sun 07 Aug 2011, 20:07
Location: World_Hub

#13 Post by Semme »

You mean you didn't even try to fit the sleep in? I sometimes make 10+ adjustments before being successful.

Code: Select all

sleep 5; ffmpeg -f x11grab -s 800x600 -r 25 -i :0.0 -qscale 0 /tmp/my_video.mpg
By the way, there are lots of other formats and lines out there to keep your sizes down..

User avatar
greengeek
Posts: 5789
Joined: Tue 20 Jul 2010, 09:34
Location: Republic of Novo Zelande

#14 Post by greengeek »

Semme wrote:You mean you didn't even try to fit the sleep in? I sometimes make 10+ adjustments before being successful.

Code: Select all

sleep 5; ffmpeg -f x11grab -s 800x600 -r 25 -i :0.0 -qscale 0 /tmp/my_video.mpg
Too easy if thats all I have to do. (thanks for the tip...)
Is that a colon or a semicolon after the sleep? Old eyes here. its a miracle i can even see the keyboard :-)

EDIT : Aahh, a semicolon. Thanks Semme!

User avatar
Semme
Posts: 8399
Joined: Sun 07 Aug 2011, 20:07
Location: World_Hub

#15 Post by Semme »

Assign a "killall -9 ffmpeg" key combo and you can close it just as fast.
>>> Living with the immediacy of death helps you sort out your priorities. It helps you live a life less trivial <<<

User avatar
pp4mnklinux
Posts: 375
Joined: Fri 23 Aug 2013, 06:56

@greengeek Terminal message

#16 Post by pp4mnklinux »

TERMINAL MESSAGE:
----------------------------------------------------------------------------------------
root# simplescreenrecorder
simplescreenrecorder: error while loading shared libraries: libavformat.so.56: cannot open shared object file: No such file or directory
root#

----------------------------------------------------------------------------------------
greengeek wrote:Open a terminal and type:
simplescreenrecorder
Does it show any errors?

I think it needs pulseaudio so you may also have to add that from somewhere.
Attachments
capture22855.png
(14.03 KiB) Downloaded 181 times

User avatar
pp4mnklinux
Posts: 375
Joined: Fri 23 Aug 2013, 06:56

@Semme.- capture

#17 Post by pp4mnklinux »

----------------------------DISTRO SPECS-----------------------------------

#One or more words that identify this distribution:
DISTRO_NAME='tahrpup'
#version number of this distribution:
DISTRO_VERSION=6.0.2
#The distro whose binary packages were used to build this distribution:
DISTRO_BINARY_COMPAT='ubuntu'
#Prefix for some filenames: exs: tahrsave.2fs, tahr-6.0.2.sfs
DISTRO_FILE_PREFIX='tahr'
#The version of the distro whose binary packages were used to build this distro:
DISTRO_COMPAT_VERSION='trusty'
#the kernel pet package used:
DISTRO_KERNEL_PET='Huge_Kernel'
DISTRO_XORG_AUTO='yes'
DISTRO_TARGETARCH='x86'
DISTRO_DB_SUBNAME='tahr'
#32-byte alpha-numeric ID-string appended to vmlinuz, puppy_tahr_6.0.2.sfs, zdrv_tahr_6.0.2.sfs and devx.sfs:
DISTRO_IDSTRING='t150205211152ZZZZ6.0.2XXXXXXXXXX'
#Puppy default filenames...
#Note, the 'SFS' files below are what the 'init' script in initrd.gz searches for,
#for the partition, path and actual files loaded, see PUPSFS and ZDRV in /etc/rc.d/PUPSTATE
DISTRO_PUPPYSFS='puppy_tahr_6.0.2.sfs'
DISTRO_ZDRVSFS='zdrv_tahr_6.0.2.sfs'
DISTRO_ADRVSFS='adrv_tahr_6.0.2.sfs'
DISTRO_YDRVSFS='ydrv_tahr_6.0.2.sfs'
DISTRO_PUPPYDATE='Feb 2015'
#multiarch distros, such as Ubuntu, will have this. ex: /usr/lib/i386-linux-gnu, so DISTRO_ARCHDIR=i386-linux-gnu
DISTRO_ARCHDIR='i386-linux-gnu'

..............................................................................


Semme wrote:Not working, huh? That schure looks like a Quirky icon on your desktop. All these bastard pups..

Here, navigate to /etc/DISTRO_SPECS, open the file, then copy'n paste its contents with your reply.
Attachments
capture29356.png
(101.26 KiB) Downloaded 174 times

User avatar
greengeek
Posts: 5789
Joined: Tue 20 Jul 2010, 09:34
Location: Republic of Novo Zelande

Re: @greengeek Terminal message

#18 Post by greengeek »

pp4mnklinux wrote: root# simplescreenrecorder
simplescreenrecorder: error while loading shared libraries: libavformat.so.56: cannot open shared object file: No such file or directory
root#
I was wrong about pulseaudio - simplescreenrecorder can work with pulseaudio or alsa so that is not the problem. I am surprised that your error message suggets that you need version 56 of libavformat I only have version 55 and the programme works ok for me. Can you have a look in /usr/bin and tell us what files you see that relate to "libavformat" or associated symlinks? cheers.

User avatar
Semme
Posts: 8399
Joined: Sun 07 Aug 2011, 20:07
Location: World_Hub

#19 Post by Semme »

First things first. Your failure is a simple case of not comprehending what was posted.

Tahr is a "Trusty" packaged Pup, NOT Vivid. And note that earlier I stated BOTH, suggesting TWO pkgs.

Needless to say, lose the one you installed and grab each of the "Trusty" pkgs from the link in my opening post.

Furthermore, you might wanna move the two files in /usr/lib/i386-linux-gnu up one directory.
Attachments
ssr_tahr-deps.txt.gz
(1.01 KiB) Downloaded 140 times

User avatar
pp4mnklinux
Posts: 375
Joined: Fri 23 Aug 2013, 06:56

PROBLEM SOLVED !!!A

#20 Post by pp4mnklinux »

Solved following this instructions...

http://www.puppylinuxjosejp2424.com/201 ... n-gtk.html

-----------------------------------------------
grabar tu escritorio con gtk recordmydesktop
gtk recordmydesktop es un programa para hacer un video de tu escritorio, asi puedes subir a youtube u otro sitio.


instalamos el programa , y quedara instalado en multimedia.



lo abrimos.




seleccionamos el sector a grabar o si quieren toda la pantalla.




abajo en la barra hay un boton para iniciar a grabar o parar el grabado.


cuando lo paran el programa les creara un archivo en su home.


es todo les dejo las descarga del programa son 2 archivos pet. uno es el programa y otro es pyton 2.6 que necesita para que funcione.


gtk recordmydesktop



Publicado 10th October 2011 por juan jose peralta
Ver comentarios
todo puppy linux
puppy linux una pequeña distro , que funciona en maquinas con hardware nuevo, como hardware antiguo. hoy por hoy puppy a demostrado que no solo es para equipos de bajos recursos. puppy es un buen sistema operativo.
Distro: xenialpup64 7.5 XXL
Desktop Panel: JWM ~ FbBox 5.0

Post Reply