Recherche avancée

Médias (91)

Autres articles (92)

  • Personnaliser en ajoutant son logo, sa bannière ou son image de fond

    5 septembre 2013, par

    Certains thèmes prennent en compte trois éléments de personnalisation : l’ajout d’un logo ; l’ajout d’une bannière l’ajout d’une image de fond ;

  • Ecrire une actualité

    21 juin 2013, par

    Présentez les changements dans votre MédiaSPIP ou les actualités de vos projets sur votre MédiaSPIP grâce à la rubrique actualités.
    Dans le thème par défaut spipeo de MédiaSPIP, les actualités sont affichées en bas de la page principale sous les éditoriaux.
    Vous pouvez personnaliser le formulaire de création d’une actualité.
    Formulaire de création d’une actualité Dans le cas d’un document de type actualité, les champs proposés par défaut sont : Date de publication ( personnaliser la date de publication ) (...)

  • 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

Sur d’autres sites (8006)

  • How to transmit videos directly from the website to RTMP server instead of using OBS ? [closed]

    28 décembre 2024, par Cường Lê Sỹ

    I had a server to receive a specific RTMP video like RTMP : //domain.com/show and use OBS to record videos, what I have to do to be able to record videos on my own website and transmit it. . Access RTMP server instead of using OBS or any code can do that, thank you

    


    I hope to be able to record videos directly on my website and play it back at the viewer page, like a livestream.

    


  • How to use ffmpeg to merge the median of pixels in 2 videos

    24 avril 2020, par jocelyn

    I'm new to coding and ffmpeg so please go easy on me !

    



    I am trying to merge 2 videos (they are identical) using the median of the each pixel. I have to use ffmpeg to do this but am unable to find any information online.

    



    I have managed to merge 2 identical videos using the average of each pixel using the following command(I think at least, I'm not sure how to tell if this worked but the command didn't give any errors so I assume it did)
- "ffmpeg -i video1.avi -i video2.avi -filter_complex "blend=all_mode='average'" mergedvideo.avi"

    



    Can anyone help provide more information on how I can use ffmpeg to merge the videos using the median of each video pixel ?

    



    Thanks in advance !

    


  • Decode `ts` videos on GPUs ?

    30 octobre 2018, par Sam Radhakrishnan

    I have a Nvidia Geforce GTX 1080Ti that I am using for video processing. I am trying to decode videos on the GPU and am able to decode Mpeg-4 videos. However the problem is when I try using this for ts files. It errors out with a message saying that the format is unsupported. I am using opencv::cudacodec::VideoReader for decoding videos.

    I have tried a couple of things-

    • Spawning an encoding session to encode ts to mp4 and then decode. However this seems like an overkill.
    • Decode using the CPU and then upload the frames to GPU for processing. This seems to be the best solution right now. However it still takes almost 4 times the time it takes for mp4 files on the GPU.
    • Use ffmpeg to copy the audio/video streams and change the container to mp4. This leads to almost twice the number of frames when decoded on the GPU

    I am looking for a solution to decode ts files on the GPU.