zoukankan      html  css  js  c++  java
  • Ubuntu linux下的录屏

    Ubuntu linux下的录屏
    ##################
    SimpleScreenRecorder
    ##################

    官方网站:http://www.maartenbaert.be/simplescreenrecorder/    
    源码包:https://github.com/MaartenBaert/ssr/archive/master.tar.gz

    SimpleScreenRecorder should work on any Linux distribution. I have created packages for some distributions to simplify installation.

    Ubuntu

    Install 'simplescreenrecorder' and optionally 'simplescreenrecorder-lib:i386' (if you want to record 32-bit OpenGL applications on a 64-bit system) from the SimpleScreenRecorder PPA:

    sudo add-apt-repository ppa:maarten-baert/simplescreenrecorder
    sudo apt-get update
    sudo apt-get install simplescreenrecorder
    
    # if you want to record 32-bit OpenGL applications on a 64-bit system: sudo apt-get install simplescreenrecorder-lib:i386

    You should copy-paste these commands to a terminal line by line rather than all at once, otherwise it won't work.

    Alternatively, you can install the simplescreenrecorder package from GetDeb.


    Ubuntu <wbr>linux下的录屏



    #######
    ffmpeg
    #######

    ffmpeg -f x11grab -s 1024*768 -r 20 -i :0.0 -sameq  ~/recode.mpg
    -r后是刷新屏率,推出直接Ctrl+C


    #######
    tibesti
    #######

    sudo add-apt-repository ppa:ackondro/tibesti

    sudo apt-get update
    sudo apt-get install tibesti


    https://launchpad.net/python-distutils-extra
    https://launchpad.net/tibesti

    #######
    kazam
    #######

    sudo add-apt-repository ppa:kazam-team/stable-series
    
    
    sudo apt-get update && sudo apt-get install kazam

  • 相关阅读:
    Python
    python参数传递方式
    python可变类型和不可变类型
    进程、线程和协程的理解
    cookie原理
    http报文格式
    Charles的HTTPS抓包方法及原理分析
    fiddler抓包https请求
    python正则表达式
    java的Junit单元测试
  • 原文地址:https://www.cnblogs.com/lixuebin/p/10814563.html
Copyright © 2011-2022 走看看