Recherche avancée

Médias (1)

Mot : - Tags -/Rennes

Autres articles (58)

  • List of compatible distributions

    26 avril 2011, par

    The table below is the list of Linux distributions compatible with the automated installation script of MediaSPIP. Distribution nameVersion nameVersion number Debian Squeeze 6.x.x Debian Weezy 7.x.x Debian Jessie 8.x.x Ubuntu The Precise Pangolin 12.04 LTS Ubuntu The Trusty Tahr 14.04
    If you want to help us improve this list, you can provide us access to a machine whose distribution is not mentioned above or send the necessary fixes to add (...)

  • Les tâches Cron régulières de la ferme

    1er décembre 2010, par

    La gestion de la ferme passe par l’exécution à intervalle régulier de plusieurs tâches répétitives dites Cron.
    Le super Cron (gestion_mutu_super_cron)
    Cette tâche, planifiée chaque minute, a pour simple effet d’appeler le Cron de l’ensemble des instances de la mutualisation régulièrement. Couplée avec un Cron système sur le site central de la mutualisation, cela permet de simplement générer des visites régulières sur les différents sites et éviter que les tâches des sites peu visités soient trop (...)

  • Submit bugs and patches

    13 avril 2011

    Unfortunately a software is never perfect.
    If you think you have found a bug, report it using our ticket system. Please to help us to fix it by providing the following information : the browser you are using, including the exact version as precise an explanation as possible of the problem if possible, the steps taken resulting in the problem a link to the site / page in question
    If you think you have solved the bug, fill in a ticket and attach to it a corrective patch.
    You may also (...)

Sur d’autres sites (7089)

  • What is this "fixing the build scripts" for compiling x264 ?

    29 mai 2020, par Blake Senftner

    I am trying to compile an all static build of source-customized ffmpeg libraries with the additional codecs from VideoLAN, such as their x264 codec. I am ultimately building for use in Windows with Visual Studio 2015 C++, so I am comparing a few compiling guides for my instructions.

    



    In the guide linked below (I located via Google searches) shows how to compile x264 with the VS2015 toolchain in MSYS2 without any special steps :
https://gist.github.com/RangelReale/3e6392289d8ba1a52b6e70cdd7e10282

    



    While in this other guide, offered by the compiling guide pages from ffmpeg's web site, it includes steps for "fixing the build scripts" for x264 :
https://www.roxlu.com/2019/062/compiling-ffmpeg-with-x264-on-windows-10-using-msvc

    



    Problem being, when I "fix the build scripts" the configure script no longer finds a C compiler. Building with the first guide seems to work, but it was also written nearly 2 years ago, so perhaps the ffmpeg guide is doing some important fix ? I don't know.

    



    I am :

    



      

    1. Running a "VS2015 x64 Native Tools Command Prompt"
    2. 


    3. launching a pacman loaded msys2 shell via "msys2_shell.cmd -mingw64 -use-full-path"
    4. 


    5. git cloning http://git.videolan.org/git/x264.git
    6. 


    



    and at this point the two compiling guides vary, the first guide just cd's into x264 and runs configure while the other guide does some curl download of a config.guess file and then some sed manipulation of ./configure. Considering these instructions are "endorsed" by the ffmpeg site, I am left wondering what that is doing and how critical is it that these "special" steps cause my x264 configure to fail.

    


  • Matomo will now pay researchers 5,000 USD for a critical security vulnerability

    7 mai 2020, par Matomo Core Team

    Matomo Analytics is the leading open-source web analytics solution, designed to give you conclusive insights while respecting your user’s privacy, and keeping your data secure. We’re so proud Matomo is trusted with the analytics data of more than 1 million sites worldwide.

    Although we have had an excellent security track record so far, we recognise security is an ongoing challenge and requires constant vigilance. With this announcement we’re showing our commitment to reward those who help us maintain the highest security in Matomo.

    New bounty of 5,000 USD for a CRITICAL security issue responsibly disclosed to us

    We’re now paying 5,000 USD or 4,700 EUR for each critical vulnerability found, and responsibly disclosed to us. (Previously this bounty was less than 1,000USD.) 

    A Critical Issue in Matomo means an issue in our latest official release at : builds.matomo.org/latest.zip as installed on a typical server (and possibly using any of our official plugins by Matomo or InnoCraft from the Marketplace).

    If you can gain remote code execution on the server (i.e. RCE), or if you’re able to delete data with an HTTPS request (i.e. SQL Injection), this may qualify as a Critical Issue. Please report it on Hackerone.

    Matomo keeps your data secure

    The Matomo team has always been committed to achieving the highest standard of security. For example, Matomo was one of the first open-source projects in the world to launch a public bug bounty in January 2011. Every year many researchers, users and customers review the Matomo source code, and overall we’ve rewarded dozens of researchers over the years for their work in keeping Matomo data safe.

    How to make your Matomo server even more secure ?

    Check out our recommendations in How to configure Matomo for Security
     
  • ffmpeg Muxing Recovered Files - Audio dropping

    7 avril 2020, par Chris McL

    A few years ago, we accidentally deleted all our home movies. We recovered the files from the camera. They have lost their headers and are not playable. I have used a recovery program (recover_mp4) to get an h264 and aac file.

    



    When I try to mux these together, the audio drops off from the stream. It also crackles badly at times. If I play the AAC file by itself, it sounds fine. For some movies, the audio works for a while, on others it drops out quickly.

    



    One thing I noticed is that the resulting muxed mp4 file is often shorter than the audio.

    



    I've tried various ffmpeg commands that look generally like this :

    



    ffmpeg -r 30000/1001 -i recovered_video.h264 -i recovered_audio -bsf:a aac_adtstoasc -c:v copy -c:a copy output.mp4

    



    Any ideas on how to marry the two files together ?