Recherche avancée

Médias (1)

Mot : - Tags -/net art

Autres articles (99)

  • MediaSPIP 0.1 Beta version

    25 avril 2011, par

    MediaSPIP 0.1 beta is the first version of MediaSPIP proclaimed as "usable".
    The zip file provided here only contains the sources of MediaSPIP in its standalone version.
    To get a working installation, you must manually install all-software dependencies on the server.
    If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...)

  • Mise à jour de la version 0.1 vers 0.2

    24 juin 2013, par

    Explications des différents changements notables lors du passage de la version 0.1 de MediaSPIP à la version 0.3. Quelles sont les nouveautés
    Au niveau des dépendances logicielles Utilisation des dernières versions de FFMpeg (>= v1.2.1) ; Installation des dépendances pour Smush ; Installation de MediaInfo et FFprobe pour la récupération des métadonnées ; On n’utilise plus ffmpeg2theora ; On n’installe plus flvtool2 au profit de flvtool++ ; On n’installe plus ffmpeg-php qui n’est plus maintenu au (...)

  • Personnaliser en ajoutant son logo, sa bannière ou son image de fond

    5 septembre 2013, par

    Certains thèmes prennent en compte trois éléments de personnalisation : l’ajout d’un logo ; l’ajout d’une bannière l’ajout d’une image de fond ;

Sur d’autres sites (10283)

  • 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
  • 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
  • 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;