Recherche avancée

Médias (1)

Mot : - Tags -/biomaping

Autres articles (43)

  • La file d’attente de SPIPmotion

    28 novembre 2010, par

    Une file d’attente stockée dans la base de donnée
    Lors de son installation, SPIPmotion crée une nouvelle table dans la base de donnée intitulée spip_spipmotion_attentes.
    Cette nouvelle table est constituée des champs suivants : id_spipmotion_attente, l’identifiant numérique unique de la tâche à traiter ; id_document, l’identifiant numérique du document original à encoder ; id_objet l’identifiant unique de l’objet auquel le document encodé devra être attaché automatiquement ; objet, le type d’objet auquel (...)

  • MediaSPIP Player : les contrôles

    26 mai 2010, par

    Les contrôles à la souris du lecteur
    En plus des actions au click sur les boutons visibles de l’interface du lecteur, il est également possible d’effectuer d’autres actions grâce à la souris : Click : en cliquant sur la vidéo ou sur le logo du son, celui ci se mettra en lecture ou en pause en fonction de son état actuel ; Molette (roulement) : en plaçant la souris sur l’espace utilisé par le média (hover), la molette de la souris n’exerce plus l’effet habituel de scroll de la page, mais diminue ou (...)

  • Publier sur MédiaSpip

    13 juin 2013

    Puis-je poster des contenus à partir d’une tablette Ipad ?
    Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir

