Recherche avancée

Médias (17)

Mot : - Tags -/wired

Autres articles (90)

  • MediaSPIP v0.2

    21 juin 2013, par

    MediaSPIP 0.2 est la première version de MediaSPIP stable.
    Sa date de sortie officielle est le 21 juin 2013 et est annoncée ici.
    Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
    Comme pour la version précédente, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
    Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...)

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

  • Mise à disposition des fichiers

    14 avril 2011, par

    Par défaut, lors de son initialisation, MediaSPIP ne permet pas aux visiteurs de télécharger les fichiers qu’ils soient originaux ou le résultat de leur transformation ou encodage. Il permet uniquement de les visualiser.
    Cependant, il est possible et facile d’autoriser les visiteurs à avoir accès à ces documents et ce sous différentes formes.
    Tout cela se passe dans la page de configuration du squelette. Il vous faut aller dans l’espace d’administration du canal, et choisir dans la navigation (...)

Sur d’autres sites (13144)

  • Parse mkv file to get duration

    1er novembre 2014, par Parth Shah

    I have one mkv file that doesn’t have valid duration.
    I want to change this duration parameter manually.
    I gone through this matroska specification defined at
    http://www.matroska.org/technical/specs/index.html

    Looking at specification for matroska this contains only identification magic numbers, but this doesn’t specify length for data.

    So, My question is how to parse this matroska header so that i get duration field and change this field ?

    Any Help or advice ? Thank you in advance.

  • rtmpproto : Pass the ’live’ parameter in the right unit

    3 octobre 2013, par Martin Storsjö
    rtmpproto : Pass the ’live’ parameter in the right unit
    

    The current magic numbers passed are values in seconds, while the
    parameter itself should be passed over the wire in milliseconds.

    This makes (some/all ?) live streams from Red5 work correctly, that
    previously returned StreamNotFound even with "-rtmp_live live". After
    this commit, the default ’any’ also works on these streams.

    Signed-off-by : Martin Storsjö <martin@martin.st>

    • [DH] libavformat/rtmpproto.c
  • Revision 5215b83aea : Simplifying and inlining k_cvtlo_epi16 and k_cvthi_epi16 Simplify the k_cvtlo_e

    3 octobre 2013, par A.Mahfoodh

    Changed Paths :
     Modify /vp9/encoder/x86/vp9_dct32x32_sse2.c



    Simplifying and inlining k_cvtlo_epi16 and k_cvthi_epi16

    Simplify the k_cvtlo_epi16 and k_cvthi_epi16 to only two
    instructions. Then inlined them.

    quoting from intel MMX_App_Compute_16bit_Vector.pdf‎
    "The PMADDWD instruction multiplies four
    pairs of 16-bit numbers and produces partial sums of the results
    and can do so once per clock (with a three-clock latency)."
    so I am assuming that there will be three clock overhead after the
    last _mm_madd_pi16 command.
    Even with the overhead the number of clocks in general should be
    smaller. I am not sure though becasue I could not find information
    about number of clocks required for instructions in k_cvtlo_epi16
    and k_cvthi_epi16. I will run a test and compare the execution time.

    Change-Id : Ieda4aa338f69ad3dd196ac6e7892da3cf1b47ea7