Recherche avancée

Médias (5)

Mot : - Tags -/open film making

Autres articles (56)

  • Contribute to translation

    13 avril 2011

    You can help us to improve the language used in the software interface to make MediaSPIP more accessible and user-friendly. You can also translate the interface into any language that allows it to spread to new linguistic communities.
    To do this, we use the translation interface of SPIP where the all the language modules of MediaSPIP are available. Just subscribe to the mailing list and request further informantion on translation.
    MediaSPIP is currently available in French and English (...)

  • Problèmes fréquents

    10 mars 2010, par

    PHP et safe_mode activé
    Une des principales sources de problèmes relève de la configuration de PHP et notamment de l’activation du safe_mode
    La solution consiterait à soit désactiver le safe_mode soit placer le script dans un répertoire accessible par apache pour le site

  • Librairies et binaires spécifiques au traitement vidéo et sonore

    31 janvier 2010, par

    Les logiciels et librairies suivantes sont utilisées par SPIPmotion d’une manière ou d’une autre.
    Binaires obligatoires FFMpeg : encodeur principal, permet de transcoder presque tous les types de fichiers vidéo et sonores dans les formats lisibles sur Internet. CF ce tutoriel pour son installation ; Oggz-tools : outils d’inspection de fichiers ogg ; Mediainfo : récupération d’informations depuis la plupart des formats vidéos et sonores ;
    Binaires complémentaires et facultatifs flvtool2 : (...)

Sur d’autres sites (10509)

  • Convert horizontal video to mobile screen by FFmpeg

    12 mars 2023, par Dopicsi

    I use FFMEG to convert the videos. Currently, if a horizontal video is uploaded, I see it enlarged on mobile. I want the horizontal videos to be vertically centered with black at the top and bottom.

    


    The application only works in vertical mobile view, all videos are played this way.

    


  • Livestream screen capture to frontend website with low latency [closed]

    3 juin 2021, par Eddie Huang

    for a project I want to livestream my desktop on my Ubuntu server onto the frontend website (running on the same server using Node/Express).

    


    It would be the same effect as livestreaming with OBS/ffmpeg to Youtube/Twitch and embedding into my own website.&#xA;It has to be low latency (<1 second)

    &#xA;

    Could anyone point me in what protocols/applications/tutorials to use as an outline ?

    &#xA;

  • VoiceClient.play() doesn't play any audio

    13 juin 2019, par sickoofer2

    I am trying to make a music bot in discord.py, but whenever I tried to play audio using VoiceClient.play(), it never played anything, just stayed in the voice channel.

    async def play(ctx):
       for VoiceClient in client.voice_clients:
           if VoiceClient.guild == ctx.guild:
               await VoiceClient.play(discord.FFmpegPCMAudio('song.mp3'))
               embed = discord.Embed(title=f'⬅  {ctx.author.mention},  I am now playing that song.', color=0x51BDEF)
               await ctx.send(embed=embed)

    There weren’t any error messages either, just doesn’t play anything