Recherche avancée

Médias (0)

Mot : - Tags -/albums

Aucun média correspondant à vos critères n’est disponible sur le site.

Autres articles (70)

  • MediaSPIP version 0.1 Beta

    16 avril 2011, par

    MediaSPIP 0.1 beta est la première version de MediaSPIP décrétée comme "utilisable".
    Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
    Pour avoir une installation fonctionnelle, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
    Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...)

  • MediaSPIP 0.1 Beta version

    25 avril 2011, par

    MediaSPIP 0.1 beta is the first version of MediaSPIP proclaimed as "usable".
    The zip file provided here only contains the sources of MediaSPIP in its standalone version.
    To get a working installation, you must manually install all-software dependencies on the server.
    If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...)

  • Amélioration de la version de base

    13 septembre 2013

    Jolie sélection multiple
    Le plugin Chosen permet d’améliorer l’ergonomie des champs de sélection multiple. Voir les deux images suivantes pour comparer.
    Il suffit pour cela d’activer le plugin Chosen (Configuration générale du site > Gestion des plugins), puis de configurer le plugin (Les squelettes > Chosen) en activant l’utilisation de Chosen dans le site public et en spécifiant les éléments de formulaires à améliorer, par exemple select[multiple] pour les listes à sélection multiple (...)

Sur d’autres sites (11102)

  • How To Implement FFMPEG LL-HLS

    8 septembre 2022, par Devin Dixon

    How is Low Latency HLS achieved with FFMPEG ? From my understanding thus far, I am seeing changes around the -f option. For example :

    


    -f dash -method PUT http://example.com/live/manifest.mpd


    


    But there isn't much information researching on LL-HLS with ffmpeg. Making smaller segments I am finding comes at the cost of choppiness in the stream. Has anyone done this ? And is the protocol actually adopted or just in "theory".

    


  • How to animate harcoded subtitles (.ass) or drawtext in ffmpeg ?

    25 avril 2023, par AbsoluteSith

    I'm trying to add hardcoded text or subtitles to a video.
I've used .ass file to easily add subtitles with custom background color, font color, font size and placement and fade animation.

    


    But now I want to add slide animation to the text.
Also, note that if this is not possible in .ass (Advanced Substation Alpha) how would one go about trying to add this using DrawText ?

    


    Also not sure how I can split the text into multiple lines. (Wouldn't this involve knowing the size of the text and splitting)

    


    Sample of what I'm trying to achieve

    


  • Merge Audio and Video using ffmpeg - Python Lib [duplicate]

    15 janvier 2021, par badr

    i have tried

    


    import ffmpeg
video = ffmpeg.input('video.mp4')
audio = ffmpeg.input('audio.mp3')
ffmpeg.merge_outputs(video, audio).run()


    


    and it returns

    


    TypeError: Expected incoming stream(s) to be of one of the following types: ffmpeg.nodes.OutputStream; got <class>&#xA;</class>

    &#xA;

    and i have tried

    &#xA;

    import ffmpeg&#xA;video = ffmpeg.input(&#x27;video.mp4&#x27;)&#xA;audio = ffmpeg.input(&#x27;audio.mp3&#x27;)&#xA;ffmpeg.concat(video, audio, v=1, a=1).output(&#x27;finished_video.mp4&#x27;).run()&#xA;

    &#xA;

    and it returns

    &#xA;

    FileNotFoundError: [WinError 2] The system cannot find the file specified&#xA;

    &#xA;

    also i did try

    &#xA;

    import subprocess    &#xA;subprocess.run("ffmpeg -i video.mp4 -i audio.mp3 -c copy output.mp4")&#xA;

    &#xA;

    and it returns

    &#xA;

    &#x27;ffmpeg&#x27; is not recognized as an internal or external command&#xA;

    &#xA;

    how can i do it right ?

    &#xA;