Recherche avancée

Médias (1)

Mot : - Tags -/book

Autres articles (64)

  • Pas question de marché, de cloud etc...

    10 avril 2011

    Le vocabulaire utilisé sur ce site essaie d’éviter toute référence à la mode qui fleurit allègrement
    sur le web 2.0 et dans les entreprises qui en vivent.
    Vous êtes donc invité à bannir l’utilisation des termes "Brand", "Cloud", "Marché" etc...
    Notre motivation est avant tout de créer un outil simple, accessible à pour tout le monde, favorisant
    le partage de créations sur Internet et permettant aux auteurs de garder une autonomie optimale.
    Aucun "contrat Gold ou Premium" n’est donc prévu, aucun (...)

  • Des sites réalisés avec MediaSPIP

    2 mai 2011, par

    Cette page présente quelques-uns des sites fonctionnant sous MediaSPIP.
    Vous pouvez bien entendu ajouter le votre grâce au formulaire en bas de page.

  • Support audio et vidéo HTML5

    10 avril 2011

    MediaSPIP utilise les balises HTML5 video et audio pour la lecture de documents multimedia en profitant des dernières innovations du W3C supportées par les navigateurs modernes.
    Pour les navigateurs plus anciens, le lecteur flash Flowplayer est utilisé.
    Le lecteur HTML5 utilisé a été spécifiquement créé pour MediaSPIP : il est complètement modifiable graphiquement pour correspondre à un thème choisi.
    Ces technologies permettent de distribuer vidéo et son à la fois sur des ordinateurs conventionnels (...)

Sur d’autres sites (9840)

  • 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

  • Add multiple overlapping audio files to a video [duplicate]

    15 juin 2024, par JTinkers

    Essentially, I'm trying to achieve this :
enter image description here

    


    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 :

    


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


    


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

    


    -map 0 -map 1 -map 2 -map 3


    


    and audioArgs will be replaced with :

    


    -itsoffset 0 -i bg.mp3 -itsoffset 13 sound1.mp3 -itsoffset 37 sound2.mp3


    


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

    


  • 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