Take photo using webcam

168

Solution 1

There's an application called cheese which can do this. IIRC it's installed by default. If not, you can install it manually using the software center or by typing sudo apt-get install cheese into a terminal window.

Solution 2

I would suggest you use Cheese. It is a webcam program for Ubuntu that supports almost any webcam.

You can install it by running the following command in a terminal (Ctrl+Alt+T):

sudo apt-get install cheese

After that, it will display in your installed programs menus.

Share:
168

Related videos on Youtube

gopinathan
Author by

gopinathan

Updated on September 18, 2022

Comments

  • gopinathan
    gopinathan over 1 year

    I am developing custom payment gateway which i need to process tranasaction_id and other payment details through custom php file which will be in the plugin directory. Also i am getting 4 times ajax request loading for the response what i am getting how to avoid it.

    // plugin class file payment-gateway.php
    
    //response.status ="approved";
    //response.transaction_id ="324234";
    var dataString = JSON.stringify(response);                       
                    jQuery.ajax({
                         type : "POST",
                         dataType : "json",
                         contentType: "application/json",
                         url: '<?php echo plugins_url().'/custom-woocommerce-gateway/includes/custom_php_file.php'; ?>',
                        data: {myData:dataString},
                         success: function(response) {
    
    
                            }
                            }); 
    
    /*custom-woocommerce-gateway/includes/custom_php_file.php */
    <?php 
    //define the wc functions
    
    print_r($_REQUEST);
    process the payment details like woocommerce
    
    exit;
    
  • D. Pardal
    D. Pardal over 4 years
    Seems to be not installed by default in Lubuntu.