Recherche avancée

Médias (0)

Mot : - Tags -/interaction

Aucun média correspondant à vos critères n’est disponible sur le site.

Autres articles (57)

  • 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 (...)

  • MediaSPIP Core : La Configuration

    9 novembre 2010, par

    MediaSPIP Core fournit par défaut trois pages différentes de configuration (ces pages utilisent le plugin de configuration CFG pour fonctionner) : une page spécifique à la configuration générale du squelettes ; une page spécifique à la configuration de la page d’accueil du site ; une page spécifique à la configuration des secteurs ;
    Il fournit également une page supplémentaire qui n’apparait que lorsque certains plugins sont activés permettant de contrôler l’affichage et les fonctionnalités spécifiques (...)

  • Encoding and processing into web-friendly formats

    13 avril 2011, par

    MediaSPIP automatically converts uploaded files to internet-compatible formats.
    Video files are encoded in MP4, Ogv and WebM (supported by HTML5) and MP4 (supported by Flash).
    Audio files are encoded in MP3 and Ogg (supported by HTML5) and MP3 (supported by Flash).
    Where possible, text is analyzed in order to retrieve the data needed for search engine detection, and then exported as a series of image files.
    All uploaded files are stored online in their original format, so you can (...)

Sur d’autres sites (7736)

  • avcodec/x86/videodsp : Small speedups in ff_emulated_edge_mc x86 SIMD.

    26 octobre 2013, par Ronald S. Bultje
    avcodec/x86/videodsp : Small speedups in ff_emulated_edge_mc x86 SIMD.
    

    Don’t use word-size multiplications if size == 2, and if we’re using
    SIMD instructions (size >= 8), complete leftover 4byte sets using movd,
    not mov. Both of these changes lead to minor speedups.

    Signed-off-by : Michael Niedermayer <michaelni@gmx.at>

    • [DH] libavcodec/x86/videodsp.asm
  • wrong ffmpeg version for xuggler

    13 décembre 2011, par kerel

    I am trying to get Xuggle working on Ubuntu.
    This is however my first time using a Unix system.

    After installing Xuggle and correcting the PATH files I tried some very simple code from tutorials at the xuggle website. But once I attempt to debug my code, it stops and eclipse says

    Suspended (exeption IllegalArgumentException)

    and refers to line 488 of MediaReader.readPacket()

    After searching possible explanations I found that my FFMPEG version was not the version Xuggle needs. When I test my FFMPEG version from command line with
    $ ffmpeg /invalid/file/ it displays --extra-version=&#39;4:0.7.2-1ubuntu1&#39; but according to the xuggle site the --extra-version= should include the word "xuggle". Following their installation procedures does not change anything.

    I downloaded the source code from SVN, which includes a ffmpeg folder. I assume this is the ffmpeg version I need. I have no clue however what to do with this folder.

    question is : how do I get my ffmpeg version to the xuggle compatible ffmpeg version ?

  • ffmpeg strftime no effect on windows

    18 mai 2020, par Ben

    I'm trying to auto mark the output file with timestamps with ffmpeg. Here's my test cmd :

    &#xA;&#xA;

    .\ffmpeg.exe -y -loglevel 99 -i test.mp3 -strftime 1 %Y.ogg&#xA;

    &#xA;&#xA;

    I expected a file named 2020.ogg, however only got %Y.ogg. In another word, output filename is not processed by strftime(). I'm using powershell so there should be no relation with cmd's %% escaping.

    &#xA;&#xA;

    Here's the output : https://pastebin.com/LUVh2kFA I'm using static builds from https://ffmpeg.zeranoe.com (Thanks Zeranoe !) I confirmed that the problem exists in v4.2.2 and git-20200515. Is there any chance to fix it or am I doing it wrong ?

    &#xA;