Recherche avancée

Médias (2)

Mot : - Tags -/media

Autres articles (67)

  • Les images

    15 mai 2013
  • Mediabox : ouvrir les images dans l’espace maximal pour l’utilisateur

    8 février 2011, par

    La visualisation des images est restreinte par la largeur accordée par le design du site (dépendant du thème utilisé). Elles sont donc visibles sous un format réduit. Afin de profiter de l’ensemble de la place disponible sur l’écran de l’utilisateur, il est possible d’ajouter une fonctionnalité d’affichage de l’image dans une boite multimedia apparaissant au dessus du reste du contenu.
    Pour ce faire il est nécessaire d’installer le plugin "Mediabox".
    Configuration de la boite multimédia
    Dès (...)

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

  • avformat/mov : Add simple ACLR atom reading to set the color range of the incomming...

    19 février 2015, par Kevin Wheatley
    avformat/mov : Add simple ACLR atom reading to set the color range of the incomming track for codec’s like DNxHD that utilise AVID’s proprietary atom.
    

    On input ACLR will be used to set colour range no matter which codec
    it is associated with.
    No change for when it will be output.

    Rework mov_read_extradata function to allow detection of truncated
    atom reads by callers.

    Signed-off-by : Michael Niedermayer <michaelni@gmx.at>

    • [DH] libavformat/mov.c
  • avdevice/dshow : discover source color range/space/etc

    21 décembre 2021, par Diederick Niehorster
    avdevice/dshow : discover source color range/space/etc
    

    Enabled discovering a DirectShow device's color range, space, primaries,
    transfer characteristics and chroma location, if the device exposes that
    information. Sets them in the stream's codecpars.

    Co-authored-by : Valerii Zapodovnikov <val.zapod.vz@gmail.com>
    Signed-off-by : Diederick Niehorster <dcnieho@gmail.com>
    Reviewed-by : Roger Pack <rogerdpack2@gmail.com>

    • [DH] libavdevice/dshow.c
  • Trim and loop audio to the length of video

    20 mai 2020, par Nguyễn Trọng

    I have a 30 second video and a 120 second audio.&#xA;I ran the following command to loop audio into the video but it only stopped when the audio length was reached even though I added "-shortest".&#xA;Help me. (sorry for my bad english)

    &#xA;&#xA;

    String[] cmd = {"-y", "-i", video.mp4, "-i", audio.mp3,&#xA;            "-filter_complex",&#xA;            "[1:a]atrim=0:100,asetpts=PTS-STARTPTS," &#x2B;&#xA;                    "asetrate=44100,aloop=1:size=1*44100," &#x2B;&#xA;                    "aformat=sample_fmts=fltp:sample_rates=44100:channel_layouts=stereo,volume=1.0[bg];" &#x2B;&#xA;                    "[0:v][bg]concat=n=1:v=1:a=1[video]", "-shortest",&#xA;            "-map", "[video]", "-c:v", "libx264", "-c:a", "aac",&#xA;            "-preset", "veryfast", output, "-hide_banner"};&#xA;

    &#xA;