Recherche avancée

Médias (39)

Mot : - Tags -/audio

Autres articles (109)

  • Le profil des utilisateurs

    12 avril 2011, par

    Chaque utilisateur dispose d’une page de profil lui permettant de modifier ses informations personnelle. Dans le menu de haut de page par défaut, un élément de menu est automatiquement créé à l’initialisation de MediaSPIP, visible uniquement si le visiteur est identifié sur le site.
    L’utilisateur a accès à la modification de profil depuis sa page auteur, un lien dans la navigation "Modifier votre profil" est (...)

  • 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

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

Sur d’autres sites (12578)

  • avcodec/ppc/h264dsp : POWER LE support in h264_idct_dc_add_internal() fix vec_lvsl bug

    14 mai 2015, par Rong Yan
    avcodec/ppc/h264dsp : POWER LE support in h264_idct_dc_add_internal() fix vec_lvsl bug
    

    We got defective video when use GCC 4.9.2 instead of GCC 4.9.1 to compile FFMEPG. And further found
    that GCC 4.8 and 4.9 need patch to fix the lvsl/lvsr bug on POWER LE, and GCC 5.1 contains
    the correct code since its release. The message on gcc-patches requesting approval for lvsl/lvsr
    patch is at https://gcc.gnu.org/ml/gcc-patches/2014-10/msg00228.html.

    The fixed code avoids using lvsl and will not depends on GCC version, also it uses less instructions on POWER LE.

    Signed-off-by : Michael Niedermayer <michaelni@gmx.at>

    • [DH] libavcodec/ppc/h264dsp.c
  • Anomalie #4812 (En cours) : Faire des pull requests

    6 juin 2021, par George Kandalaft

    Hello

    Il y a moyen de faire des pull requests dans spip core ?
    Il y a pas mal d’ajustements de l’interface en RTL et c’est long de toujours créer des issues.

    Merci

  • Set custom cookie to ffmpeg http request

    18 février 2016, par Dima

    I use ijkplayer at my project to show a video stream (it based on ffmpeg lib), but I had change request and now I have to send some data in cookie for each request to the server. So I figured out that there’s http.c file which works with each request and added test cookie to cookie field

    char data[] = {'t','e','s','t','=','r','2','d','2',';','p','a','t','h','=','/',';'};
    s->cookies = data;

    I looked into wireshark, and I saw that my requests was sent with this cookie, but after first sending I receive this signal :

    libc: Fatal signal 11 (SIGSEGV), code 1, fault addr 0xa0c013e8 in tid 27629 (ff_read)

    Maybe somebody had same problem and can help me