Recherche avancée

Médias (0)

Mot : - Tags -/auteurs

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

Autres articles (65)

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

  • Multilang : améliorer l’interface pour les blocs multilingues

    18 février 2011, par

    Multilang est un plugin supplémentaire qui n’est pas activé par défaut lors de l’initialisation de MediaSPIP.
    Après son activation, une préconfiguration est mise en place automatiquement par MediaSPIP init permettant à la nouvelle fonctionnalité d’être automatiquement opérationnelle. Il n’est donc pas obligatoire de passer par une étape de configuration pour cela.

  • Publier sur MédiaSpip

    13 juin 2013

    Puis-je poster des contenus à partir d’une tablette Ipad ?
    Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir

Sur d’autres sites (13787)

  • Make FFMPEG use GPU power

    6 juillet 2022, par Raju

    I'm trying to compress some video files which are of huge size I tried using CPU power using normal command

    


      ffmpeg -i input.mp4 output.mp4


    


    My laptop also has a GPU (NVIDIA 3070 (8GB) card) so I'm trying to make video compression using it as it will be a bit faster I think

    


    I tried searching but found few but they don't use any GPU can someone write command so I can try it :)

    


  • ffmpeg : make sure packets put into the muxing FIFO are refcounted

    8 février 2017, par wm4
    ffmpeg : make sure packets put into the muxing FIFO are refcounted
    

    Some callers (like do_subtitle_out()) call this with an AVPacket that is
    not refcounted. This can cause undefined behavior.

    Calling av_packet_move_ref() does not make a packet refcounted if it
    isn’t yet. (And it can’t be made to, because it always succeeds,
    and can’t return ENOMEM.)

    Call av_packet_ref() instead to make sure it’s refcounted.

    I couldn’t find a case that is fixed by this with the current code. But
    it will fix the fate-pva-demux test with the later patches applied.

    Signed-off-by : wm4 <nfxjfg@googlemail.com>

    • [DH] ffmpeg.c
  • using FFmpeg for android without any C/C++ or make knowledge

    3 octobre 2014, par Lik Sif

    I would like to use FFmpeg library on my android app.
    I have no C/C++/Make knowledge and all the threads I’ve been reading about it talk about stuff I completely don’t understand.

    Is there any pre-compiled library which I can add to my project, then add a simple ’import’ statement on my java class and then call it ?

    Thanks