Recherche avancée

Médias (0)

Mot : - Tags -/performance

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

Autres articles (87)

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

  • Emballe médias : à quoi cela sert ?

    4 février 2011, par

    Ce plugin vise à gérer des sites de mise en ligne de documents de tous types.
    Il crée des "médias", à savoir : un "média" est un article au sens SPIP créé automatiquement lors du téléversement d’un document qu’il soit audio, vidéo, image ou textuel ; un seul document ne peut être lié à un article dit "média" ;

Sur d’autres sites (7806)

  • avfilter/f_loop : fix length of aloop leftover buffer

    3 novembre 2024, par Marton Balint
    avfilter/f_loop : fix length of aloop leftover buffer
    

    If the audio loop stops inside an audio frame, the leftover buffer contains the
    end of the frame, which is not looped. The length supposed to be the part which
    was not written to the loop buffer, so we need to drain exactly that number of
    bytes from the leftover buffer.

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

    • [DH] libavfilter/f_loop.c
  • opt : reject denominator zero as out of range

    12 décembre 2016, par Andreas Cadhalpun
    opt : reject denominator zero as out of range
    

    Reviewed-by : Michael Niedermayer <michael@niedermayer.cc>
    Signed-off-by : Andreas Cadhalpun <Andreas.Cadhalpun@googlemail.com>

    • [DH] libavutil/opt.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;