Recherche avancée

Médias (0)

Mot : - Tags -/médias

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

Autres articles (86)

  • Websites made ​​with MediaSPIP

    2 mai 2011, par

    This page lists some websites based on MediaSPIP.

  • Amélioration de la version de base

    13 septembre 2013

    Jolie sélection multiple
    Le plugin Chosen permet d’améliorer l’ergonomie des champs de sélection multiple. Voir les deux images suivantes pour comparer.
    Il suffit pour cela d’activer le plugin Chosen (Configuration générale du site > Gestion des plugins), puis de configurer le plugin (Les squelettes > Chosen) en activant l’utilisation de Chosen dans le site public et en spécifiant les éléments de formulaires à améliorer, par exemple select[multiple] pour les listes à sélection multiple (...)

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

Sur d’autres sites (13586)

  • mp4 muxing problems on dm365 board

    25 mai 2013, par Ulterior

    I happen to be stuck with strange TI codec issues while encoding video. To cut story short - the encoded data which is generated by TI mpeg4 codecs are not 'understood' by nothing else, but VLC and media classic player.

    After really long googling and several seasons I face to you stackoverlowers to help me understand what is wrong in the encoded frame headers, because I really fail to find any answers.

    AviDemux 2.6.1 opens and remux-es video data without problems. So there is hope to understand whats is wrong with mp4 generated data...

    I would really appreciate any help from mp4 gurus out there...

    the link to the problem file

  • ffplay : do not preallocate video texture

    27 juillet 2014, par Marton Balint
    ffplay : do not preallocate video texture
    

    Since the uploads happen in the main display function, it does not matter much.

    Signed-off-by : Marton Balint <cus@passwd.hu>

    • [DH] ffplay.c
  • Removing / Overlaying logo on mp4 video format with ffmpeg on linux

    12 septembre 2020, par SilverShadow

    I'm trying to remove a logo from an .mp4 video file with ffmpeg on linux machine without re-encoding (for preserving the same quality) with the following command :

    &#xA;

    ffmpeg -i input.mp4 -vf delogo=x=270:y=190:w=40:h=40 -c:a copy output.mp4 &#xA;

    &#xA;

    and it gives me the following errors :

    &#xA;

    Unrecognized option &#x27;vf&#x27;&#xA;

    &#xA;

    then a new error came up :

    &#xA;

    Unable to find a suitable output format for &#x27;delogo=x=270:y=190:w=40:h=40&#x27;&#xA;

    &#xA;

    ffmpeg is always updating and it seems that they change command line arguments a lot so any material or tutorial I find online seems to get outdated quickly ...

    &#xA;

    I reviewed the documentation but can't get it to work, I think I'm missing something...?

    &#xA;

    So : What is the correct command line in linux shell ? Also, how to view or find out the exact coordinates of the area to be removed before actually removing the logo ? And how can I overlay a solid color in a certain area instead of removing the logo transparently ?

    &#xA;