Recherche avancée

Médias (29)

Mot : - Tags -/Musique

Autres articles (21)

  • 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

  • Organiser par catégorie

    17 mai 2013, par

    Dans MédiaSPIP, une rubrique a 2 noms : catégorie et rubrique.
    Les différents documents stockés dans MédiaSPIP peuvent être rangés dans différentes catégories. On peut créer une catégorie en cliquant sur "publier une catégorie" dans le menu publier en haut à droite ( après authentification ). Une catégorie peut être rangée dans une autre catégorie aussi ce qui fait qu’on peut construire une arborescence de catégories.
    Lors de la publication prochaine d’un document, la nouvelle catégorie créée sera proposée (...)

  • Les formats acceptés

    28 janvier 2010, par

    Les commandes suivantes permettent d’avoir des informations sur les formats et codecs gérés par l’installation local de ffmpeg :
    ffmpeg -codecs ffmpeg -formats
    Les format videos acceptés en entrée
    Cette liste est non exhaustive, elle met en exergue les principaux formats utilisés : h264 : H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10 m4v : raw MPEG-4 video format flv : Flash Video (FLV) / Sorenson Spark / Sorenson H.263 Theora wmv :
    Les formats vidéos de sortie possibles
    Dans un premier temps on (...)

Sur d’autres sites (5069)

  • fftools/ffmpeg : use last filter output pts to choose next output stream

    10 juin 2022, par Anton Khirnov
    fftools/ffmpeg : use last filter output pts to choose next output stream
    

    This will be needed in following commits that will add new buffering
    stages after encoding and bitstream filtering.

    • [DH] fftools/ffmpeg.c
    • [DH] fftools/ffmpeg.h
    • [DH] fftools/ffmpeg_opt.c
  • lavfi/formats : put merge functions in structures.

    24 juillet 2021, par Nicolas George
    lavfi/formats : put merge functions in structures.
    

    It makes the code clearer and will allow adding new stages
    of negotiation easier.

    • [DH] libavfilter/avfiltergraph.c
    • [DH] libavfilter/formats.c
    • [DH] libavfilter/formats.h
  • Looping video doesn't repeat audio FFMpeg

    19 octobre 2018, par Yarik Denisyk

    I try to overlay two videos. The first one is a background video with the audio track.
    For this, I use the following command

    command = arrayOf("-i", background, "-i", video,
          "-c:v", "libx264", "-preset", "ultrafast", "-filter_complex",
          "[1]crop=iw:ih/2:0:0[rgb];[1]crop=iw:ih/2:0:ih/2[alp];" +
           "[rgb][alp]alphamerge[va];[0]scale=$sw:$sh[bs];" +
           "[bs]loop=10:1000:0[bsl];[bsl][va]overlay=x=$startX:y=$startY:shortest=1",
           outPutPath)

    But video plays the first cycle with audio, all the next cycles without. How to make video looping with audio ?

    The following command allows me to repeat audio.

    arrayOf("-i", A.mp4, "-i", B.mp4,
        "-c:v", "libx264", "-preset", "ultrafast", "-filter_complex",
        "amovie=$A.mp4:loop=3,asetpts=N/SAMPLE_RATE/TB[a];" +
        [0]scale=$videoWidth:$videoHeight[bs];[bs]loop=10:1000:0,setpts=N/FRAME_RATE/TB[bsl];" +
        "[bsl][1]overlay=x=$startX:y=$startY:shortest=1[v]", "-map",
        "[v]", "-map", "[a]", "-shortest", outPutPath)

    In this case, video repeats two times and stuck but audio still playing. How do I trim the audio by length of the video ?