Recherche avancée

Médias (91)

Autres articles (91)

  • Participer à sa traduction

    10 avril 2011

    Vous pouvez nous aider à améliorer les locutions utilisées dans le logiciel ou à traduire celui-ci dans n’importe qu’elle nouvelle langue permettant sa diffusion à de nouvelles communautés linguistiques.
    Pour ce faire, on utilise l’interface de traduction de SPIP où l’ensemble des modules de langue de MediaSPIP sont à disposition. ll vous suffit de vous inscrire sur la liste de discussion des traducteurs pour demander plus d’informations.
    Actuellement MediaSPIP n’est disponible qu’en français et (...)

  • Le profil des utilisateurs

    12 avril 2011, par

    Chaque utilisateur dispose d’une page de profil lui permettant de modifier ses informations personnelle. Dans le menu de haut de page par défaut, un élément de menu est automatiquement créé à l’initialisation de MediaSPIP, visible uniquement si le visiteur est identifié sur le site.
    L’utilisateur a accès à la modification de profil depuis sa page auteur, un lien dans la navigation "Modifier votre profil" est (...)

  • Configurer la prise en compte des langues

    15 novembre 2010, par

    Accéder à la configuration et ajouter des langues prises en compte
    Afin de configurer la prise en compte de nouvelles langues, il est nécessaire de se rendre dans la partie "Administrer" du site.
    De là, dans le menu de navigation, vous pouvez accéder à une partie "Gestion des langues" permettant d’activer la prise en compte de nouvelles langues.
    Chaque nouvelle langue ajoutée reste désactivable tant qu’aucun objet n’est créé dans cette langue. Dans ce cas, elle devient grisée dans la configuration et (...)

Sur d’autres sites (11387)

  • flash/modules/global/app/ffmpeg.exe is Non-Executable

    30 octobre 2013, par Juan Rocamonde

    I cannot install dolphin. Always it returns back the same error :

    The following files have inappropriate permissions:
      flash/modules/global/app/ffmpeg.exe;


    And if I scroll down, I can se this :
    flash/modules/global/app/ffmpeg.exe -- Non-Executable
    And I made it executable, chmod777 and I didn't work, so I tried with chmod755 and all chmods with executable parametres. And it didn't work anyway.
    Help please ! I need to get this working asap, is for a business !
    Thanks people.

  • fftools/ffmpeg : replace MATCH_PER_STREAM_OPT(.., str, ..) with a function

    6 août 2024, par Anton Khirnov
    fftools/ffmpeg : replace MATCH_PER_STREAM_OPT(.., str, ..) with a function
    

    This has multiple advantages :
    * The macro has multiple parameters that often have similar or identical
    values, yet very different meanings (one is the name of the
    OptionsContext member where the parsed options are stored, the other
    the name of the variable into which the result is written) ; this
    change makes each of these explicit.

    * The macro returns on failure, which may cause leaks - this was the
    reason for adding MATCH_PER_STREAM_OPT_CLEAN(), also ost_add()
    currently leaks encoder_opts. The new function returns failure to its
    caller, which decides how to deal with it. While that adds a lot of
    error checks/forwards for now, those will be reduced in following
    commits.

    * new code is type- and const- correct

    Invocations of MATCH_PER_STREAM_OPT() with other types will be converted
    in following commits.

    • [DH] fftools/cmdutils.c
    • [DH] fftools/cmdutils.h
    • [DH] fftools/ffmpeg.h
    • [DH] fftools/ffmpeg_demux.c
    • [DH] fftools/ffmpeg_mux.h
    • [DH] fftools/ffmpeg_mux_init.c
    • [DH] fftools/ffmpeg_opt.c
  • How to use hardware accelearation with ffmpeg

    25 avril 2014, par ixSci

    I need to have ffmpeg decode my video(e.g. h264) using hardware acceleration. I’m using the usual way of decoding frames : read packet -> decode frame. And I’d like to have ffmpeg speed up decoding. So I’ve built it with --enable-vaapi and --enable-hwaccel=h264. But I don’t really know what should I do next. I’ve tried to use avcodec_find_decoder_by_name("h264_vaapi") but it returns nullptr.
    Anyway, I might want to use others API and not just VA API. How one is supposed to speed up ffmpeg decoding ?

    P.S. I didn’t find any examples on Internet which uses ffmpeg with hwaccel.