Recherche avancée

Médias (91)

Autres articles (68)

  • Organiser par catégorie

    17 mai 2013, par

    Dans MédiaSPIP, une rubrique a 2 noms : catégorie et rubrique.
    Les différents documents stockés dans MédiaSPIP peuvent être rangés dans différentes catégories. On peut créer une catégorie en cliquant sur "publier une catégorie" dans le menu publier en haut à droite ( après authentification ). Une catégorie peut être rangée dans une autre catégorie aussi ce qui fait qu’on peut construire une arborescence de catégories.
    Lors de la publication prochaine d’un document, la nouvelle catégorie créée sera proposée (...)

  • Création définitive du canal

    12 mars 2010, par

    Lorsque votre demande est validée, vous pouvez alors procéder à la création proprement dite du canal. Chaque canal est un site à part entière placé sous votre responsabilité. Les administrateurs de la plateforme n’y ont aucun accès.
    A la validation, vous recevez un email vous invitant donc à créer votre canal.
    Pour ce faire il vous suffit de vous rendre à son adresse, dans notre exemple "http://votre_sous_domaine.mediaspip.net".
    A ce moment là un mot de passe vous est demandé, il vous suffit d’y (...)

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

Sur d’autres sites (5304)

  • Inline code tweaks for API demo nav

    27 avril 2013, par scottschiller
    Inline code tweaks for API demo nav
  • Fix nonsense MPEG-4 hwaccel code.

    21 août 2013, par Reimar Döffinger
    Fix nonsense MPEG-4 hwaccel code.
    

    Issues with the code :
    1) The skip_bits_long breaks packed B-frames since we skip
    of the packed frame, even for VDPAU.
    2) Calling ff_h263_find_resync_marker_reverse is nonsense for MPEG-4,
    and for H.263 the only code using this (vaapi_mpeg4) explicitly reverts
    this change !
    3) mb_x/mb_y are always 0 when vaapi_mpeg4_decode_slice, so doing
    computations with them is just obfuscation
    4) due to not updating mb_y the code would always go into the error
    resilience case, causing nonsense error messages and maybe further
    issues.

    While tested to fix the data provided to the decoder in case of
    VDPAU so it is the same as for the non-hwaccel code, the VA-API code
    was not tested to still work, and adding regression testing even
    as a quick hack is much more complicated for it.

    Signed-off-by : Reimar Döffinger <Reimar.Doeffinger@gmx.de>

    • [DH] libavcodec/h263dec.c
    • [DH] libavcodec/vaapi_mpeg4.c
  • Cannot find ffmpeg when moving the code to a new computer

    20 septembre 2021, par Omersr

    I have a code that works on my computer but when I moved it to a new one it doesn't find the ffmpeg dependency.&#xA;It happens on these lines of code :

    &#xA;

        var videoshow = require(&#x27;videoshow&#x27;)&#xA;    var image = [{path: &#x27;./screenshot.jpg&#x27;}]&#xA;    var videoOption = { &#xA;      loop: 10,&#xA;      fps: 25,&#xA;      transition: false,&#xA;      transitionDuration: 0, // seconds&#xA;      videoBitrate: 1024,&#xA;      videoCodec: &#x27;libx264&#x27;,&#xA;      size: &#x27;640x?&#x27;,&#xA;      audioBitrate: &#x27;128k&#x27;,&#xA;      audioChannels: 2,&#xA;      format: &#x27;mp4&#x27;,&#xA;      pixelFormat: &#x27;yuv420p&#x27;&#xA;    }&#xA;    //call the videoshow library&#xA;     videoshow(image,videoOption).save(filename&#x2B;"_"&#x2B;"movie.mp4").on(&#x27;start&#x27;,function(command){&#xA;         console.log("conversion started" &#x2B; command)&#xA;    }).on(&#x27;error&#x27;,function(err,stdout,stderr){&#xA;         console.log("some error occured"&#x2B; err)&#xA;     }).on(&#x27;end&#x27;,function(output){&#xA;         console.log("conversion complete "&#x2B; output)&#xA;

    &#xA;

    It throws an error "Cannot find ffmpeg".&#xA;I tried to do npm install or npm install ffmpeg but it didn't help.&#xA;I think this happens because I don't know how to make dependencies work on a different computer.&#xA;Any help would be appreciated !

    &#xA;