Recherche avancée

Médias (91)

Autres articles (48)

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

  • avformat/matroskaenc : Fix writing of markers

    28 août 2023, par Steinar H. Gunderson
    avformat/matroskaenc : Fix writing of markers
    

    When the marker writing code was merged from libav to FFmpeg
    in dc62016c, it failed to take into account that the meaning of
    cluster_pos had changed in bda5b662 ; in particular, the special
    value for “I'm not currently working on a cluster” had changed
    from 0 to -1. This makes the avio_write_marker() call never
    be called. Update the if statement to fix it.

    Fixes : Ticket9843
    Signed-off-by : Steinar H. Gunderson <steinar+ffmpeg@gunderson.no>
    Signed-off-by : Martin Storsjö <martin@martin.st>

    • [DH] libavformat/matroskaenc.c
  • Add multiple overlapping audio files to a video [duplicate]

    15 juin 2024, par JTinkers

    Essentially, I'm trying to achieve this :&#xA;enter image description here

    &#xA;

    The only problem with that is - I'm using ffmpeg programatically, meaning - there won't be any predefined sounds at predefined times, instead - I have code that generates these and executes ffmpeg with the following arguments :

    &#xA;

    -f concat -r 60 -safe 0 -i {VIDEO_OUTPUT_PATH}/{fileName}.txt&#xA;{audioArgs}&#xA;-c:v libx264 -preset fast -crf 23 -vf \"scale=1080:1920,format=yuv420p\"&#xA;-c:a aac -b:a 192k&#xA;-af \"afade=t=out:st={totalSeconds - 3}:d=3\"&#xA;{mapArgs} &#xA;-async 1 -movflags &#x2B;faststart -t {totalSeconds} {outputPath}"&#xA;

    &#xA;

    Presumably, if there are 3 sounds (like on the image), mapArgs will be replaced with :

    &#xA;

    -map 0 -map 1 -map 2 -map 3&#xA;

    &#xA;

    and audioArgs will be replaced with :

    &#xA;

    -itsoffset 0 -i bg.mp3 -itsoffset 13 sound1.mp3 -itsoffset 37 sound2.mp3&#xA;

    &#xA;

    However, it seems to be playing background music and the video only - no other sounds.

    &#xA;

  • FFMPEG run time error

    17 mai 2014, par saif

    I added FFMPEG to the references and the build is succeeded but when i run this error is appear

    Could not load file or assembly ’AForge.Video.FFMPEG.dll’ or one of
    its dependencies. The specified module could not be found.

    Looked at the Aforge page
    http://www.aforgenet.com/framework/docs/html/4ee1742c-44d3-b250-d6aa-90cd2d606611.htm and Find this..

    Make sure you have FFmpeg binaries (DLLs) in the output folder of your
    application in order to use this class successfully. FFmpeg binaries
    can be found in Externals folder provided with AForge.NET framework’s
    distribution.

    But I did not understand the meaning of it and how can I do that whether it is the reason of error