Sur d’autres sites (7192)

  • The ultimate solution to knowing how your business is performing overall

    8 janvier 2018, par InnoCraft

    Would you like to know how your business is performing overall at a glance ? Guess what, you can now do this easily with Roll-Up Reporting.

    What is Roll-Up Reporting about ?

    Roll-Up Reporting is a premium feature which you can acquire through the Matomo (Piwik) Marketplace. Developed by InnoCraft, the professional company behind Matomo, this plugin will :

    1. Save you heaps of time and gives you completely new insights
    2. Make this process easy as pie
    3. Reflect the structure of your business or organization

    1 – Roll-Up Reporting does the maths for you

    Yes, you read it right. Compared to having to sum reports of multiple websites manually, you can get aggregated results for your business or departments instantly with a single click directly in Matomo (Piwik). Not only does this save you heaps of time compared to doing this complicated work in a spreadsheet, you also avoid human errors. With this feature, you get a clear overview over all your websites, apps, and shops performances.

    For example, if you want to know which referrers bring you the most value across all websites, then you will get the answer in a report. Same results for e-commerce reports, actions, and other metrics.

    2 – Easy as pie, no tracking code involved

    The best part of this feature is that you do not need to push data through additional tracking code. The setup is simple and made through the UI of the plugin.

    3 – Roll-Up Reporting meets even the hardest requirements

    You can also create “nested roll-ups”. This feature allows you to create a roll-up consisting of several other roll-ups. With a nested roll-up, you can create a roll-up for each department in your company (and assign all the websites of a department to that roll-up), then group several departments easily into a new roll-up simply by assigning several department roll-ups to this new roll-up.

    For example, a company with multiple brands can assign multiple websites to each brand, and then get aggregated results for each brand and for the business overall. As a roll-up is basically the same as a website, you can give users access to a roll-up without having to give them access to each site, and the other way around.

    How does it work ?

    As with all premium features, this plugin is straightforward to use. Once activated in your Matomo (Piwik) administrator panel, you will notice that when you add a website, you have the choice between two possibilities :

    When you select the “Roll-Up” option, a new window will appear asking you which websites and mobile apps you would like to aggregate into a roll-up :

    The created roll-up will then be shown just like any other website that you have in Matomo (Piwik). You can create as many roll-up entities as you want.

    Features, such as custom alerts, segments, and e-mail reports work for a roll-up just like for any website.

    Real-Time reports

    One of the most interesting features of Roll-Up Reporting is, that you can view all the Real-Time reports, such as the “Visitors in Real-Time” widget, the “Real-Time Map”, and the “Visitor Log” across several websites making it much easier to keep an eye on your business :

    How to get the Roll-up reporting plugin ?

    Developed by InnoCraft, the makers of Matomo (Piwik), Roll-Up Reporting is a premium feature which you can purchase on the Matomo Marketplace. You can also try it for free on the Matomo Cloud (formerly Piwik Cloud) for 30 days.

    The post The ultimate solution to knowing how your business is performing overall appeared first on Analytics Platform - Matomo.

  • Looking for a solution to my ffmpeg video overlay code :

    16 mars 2018, par Michael Hovan

    Looking for a solution to my ffmpeg video overlay code :

    import subprocess as sp

    cmd='ffmpeg', '-i', 'C:/Users/Michael.hovan/Desktop/test/front.mov', '-i', 'C:/Users/Michael.hovan/Desktop/test/persp.mov', '-i', 'C:/Users/Michael.hovan/Desktop/test/side.mov', '-i', 'C:/Users/Michael.hovan/Desktop/test/top.mov', '-filter_complex' \
    '[1:v]scale=iw/4:-1:flags=lanczos[pip1];' \
    '[2:v]scale=iw/4:-1:flags=lanczos[pip2];' \
    '[3:v]scale=iw/4:-1:flags=lanczos[pip3];' \
    '[0:v][pip1]overlay=main_w-overlay_w-10:main_h-overlay_h-10[bg1];' \
    '[bg1][pip2]overlay=(main_w-overlay_w)/2:main_h-overlay_h-10[bg2];' \
    '[bg2][pip3]overlay=10:main_h-overlay_h-10,format=yuv420p[v];' \
    '[0:a][1:a][2:a][3:a]amerge=inputs=4[a]' \
    '-map', '[v]', '-map', '[a]', '-ac', '1', 'C:/Users/Michael.hovan/Desktop/test/output.avi'

    sp.call(cmd)

    I’m honestly stumped as to why the code is giving me a "returned non zero exit status".

  • PHP and FFMPEG advice/solution for a unknown issue

    26 mars 2018, par sonam Sharma

    I am having a live video streaming website and I allow people to upload all the video files to the site till now everything is ok.

    What I am doing is that I am using FFMPEG to convert the video to mp4 and also get a image out of the video after 20 seconds.

    The code that I am using is that :

    require 'vendor/autoload.php';
           $getEXT_check=substr(@$_FILES['profileimage99']['name'],-3);
           if($getEXT_check !='mp4' && $getEXT_check !='MP4'){
           exec('ffmpeg -i '.$uploadfile.' -f mp4 -s 896x504 '.$new_flv.''); }
           //execute ffmpeg and create thumb
           exec('ffmpeg  -i '.$uploadfile.' -ss 00:00:20 -vframes 1  '.$new_image_path);
           $theduration=exec('ffprobe -v error -show_entries format=duration -of default=noprint_wrappers=1:nokey=1 '.$uploadfile.' 2>&1');
           $theduration_val=round($theduration/60, 2);

    What issue I am having is that

    1. sometimes the code dosent extract the image out of video
    2. video conversation takes very long time for non mp4 video (I am not converting mp4 videos)

    Some info what I have done on server. During the development of site I installed ffmpeg on my pc and downloaded the vendor directory by composer.json file. But I have not done these things on my server I have a dedicated server from bluehost and have ffmpeg installed at this location.

    /usr/local/bin/ffmpeg
    /usr/local/bin/mplayer
    /usr/local/bin/mencoder
    /usr/bin/flvtool2
    /usr/local/bin/MP4Box
    /usr/local/bin/yamdi

    During uploading the site what I did is that I also uploaded the vendor directory and all the files and made the site live. I haven’t used any of the path as given by my server admin after asking.

    Please suggest me something where I am doing wrong.