Recherche avancée

Médias (33)

Mot : - Tags -/creative commons

Autres articles (104)

  • Soumettre améliorations et plugins supplémentaires

    10 avril 2011

    Si vous avez développé une nouvelle extension permettant d’ajouter une ou plusieurs fonctionnalités utiles à MediaSPIP, faites le nous savoir et son intégration dans la distribution officielle sera envisagée.
    Vous pouvez utiliser la liste de discussion de développement afin de le faire savoir ou demander de l’aide quant à la réalisation de ce plugin. MediaSPIP étant basé sur SPIP, il est également possible d’utiliser le liste de discussion SPIP-zone de SPIP pour (...)

  • Emballe médias : à quoi cela sert ?

    4 février 2011, par

    Ce plugin vise à gérer des sites de mise en ligne de documents de tous types.
    Il crée des "médias", à savoir : un "média" est un article au sens SPIP créé automatiquement lors du téléversement d’un document qu’il soit audio, vidéo, image ou textuel ; un seul document ne peut être lié à un article dit "média" ;

  • ANNEXE : Les plugins utilisés spécifiquement pour la ferme

    5 mars 2010, par

    Le site central/maître de la ferme a besoin d’utiliser plusieurs plugins supplémentaires vis à vis des canaux pour son bon fonctionnement. le plugin Gestion de la mutualisation ; le plugin inscription3 pour gérer les inscriptions et les demandes de création d’instance de mutualisation dès l’inscription des utilisateurs ; le plugin verifier qui fournit une API de vérification des champs (utilisé par inscription3) ; le plugin champs extras v2 nécessité par inscription3 (...)

Sur d’autres sites (11948)

  • How to add text to video by time use ffmpeg

    15 mars 2017, par Thanh Dao

    I create my slideshow with command :

    "ffmpeg" -f concat -safe 0 -i /path/to/text.txt -i /path/to/audio.mp3 -vsync vfr -pix_fmt yuv420p /path/to/output.mp4

    The contents of text.txt

    file '/path/to/img1.jpg'
    duration 6
    file '/path/to/img2.jpg'
    duration 6
    file '/path/to/img3.jpg'
    duration 6
    file '/path/to/img4.jpg'
    duration 6
    file '/path/to/img5.jpg'
    duration 6
    file '/path/to/img6.jpg'
    duration 6

    The video has been cretaed perfectly. Now I want to add titles for each images displayed. Example :

    • img1.jpg displayed, show title Title 1
    • img2.jpg displayed, show title Title 2
    • img3.jpg displayed, show title Title 3

    I search a lot but got any solutions. Anyone help me. I’m stuck

  • SDL/ffmpeg on iOS showing only blank or white screen

    3 avril 2018, par Law Gimenez

    I am following this ffmpeg/SDL tutorial using Swift and using the URL path as let urlPath = "rtsp://184.72.239.149/vod/mp4:BigBuckBunny_175k.mov" but it is only showing white or blank and it does not show anything. I want to show a window as what other tutorials say.

    I logged all the flow and there is no error. I have very little experience on SDL, let me know if some part of the code is not working.

  • avformat_open_input failed at openning local rtmp stream

    3 septembre 2019, par edhu

    I’m relatively new to this workflow and this might be a simple problem to solve. However, I haven’t found answers that matched exactly with my question. I’ve set up my nginx server with rtmp module and for testing purposes I used the following command to publish my stream :

    ffmpeg -re -i  -vcodec libx264 -vprofile baseline -acodec aac -strict -2 -f flv rtmp://localhost/show/stream

    After that, I launched up my application which is supposed to read the stream from the nginx server and it failed at

    avformat_open_input(&ctx, szFilePath, NULL, NULL);

    The returned error code is -5 and it signifies I/O issue. The szFilePath I passed in is rtmp://localhost/show/stream and I assume this will automatically work since it works when I tried to play some mp4 sample files online. I also tried rtmp://localhost:1935/show/stream and vice versa. I could view the stream being played in VLC but I can’t open it in the code. I’m not really sure what happened here. I feel like this isn’t necessarily a complicated issue but I don’t know where to start looking for possibles causes. I’d appreciate the help. Thanks !