Recherche avancée

Médias (2)

Mot : - Tags -/kml

Autres articles (71)

  • Demande de création d’un canal

    12 mars 2010, par

    En fonction de la configuration de la plateforme, l’utilisateur peu avoir à sa disposition deux méthodes différentes de demande de création de canal. La première est au moment de son inscription, la seconde, après son inscription en remplissant un formulaire de demande.
    Les deux manières demandent les mêmes choses fonctionnent à peu près de la même manière, le futur utilisateur doit remplir une série de champ de formulaire permettant tout d’abord aux administrateurs d’avoir des informations quant à (...)

  • Organiser par catégorie

    17 mai 2013, par

    Dans MédiaSPIP, une rubrique a 2 noms : catégorie et rubrique.
    Les différents documents stockés dans MédiaSPIP peuvent être rangés dans différentes catégories. On peut créer une catégorie en cliquant sur "publier une catégorie" dans le menu publier en haut à droite ( après authentification ). Une catégorie peut être rangée dans une autre catégorie aussi ce qui fait qu’on peut construire une arborescence de catégories.
    Lors de la publication prochaine d’un document, la nouvelle catégorie créée sera proposée (...)

  • Modifier la date de publication

    21 juin 2013, par

    Comment changer la date de publication d’un média ?
    Il faut au préalable rajouter un champ "Date de publication" dans le masque de formulaire adéquat :
    Administrer > Configuration des masques de formulaires > Sélectionner "Un média"
    Dans la rubrique "Champs à ajouter, cocher "Date de publication "
    Cliquer en bas de la page sur Enregistrer

Sur d’autres sites (5993)

  • vf_hwmap : Add reverse mapping for hardware frames

    4 mars 2017, par Mark Thompson
    vf_hwmap : Add reverse mapping for hardware frames
    

    This is something of a hack. It allocates a new hwframe context for
    the target format, then maps it back to the source link and overwrites
    the input link hw_frames_ctx so that the previous filter will receive
    the frames we want from ff_get_video_buffer(). It may fail if
    the previous filter imposes any additional constraints on the frames
    it wants to use as output.

    (cherry picked from commit 81a4cb8e58636d4efd200c2b4fec786a7e948d8b)

    • [DH] libavfilter/vf_hwmap.c
  • How to convert a UDP stream to RTMP with FFmpeg ?

    20 avril 2020, par John Riselvato

    It seems the webcam on a macOS streams data via MPEG files which works great with UDP but I want to use this stream for YouTube which only accepts RTMP. Here's what my script looks like based on the documentation :

    



    $ ffmpeg -f avfoundation -framerate 30 -i "0" -f FLV "/"


    



    Which Youtube indicates isn't getting any data from it. 
 have found some weird hack that actually lets me stream my webcam but it's totally non-traditional. If I stream loop an input (input.mp4) an infinite amount of times and apply a random filter, my webcam streams unaffected. I don't see input.mp4 nor is the hue applied to the webcam. It's totally strange.

    



    $ ffmpeg -f avfoundation -framerate 30 -i "0" -stream_loop -1 -i input.mp4 -filter_complex "hue=H=0" -f FLV "$YOUTUBE_URL/$KEY"


    



    So I'm thinking, it has to be a UDP issue and I just need a better way to convert the stream to RTMP. Any thoughts ?

    


  • How to convert a UDP stream to RTSP with FFmpeg ?

    20 avril 2020, par John Riselvato

    It seems the webcam on a macOS streams data via MPEG files which works great with UDP but I want to use this stream for YouTube which only accepts RTSP. Here's what my script looks like based on the documentation :

    



    $ ffmpeg -f avfoundation -framerate 30 -i "0" -f FLV "/"


    



    Which Youtube indicates isn't getting any data from it. 
 have found some weird hack that actually lets me stream my webcam but it's totally non-traditional. If I stream loop an input (input.mp4) an infinite amount of times and apply a random filter, my webcam streams unaffected. I don't see input.mp4 nor is the hue applied to the webcam. It's totally strange.

    



    $ ffmpeg -f avfoundation -framerate 30 -i "0" -stream_loop -1 -i input.mp4 -filter_complex "hue=H=0" -f FLV "$YOUTUBE_URL/$KEY"


    



    So I'm thinking, it has to be a UDP issue and I just need a better way to convert the stream to RTSP. Any thoughts ?