Recherche avancée

Médias (1)

Mot : - Tags -/net art

Autres articles (61)

  • Les autorisations surchargées par les plugins

    27 avril 2010, par

    Mediaspip core
    autoriser_auteur_modifier() afin que les visiteurs soient capables de modifier leurs informations sur la page d’auteurs

  • Support de tous types de médias

    10 avril 2011

    Contrairement à beaucoup de logiciels et autres plate-formes modernes de partage de documents, MediaSPIP a l’ambition de gérer un maximum de formats de documents différents qu’ils soient de type : images (png, gif, jpg, bmp et autres...) ; audio (MP3, Ogg, Wav et autres...) ; vidéo (Avi, MP4, Ogv, mpg, mov, wmv et autres...) ; contenu textuel, code ou autres (open office, microsoft office (tableur, présentation), web (html, css), LaTeX, Google Earth) (...)

  • Supporting all media types

    13 avril 2011, par

    Unlike most software and media-sharing platforms, MediaSPIP aims to manage as many different media types as possible. The following are just a few examples from an ever-expanding list of supported formats : images : png, gif, jpg, bmp and more audio : MP3, Ogg, Wav and more video : AVI, MP4, OGV, mpg, mov, wmv and more text, code and other data : OpenOffice, Microsoft Office (Word, PowerPoint, Excel), web (html, CSS), LaTeX, Google Earth and (...)

Sur d’autres sites (10555)

  • nomenclature #2520 (Nouveau) : extensions’ vs ’vérouillés

    2 février 2012, par jluc -

    Le vocable jusque là employé pour désigner les extensions est ’extensions’. Soudainement SVP introduit le terme ’vérouillé’. Ce sont 2 termes très distants, alors qu’ils désignent la même chose. Ce n’est pas cohérent, et l’utilisateur est 2 fois au lieu d’une face à un terme qu’il ne connait pas. (...)

  • avcodec/vaapi_encode : move pic->input_surface initialization to encode_alloc

    2 janvier 2024, par Tong Wu
    avcodec/vaapi_encode : move pic->input_surface initialization to encode_alloc
    

    When allocating the VAAPIEncodePicture, pic->input_surface can be
    initialized right in the place. This movement simplifies the send_frame
    logic and is the preparation for moving vaapi_encode_send_frame to the base layer.

    Signed-off-by : Tong Wu <tong1.wu@intel.com>

    • [DH] libavcodec/vaapi_encode.c
  • RTMP Unknown option buffer

    24 février 2017, par user2108727

    Setting up a livestream via ffmpeg, but I get an error about the buffer. This is my .sh file code :

    #! /bin/bash

    # streaming on Ubuntu via ffmpeg.
    # see http://ubuntuguide.org/wiki/Screencasts for full documentation

    # input resolution, currently fullscreen.
    # you can set it manually in the format "WIDTHxHEIGHT" instead.
    INRES="1920x1200"

    # output resolution.
    # keep the aspect ratio the same or your stream will not fill the display.
    OUTRES="1280x720"

    # input audio. You can use "/dev/dsp" for your primary audio input.
    #INAUD="pulse"

    # target fps
    FPS="30"

    # video preset quality level.
    # more FFMPEG presets avaiable in /usr/share/ffmpeg
    QUAL="ultrafast"

    # stream key. You can set this manually, or reference it from a hidden file    
    like what is done here.
    STREAM_KEY=$(cat ~/.twitch_key)

    # stream url. Note the formats for twitch.tv and justin.tv
    # twitch:"rtmp://live.twitch.tv/app/$STREAM_KEY"
    # justin:"rtmp://live.justin.tv/app/$STREAM_KEY"
    STREAM_URL="rtmp://live-cdg.twitch.tv/app/$STREAM_KEY"

    ffmpeg \
    -f alsa -ac 2 -i "$INAUD" \
    -f x11grab -s "$INRES" -r "$FPS" -i :50.0 \
    -vcodec libx264 -s "$OUTRES" -preset "$QUAL" -crf 22 \
    -acodec libmp3lame -threads 6 -q:a 0 -b:a 128k \
    -f flv -ar 44100 "$STREAM_URL"

    Now when I run the .sh file, I get this error :

    Unknown option buffer
    Valid RTMP options are:

    and then a list of valid options.

    Does anyone know how to solve this ? Thanks in advance !

    Misterff1