Recherche avancée

Médias (1)

Mot : - Tags -/ogg

Autres articles (79)

  • Creating farms of unique websites

    13 avril 2011, par

    MediaSPIP platforms can be installed as a farm, with a single "core" hosted on a dedicated server and used by multiple websites.
    This allows (among other things) : implementation costs to be shared between several different projects / individuals rapid deployment of multiple unique sites creation of groups of like-minded sites, making it possible to browse media in a more controlled and selective environment than the major "open" (...)

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

  • Configurer la prise en compte des langues

    15 novembre 2010, par

    Accéder à la configuration et ajouter des langues prises en compte
    Afin de configurer la prise en compte de nouvelles langues, il est nécessaire de se rendre dans la partie "Administrer" du site.
    De là, dans le menu de navigation, vous pouvez accéder à une partie "Gestion des langues" permettant d’activer la prise en compte de nouvelles langues.
    Chaque nouvelle langue ajoutée reste désactivable tant qu’aucun objet n’est créé dans cette langue. Dans ce cas, elle devient grisée dans la configuration et (...)

Sur d’autres sites (7621)

  • x86 : SSE2/AVX idct_dequant_2x4_(dc|dconly)

    20 février 2016, par Henrik Gramner
    x86 : SSE2/AVX idct_dequant_2x4_(dc|dconly)
    

    Only used in 4:2:2. Both 8-bit and high bit-depth implemented.

    Approximate performance improvement compared to C on Ivy Bridge :

    x86-32 x86-64
    idct_dequant_2x4_dc 2.1x 1.7x
    idct_dequant_2x4_dconly 2.7x 2.0x

    Helps more on 32-bit due to the C versions being register starved.

    • [DH] common/quant.c
    • [DH] common/x86/quant-a.asm
    • [DH] common/x86/quant.h
  • How to read YUV8 data from avi file ?

    3 septembre 2013, par Srv19

    I have avi file that contains uncompressed gray video data. I need to extract frames from it. The size of file is 22 Gb.

    How do i do that ?

    I have already tried ffmpeg, but it gives me "could not find codec parameters for video stream" message - because there is no codec at work, just frames.

    Since Opencv just uses ffmpeg to read video, that rules out opencv as well.

    The only path that seems to be left is to try and dig into the raw data, but i do not know how.

    Edit : this is the code i use to read from the file with opencv. The failure occurs inside the second if. Running ffmpeg binary on the file also fails with the message above (could not find codec aprameters etc)

    /* register all formats and codecs */
    av_register_all();

    /* open input file, and allocate format context */
    if (avformat_open_input(&fmt_ctx, src_filename, NULL, NULL) < 0) {
       fprintf(stderr, "Could not open source file %s\n", src_filename);
       ret = 1;
       goto end;
    }
    fmt_ctx->seek2any = true;
    /* retrieve stream information */
    int res = avformat_find_stream_info(fmt_ctx, NULL);
    if (res < 0) {
       fprintf(stderr, "Could not find stream information\n");
       ret = 1;
       goto end;
    }

    Edit :

    Here is sample code i have tried to make the extraction : pastebin. The result i get is an unchanging buffer after every call to AVIStreamRead.

  • Rails MP4 playback working in Chrome but not Firefox

    9 février 2015, par Mark Boulder

    I got these MP4 video uploads via Paperclip that play just fine in Chrome but not in Firefox. Anybody know why that is ?

    http://runnable.com/VNkNeJ9wpNZJBEma/paperclip-mp4-problem

    Click Run and navigate to the last post to see the MP4. If you get a something bad happened from Runnable just try reloading the page.

    I tried adding Mime::Type.register "video/mp4", :mp4 to config/initializers/mime_types.rb but to no avail.