Recherche avancée

Médias (91)

Autres articles (98)

  • Pas question de marché, de cloud etc...

    10 avril 2011

    Le vocabulaire utilisé sur ce site essaie d’éviter toute référence à la mode qui fleurit allègrement
    sur le web 2.0 et dans les entreprises qui en vivent.
    Vous êtes donc invité à bannir l’utilisation des termes "Brand", "Cloud", "Marché" etc...
    Notre motivation est avant tout de créer un outil simple, accessible à pour tout le monde, favorisant
    le partage de créations sur Internet et permettant aux auteurs de garder une autonomie optimale.
    Aucun "contrat Gold ou Premium" n’est donc prévu, aucun (...)

  • 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

  • MediaSPIP 0.1 Beta version

    25 avril 2011, par

    MediaSPIP 0.1 beta is the first version of MediaSPIP proclaimed as "usable".
    The zip file provided here only contains the sources of MediaSPIP in its standalone version.
    To get a working installation, you must manually install all-software dependencies on the server.
    If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...)

Sur d’autres sites (7074)

  • Work around broken floating point limits on some systems.

    14 novembre 2013, par Anton Khirnov
    Work around broken floating point limits on some systems.
    

    The values of FLT,DBL_MAX,MIN macros on some systems (older musl
    libc, some BSD flavours) are not exactly representable, i.e.
    (double)DBL_MAX == DBL_MAX is false
    This violates (at least some interpretations of) the C99 standard and
    breaks code (e.g. in vf_fps) like
    double f = DBL_MAX ;
    [...]
    if (f == DBL_MAX) // f has not been changed yet
    [....]

    • [DBH] compat/float/float.h
    • [DBH] compat/float/limits.h
    • [DBH] configure
  • How to work with failover in multiple outputs in ffmpeg

    25 janvier 2014, par Sandeep

    I am working on an application where in i need to store the video as well as stream the video

    So my command is

    ffmpeg -s 1280x720 -f v4l2 -vcodec h264 -i /dev/video0 -copyinkf -vcodec
    copy -f rtp rtp://192.168.0.10:8090/ -vcodec copy test.mp4

    And now the issue is that if there is no server listening at 192.168.0.10:8090, the whole command fails.

    I want that it should write to the other outputs even if the network stream fails.

    Any help appreciated.

  • ffmpeg scale2ref works locally but does not work on server

    10 novembre 2020, par nopapi

    I'm trying to execute this command :

    


    ffmpeg -i input.mp4 -i watermark.png -filter_complex "[1][0]scale2ref=w=oh*mdar:h=ih/20[wm][vid] ;[vid][wm]overlay=10:10" -c:v libx264 -crf 23 -preset veryfast -c:a aac -ab 128k -movflags faststart output.mp4

    


    This command add a watermark on the video and compress it.

    


    It worked localy on my computer but once I deployed the app on Centos server it stopped working and this is the error I get :

    


    console output

    


    Any help please. thank you