Recherche avancée

Médias (3)

Mot : - Tags -/collection

Autres articles (44)

  • 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 (7209)

  • Using FFMPEG to stream continuously videos files to a RTMP server

    16 avril 2017, par KKetch

    ffmpeg handles RTMP streaming as input or output, and it’s working well.

    I want to stream some videos (a dynamic playlist managed by a python script) to a RTMP server, and i’m currently doing something quite simple : streaming my videos one by one with FFMPEG to the RTMP server, however this causes a connection break every time a video end, and the stream is ready to go when the next video begins.

    I would like to stream those videos without any connection breaks continuously, then the stream could be correctly viewed.

    I use this command to stream my videos one by one to the server

    ffmpeg -re -y -i myvideo.mp4 -vcodec libx264 -b:v 600k -r 25 -s 640x360 \
    -filter:v yadif -ab 64k -ac 1 -ar 44100 -f flv \
    "rtmp://mystreamingserver/app/streamName"

    I looked for some workarounds over the internet for many days, and i found some people talking about using a named pipe as input in ffmpeg, I’ve tried it and it didn’t work well since ffmpeg does not only close the RTMP stream when a new video comes but also closes itself.

    Is there any way to do this ? (stream a dynamic playlist of videos with ffmpeg to RTMP server without connection breaks

  • Where can I download images/videos for all kind of pixel formats ?

    15 janvier, par Bukibarak

    I am developing a software that use FFMPEG AVPixelFormat for images and videos. I want it to be compatible with most common pixel formats.

    


    Is there a website where I can download images/videos that have all kind of pixel formats for testing purpose (like RGBA, BGRA, YUV, Greyscale, ...) ?

    


  • Ffmpeg multiple videos resize and crop [closed]

    27 juin 2022, par user14809144

    I would like to crop and resize multiple videos that exist in one folder using Ffmpeg.

    


    I did it with a single video but unfortunately, I don't know how to apply it to multiple videos in one line of command.

    


    Crop ; code for single video

    


    ffmpeg -i input1.mp4 -filter:v "crop=1000:1000” output1.mp4

    


    Resize ; code for single video

    


    ffmpeg -i output1.mp4 -vf scale=512:512 -preset slow -crf 18 output2.mp4

    


    I want to crop multiple videos (more than 50 videos in one folder) to be 1000X1000 and then resize them again to be 512X512.

    


    Any help ? advice ?