Recherche avancée

Médias (0)

Mot : - Tags -/serveur

Aucun média correspondant à vos critères n’est disponible sur le site.

Autres articles (13)

  • Le plugin : Podcasts.

    14 juillet 2010, par

    Le problème du podcasting est à nouveau un problème révélateur de la normalisation des transports de données sur Internet.
    Deux formats intéressants existent : Celui développé par Apple, très axé sur l’utilisation d’iTunes dont la SPEC est ici ; Le format "Media RSS Module" qui est plus "libre" notamment soutenu par Yahoo et le logiciel Miro ;
    Types de fichiers supportés dans les flux
    Le format d’Apple n’autorise que les formats suivants dans ses flux : .mp3 audio/mpeg .m4a audio/x-m4a .mp4 (...)

  • Encoding and processing into web-friendly formats

    13 avril 2011, par

    MediaSPIP automatically converts uploaded files to internet-compatible formats.
    Video files are encoded in MP4, Ogv and WebM (supported by HTML5) and MP4 (supported by Flash).
    Audio files are encoded in MP3 and Ogg (supported by HTML5) and MP3 (supported by Flash).
    Where possible, text is analyzed in order to retrieve the data needed for search engine detection, and then exported as a series of image files.
    All uploaded files are stored online in their original format, so you can (...)

  • Taille des images et des logos définissables

    9 février 2011, par

    Dans beaucoup d’endroits du site, logos et images sont redimensionnées pour correspondre aux emplacements définis par les thèmes. L’ensemble des ces tailles pouvant changer d’un thème à un autre peuvent être définies directement dans le thème et éviter ainsi à l’utilisateur de devoir les configurer manuellement après avoir changé l’apparence de son site.
    Ces tailles d’images sont également disponibles dans la configuration spécifique de MediaSPIP Core. La taille maximale du logo du site en pixels, on permet (...)

Sur d’autres sites (6297)

  • 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

    


  • 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.

  • 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