Recherche avancée

Médias (2)

Mot : - Tags -/documentation

Autres articles (30)

  • 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

  • Ajouter notes et légendes aux images

    7 février 2011, par

    Pour pouvoir ajouter notes et légendes aux images, la première étape est d’installer le plugin "Légendes".
    Une fois le plugin activé, vous pouvez le configurer dans l’espace de configuration afin de modifier les droits de création / modification et de suppression des notes. Par défaut seuls les administrateurs du site peuvent ajouter des notes aux images.
    Modification lors de l’ajout d’un média
    Lors de l’ajout d’un média de type "image" un nouveau bouton apparait au dessus de la prévisualisation (...)

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

Sur d’autres sites (5358)

  • WebM Cabal

    8 octobre 2010, par Multimedia Mike — On2/Duck, VP8

    I traveled to a secret clubhouse today to take part in a clandestine meeting to discuss exactly how WebM will rule over all that you see and hear on the web. I can’t really talk about it. But I can show you the cool hat I got :



    Yeah, you’re jealous.

    The back of the hat has an Easter egg for video codec nerds– the original Duck Corporation logo (On2′s original name) :



    Former employees of On2 (now Googlers) were well-represented. It was an emotional day of closure as I met the person — the only person to date — who contacted me with a legal threat so many years ago. He still remembered me too.

    I met a lot of people involved in creating various Duck and On2 codecs and learned a lot of history and lore behind then– history I hope to be able to document one day.

    I’m glad I got that first rough draft of a toy VP8 encoder done in time for the meeting. It was the subject of much mirth.

  • What could change the fps when copying frames from mp4 file to mp4 without reencoding ?

    27 novembre 2012, par theateist

    I try to copy video from in.mp4 to out.mp4 without reincoding. I'm using the code example suggested by pogorskiy here. The copy process success, but the video is played very fast. I checked the fps of both files with MediaInfo. The fps of "in.mp4" is 25 fps and "out.mp4" it 533fps. I don't understand what changing the fps to 533 if I construct outStream from inStream ?

    I hope I explained myself correctly.

  • Codec profile of AAC media file [closed]

    9 janvier 2013, par Pavle

    I need to find out codec profile of some AAC media file. (I want to know if that file iz HE-ACC or some other codec profile).

    I tried with source like this :

    AVFormatContext* pFormatCtx;
    avformat_open_input(pFormatCtx, input_path, NULL, NULL);
    ..
    avformat_find_stream_info((*pFormatCtx), NULL);
    ..
    /* I hope i'll get FF_PROFILE_AAC_MAIN or FF_PROFILE_AAC_LOW or FF_PROFILE_AAC_HE ... */
    int wanted_profile = pFormatCtx->streams[audio_stream_index]->codec->profile;

    /* but I always get FF_PROFILE_UNKNOWN :( */

    Can anyone help me to find out how to do it, please.