Recherche avancée

Médias (0)

Mot : - Tags -/xmlrpc

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

Autres articles (86)

  • Le plugin : Gestion de la mutualisation

    2 mars 2010, par

    Le plugin de Gestion de mutualisation permet de gérer les différents canaux de mediaspip depuis un site maître. Il a pour but de fournir une solution pure SPIP afin de remplacer cette ancienne solution.
    Installation basique
    On installe les fichiers de SPIP sur le serveur.
    On ajoute ensuite le plugin "mutualisation" à la racine du site comme décrit ici.
    On customise le fichier mes_options.php central comme on le souhaite. Voilà pour l’exemple celui de la plateforme mediaspip.net :
    < ?php (...)

  • Organiser par catégorie

    17 mai 2013, par

    Dans MédiaSPIP, une rubrique a 2 noms : catégorie et rubrique.
    Les différents documents stockés dans MédiaSPIP peuvent être rangés dans différentes catégories. On peut créer une catégorie en cliquant sur "publier une catégorie" dans le menu publier en haut à droite ( après authentification ). Une catégorie peut être rangée dans une autre catégorie aussi ce qui fait qu’on peut construire une arborescence de catégories.
    Lors de la publication prochaine d’un document, la nouvelle catégorie créée sera proposée (...)

  • Installation en mode ferme

    4 février 2011, par

    Le mode ferme permet d’héberger plusieurs sites de type MediaSPIP en n’installant qu’une seule fois son noyau fonctionnel.
    C’est la méthode que nous utilisons sur cette même plateforme.
    L’utilisation en mode ferme nécessite de connaïtre un peu le mécanisme de SPIP contrairement à la version standalone qui ne nécessite pas réellement de connaissances spécifique puisque l’espace privé habituel de SPIP n’est plus utilisé.
    Dans un premier temps, vous devez avoir installé les mêmes fichiers que l’installation (...)

Sur d’autres sites (6036)

  • Windows Unicode support

    11 août 2013, par Henrik Gramner
    Windows Unicode support
    

    Windows, unlike most other operating systems, uses UTF-16 for Unicode strings while x264 is designed for UTF-8.

    This patch does the following in order to handle things like Unicode filenames :
    * Keep strings internally as UTF-8.
    * Retrieve the CLI command line as UTF-16 and convert it to UTF-8.
    * Always use Unicode versions of Windows API functions and convert strings to UTF-16 when calling them.
    * Attempt to use legacy 8.3 short filenames for external libraries without Unicode support.

    • [DH] common/common.c
    • [DH] common/opencl.c
    • [DH] common/osdep.c
    • [DH] common/osdep.h
    • [DH] common/win32thread.c
    • [DH] common/win32thread.h
    • [DH] configure
    • [DH] encoder/encoder.c
    • [DH] encoder/ratecontrol.c
    • [DH] input/avs.c
    • [DH] input/ffms.c
    • [DH] input/raw.c
    • [DH] input/timecode.c
    • [DH] input/y4m.c
    • [DH] output/flv_bytestream.c
    • [DH] output/matroska_ebml.c
    • [DH] output/mp4.c
    • [DH] output/raw.c
    • [DH] x264.c
    • [DH] x264.h
    • [DH] x264cli.h
    • [DH] x264res.rc
  • PHP - Problems running ffmpeg.exe with shell_exec on Windows

    30 septembre 2012, par King

    I am trying to encode an FLV file to MP4 with ffmpeg.exe, its all working fine when running the code on the commandprompt (I have tried simply echoing the command and pasting it into the cmdline)

    Note : Using windows.

    Here is the code :
    it does not return anything, and does not encode anything, there are no errors, nothing happens :(, system($cmd, $returnval) returns 1 that's all
    running commands like dir works fine, so I have the required access.

    &lt;?php
    $title = $_GET[&#39;file&#39;];
    // encoding command > , below shows info "flv/&#39;.$title.&#39;.flv" "mp4/&#39;.$title.&#39;.mp4"
    $cmd = (&#39;cd C:/inetpub/wwwroot/run/ &amp;&amp; ffmpeg.exe -i "flv/&#39;.$title.&#39;.flv"&#39;);
    $ll = system($cmd, $fv);
    echo "CMD: $cmd \nFull output: $fv \nLL = $ll";
    ?>

    ffmpeg.exe -h will return the help text, I am starting to wonder if it could have something to do with the other outputs having colours in them ?

    Any ideas ? :O

    (The cd is not the problem because $cmd = (&#39;cd C:/inetpub/wwwroot/run/ &amp;&amp; ffmpeg.exe -h&#39;); works fine, its actually already in that directory)

  • Video Processing Library on Windows Phone 8

    3 avril 2015, par ssk

    Are there video processing library on Windows phone 8 ? I am trying to convert very short videos from one format to another. From what I searched, FFMPEG is not available for windows phone : Using FFmpeg in .net ?

    Is there an SDK support for video processing on Windows Phone ?