Recherche avancée

Médias (1)

Mot : - Tags -/book

Autres articles (63)

  • L’utiliser, en parler, le critiquer

    10 avril 2011

    La première attitude à adopter est d’en parler, soit directement avec les personnes impliquées dans son développement, soit autour de vous pour convaincre de nouvelles personnes à l’utiliser.
    Plus la communauté sera nombreuse et plus les évolutions seront rapides ...
    Une liste de discussion est disponible pour tout échange entre utilisateurs.

  • 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

  • Les statuts des instances de mutualisation

    13 mars 2010, par

    Pour des raisons de compatibilité générale du plugin de gestion de mutualisations avec les fonctions originales de SPIP, les statuts des instances sont les mêmes que pour tout autre objets (articles...), seuls leurs noms dans l’interface change quelque peu.
    Les différents statuts possibles sont : prepa (demandé) qui correspond à une instance demandée par un utilisateur. Si le site a déjà été créé par le passé, il est passé en mode désactivé. publie (validé) qui correspond à une instance validée par un (...)

Sur d’autres sites (7868)

  • Python Youtube-dl convert to mp4

    27 mars 2021, par Church.exe

    (if it matters, I'm on windows)

    


    So I am trying to download a Youtube video in an Mp4 format (the program I am putting it into has limited compatibility) with audio but whatever I find online either doesn't work how people are saying it does (leading me to believe it is either outdated, missing context, or for a different OS) or is formatted in a way that doesn't make sense.

    


    My current code is :

    


    if PreferredOutput == 1:
    with youtube_dl.YoutubeDL({'format' : 'bestvideo+bestaudio[ext=m4a]/bestvideo+bestaudio/best', 'merge-output-format' : 'mp4'}) as ydl:
        ydl.download([url])


    


    but when I test it, it just seems to output the file as normal.(which I am guessing is the format the video file was uploaded to youtube as though I could be mistaken) What should I do/am I missing to make this only output (final) Mp4s ? (after the fact ffmpeg conversion or something similar is fine for my purposes)

    


  • html text overlay with ffmpeg [closed]

    28 septembre 2020, par Tom

    I have a web page where a user can write html text with online editor tool, ckeditor.com. I want to overlay the html text to a video. My understanding is that ffmpeg doesn't support text overlay with html.

    


    Here are some possible options. I haven't tried any of them. I want to find out which is the better way to doing it.

    


      

    1. Parse the html text and convert it to text and settings that ffmpeg supports ? Is it doable ? How difficult is this ?

      


    2. 


    3. Use puppeteer (server side rendering) to create a png image for image overlay. Would the font rendering on the server side matches 100% with the client side ?

      


    4. 


    5. Someone suggests to do HTML->PDF->image using imagemagick + mpdf lib to image for image overlay. Many conversions are involved. Sound complex with many points of failure.

      


    6. 


    


    Are there other better options ?

    


  • What different video formats RTMP streaming support ?

    23 octobre 2019, par Padfoot

    In almost all the online references related to FFMPEG and RTMP, I am getting -f as flv. Is there any other formats.

    (I have tried avi, mpeg and h264, but no success.)

    Currently, I am running following command -

    ffmpeg -re -i video.mp4 -f s16le -ar 48000 -ac 2 -i audio.wav -c copy -f flv rtmp://192.168.0.1:1935/myapp/stream

    The issues with -f flv in my case are -

    • It doesn’t support 48k sample rate.
    • None of my input videos are in flv format (I have to convert it to flv externally).

    P.S. - I am using VLC as RTMP player.

    EDIT -

    I am getting following error with 48k audio file -

    [flv @ 0x5650ba7afb80] FLV does not support sample rate 48000, choose from (44100, 22050, 11025)