Recherche avancée

Médias (1)

Mot : - Tags -/swfupload

Autres articles (63)

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

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

  • ffmpeg rtp stream has an initial static blurt

    15 décembre 2016, par SephVelut

    I’m using ffmpeg to stream an audio file via rtp. My command is ffmpeg -re -i INPUT -f rtp 'rtp://0.0.0.0:4000'. I’m playback the audio using vlc. The audio plays with decent quality, however there is always an initial spurt of stuttered static sound lasting about 100ms. Other playback devices have the same result so I’m convinced this is isolated to ffmpeg.

    Does anyone have any leads I could follow to investigate why this is happening ? I don’t know where to start.

  • Adding an audio track to a video using it's own audio as a source ?

    29 novembre 2016, par user41997

    I have a video file with the following layout :

    • Video
    • DTS audio

    What I would like to do is :

    • Video
    • AAC audio (converted from the DTS source)
    • DTS audio

    I can’t wrap my head around the FFMPEG command I would need to do this, though, since I would need to convert the DTS audio to AAC and then place it ahead of the DTS track. The reason for this is the PS4 media player currently doesn’t let you select audio tracks and it only plays the first one it sees. It doesn’t support DTS audio but I’d like to keep it around.

  • FFmpeg image disappears in merged video

    10 novembre 2016, par utdev

    I am putting an image above a video like this :

    ffmpeg -i background.mpg -i image.png -filter_complex "[0:v][1:v]
    overlay=25:25:enable=’between(t,0,20)’" -vcodec libx264 -crf 25
    -pix_fmt yuv420p -t 30 -c:a copy newBackground.mpg

    The issue is that background.mpg has a duration of 30 seconds, but if I "merge" the image with the video, the images disappears after ~ 20 seconds, but the background still plays up to 30 seconds (without the images), why does this happen and how do I solve this issue ?