Recherche avancée

Médias (1)

Mot : - Tags -/musée

Autres articles (62)

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

  • Stopping FFMPEG from failing if one output fails

    10 septembre 2022, par Devin Dixon

    I am writing a service that is using FFMPEG to send an RTMP to multiple services. A simple example is such :

    


    ffmpeg -re -i rtmp://localhost:1935/live/xxxxxx -vcodec copy -acodec copy -attempt_recovery 1 -max_recovery_attempts 5 -drop_pkts_on_overflow 1 -f flv rtmp://a.rtmp.youtube.com/live2/xxxxxx -f flv rtmps://live-api-s.facebook.com:443/rtmp/xxxxx


    


    For the above example, occasionally the Facebook output fails and FFMPEG stops all streams. Is there a way to have ffmpeg not stop if one output fails ?

    


  • Send RTSP + Audio to RTMP server with ffmpeg

    7 février 2018, par Emiliano Spada

    I successfully sent an rtsp video stream to rtmp server (facebook) but have not been able to use audio using ffmpeg.

    If I play RTSP from camera locally audio works fine.

    This is the command I use (ubuntu server 16.0.4 LTS - ffmpeg 2.8.11) :

    sudo ffmpeg -f lavfi -i anullsrc -rtsp_transport tcp -i "rtsp://admin:admin@192.168.1.2/mode=real&idc=1&ids=1" -tune zerolatency -vcodec libx264 -g 60 -keyint_min 60 -r 30 -pix_fmt + -b:v 4000k -acodec copy -ar 44100 -b:a 128k -strict experimental -f flv  "rtmp://live-api.facebook.com:80/rtmp/STREAM-KEY"

    Here the full log :
    https://www.dropbox.com/s/vo05n0kehs75iba/ffmpeg-20180207-100549.log?dl=0

  • Acceptable Video Size For Social Network With FFMpeg

    2 août 2022, par John Santos

    I'm building a social network on Android and using FFMPeg to compress the videos before uploading them. Videos will have maximum 1 minute of duration.

    



    The original video for test has 87.74Mb 1080x1920.

    



    Trying to find the middle point between quality and file size I could get to a video size of either 26Mb with an "meh" quality (which I'm not happy with) or 33.06Mb with a good quality (scaling the video to 480x852).

    



    Problems :

    



    1) It's taking an average of 2min 30sec to compress a 1 minute video !

    



    2) Even 25Mb seems to be too much for a 1 minute video for a social network

    



    The ask :

    



    1) Any clue how do Instagram and Facebook do it to compress and upload the same video above within 1 minute !!?? I know they compress it cause the quality is not the same when on Facebook/Instagram but how to they get it done that fast ?

    



    2) What would it be an acceptable file size for a 1 minute video on Facebook/Instagram ? I'm worried about wasting too much storage for 1 minute videos. Does anyone have any idea about it ?

    




    



    I'm searching a lot about FFMpeg commands to get it better and better but it would be easier if I had in mind what I want to achieve.