Recherche avancée

Médias (1)

Mot : - Tags -/musée

Autres articles (55)

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

  • Ecrire une actualité

    21 juin 2013, par

    Présentez les changements dans votre MédiaSPIP ou les actualités de vos projets sur votre MédiaSPIP grâce à la rubrique actualités.
    Dans le thème par défaut spipeo de MédiaSPIP, les actualités sont affichées en bas de la page principale sous les éditoriaux.
    Vous pouvez personnaliser le formulaire de création d’une actualité.
    Formulaire de création d’une actualité Dans le cas d’un document de type actualité, les champs proposés par défaut sont : Date de publication ( personnaliser la date de publication ) (...)

  • Websites made ​​with MediaSPIP

    2 mai 2011, par

    This page lists some websites based on MediaSPIP.

Sur d’autres sites (8513)

  • Append tracks in Movie using FFMPEG android

    2 novembre 2017, par Ahmad Arslan

    I want to APPEND a 2 audio track and one video in to the Movie I am using FFMPEG library. It always pick second sound track instead of both.

    Movie result = new Movie();

    if (audioTracksRecordAppend.size() > 0) {
       result.addTrack(new AppendTrack(audioTracksRecordAppend
               .toArray(new Track[audioTracksRecordAppend.size()])));
    }

    if (audioTracksRecord.size() > 0) {
       result.addTrack(new AppendTrack(audioTracksRecord
               .toArray(new Track[audioTracksRecord.size()])));
    }
    if (videoTracks.size() > 0) {
       result.addTrack(new AppendTrack(videoTracks
               .toArray(new Track[videoTracks.size()])));
    }
  • Avisynth processing source having multiaudio tracks

    22 mai 2014, par Tarun

    I wrote following avisynth script

    A1 = FFAudioSource("speed_2mins.mxf",track=1)
    A2 = FFAudioSource("speed_2mins.mxf",track=2)
    V = FFVideoSource("speed_2mins.mxf",width=200,height=100)
    AV1 = AudioDub(V,A1)
    AudioDub(AV1,A2)

    In hope of getting 2 audio tracks in the output, but i still got only one audio track when I processed the .avs file using ffmpeg

    How to get multi audio tracks output using avisynth ?

  • FFMPEG : Combine two H264 FIFO into MP4 File

    27 juillet 2018, par mf_starboi_8041

    I am combining two H264 into one MP4 file using following command,

    ffmpeg -r <framerate> -i  -r  -i  -c copy -t 20 output.mp4
    </framerate>

    After execution of command, If I play the MP4 file using following command,

    ffplay output.mp4 -vst 0     // TO Play Track 1
    ffplay output.mp4 -vst 1     // TO Play Track 2

    Second Video Track of MP4 have some minor glitch in video.

    To figure it out whether FIFO data has issues, I reversed the fifo input in ffmpeg command. But still I am getting minor glitch in Second Video Track only.

    Any Pointers will be appreciated.