Recherche avancée

Médias (1)

Mot : - Tags -/copyleft

Autres articles (98)

  • MediaSPIP 0.1 Beta version

    25 avril 2011, par

    MediaSPIP 0.1 beta is the first version of MediaSPIP proclaimed as "usable".
    The zip file provided here only contains the sources of MediaSPIP in its standalone version.
    To get a working installation, you must manually install all-software dependencies on the server.
    If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...)

  • HTML5 audio and video support

    13 avril 2011, par

    MediaSPIP uses HTML5 video and audio tags to play multimedia files, taking advantage of the latest W3C innovations supported by modern browsers.
    The MediaSPIP player used has been created specifically for MediaSPIP and can be easily adapted to fit in with a specific theme.
    For older browsers the Flowplayer flash fallback is used.
    MediaSPIP allows for media playback on major mobile platforms with the above (...)

  • ANNEXE : Les plugins utilisés spécifiquement pour la ferme

    5 mars 2010, par

    Le site central/maître de la ferme a besoin d’utiliser plusieurs plugins supplémentaires vis à vis des canaux pour son bon fonctionnement. le plugin Gestion de la mutualisation ; le plugin inscription3 pour gérer les inscriptions et les demandes de création d’instance de mutualisation dès l’inscription des utilisateurs ; le plugin verifier qui fournit une API de vérification des champs (utilisé par inscription3) ; le plugin champs extras v2 nécessité par inscription3 (...)

Sur d’autres sites (9053)

  • mips/mathops : remove 64-bit code

    26 février 2015, par James Cowgill
    mips/mathops : remove 64-bit code
    

    GCC is perfectly happy generating optimized multiplication code on its own for
    64-bit arches. GCC refuses to optimize the loongson code when in 32-bit mode,
    so I’ve left that.

    Signed-off-by : James Cowgill <james410@cowgill.org.uk>
    Signed-off-by : Michael Niedermayer <michaelni@gmx.at>

    • [DH] libavcodec/mips/mathops.h
  • How to code Laravel FFMpeg video conversion for specific parameters ?

    7 octobre 2022, par Wayne Fulcher

    I am using Laravel 9.x running php 8.1.x.&#xA;I have some code that I use to convert videos that have a context type other than video/mp4 to a H264 format. The reason is to make a video format that is compatible with Apple (iOS), Android and most web browsers. This code has worked so far on every video we have used it on except for one.&#xA;My current code is

    &#xA;

            $ffmpeg = FFMpeg::create();&#xA;        $video = $ffmpeg->open($videoFilename);&#xA;        $format = new X264();&#xA;        $format->setAudioCodec("aac"); &#xA;        $video->save($format, $newFilename);&#xA;

    &#xA;

    So in an attempt to debug what else needs to be done I started manually running ffmpeg commands on my computer against a copy of the video in question. I have finally figured out what additional parameters are required to successfully convert that video so it plays on all devices. The manual command is as follows :

    &#xA;

    ffmpeg -i input.mov -pix_fmt yuv420p -b:v 4000k -c:v libx264 output.mp4&#xA;

    &#xA;

    I am about 90% sure the parameters that dealt with the specifics of this video were the following :

    &#xA;

    -pix_fmt yuv420p -b:v 4000k

    &#xA;

    My problem now is I can not figure out what changes to my php code I need to make that would be the equivalent to those additional command line parameters.&#xA;Also I am wondering as I am typing this question, is there a way for me to "auto-detect" when a video requires this additional parameters or not ? (maybe that is a second post/question)

    &#xA;

  • Anomalie #2791 (Fermé) : Petite coquille dans le code de la balise #URL_PAGE

    9 juillet 2012, par Frank -

    Une petite coquille est présente dans le code de la balise #URL_PAGE, et elle semble présente dans toutes les versions de spip, dans le fichier ecrire/balise/url_.php à la ligne 158 : $code = "generer_url_public($code, $args$noentities)" ; ce qui devrait donner après correction : $code = (...)