Recherche avancée

Médias (91)

Autres articles (64)

  • MediaSPIP Core : La Configuration

    9 novembre 2010, par

    MediaSPIP Core fournit par défaut trois pages différentes de configuration (ces pages utilisent le plugin de configuration CFG pour fonctionner) : une page spécifique à la configuration générale du squelettes ; une page spécifique à la configuration de la page d’accueil du site ; une page spécifique à la configuration des secteurs ;
    Il fournit également une page supplémentaire qui n’apparait que lorsque certains plugins sont activés permettant de contrôler l’affichage et les fonctionnalités spécifiques (...)

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

  • Capture ffmpeg's metadata output in powershell

    17 mars 2016, par xdhmoore

    I’m trying to capture the output of ffmpeg in PowerShell(tm) to get some metadata on some ogg & mp3 files. But when I do :

    ffmpeg -i file.ogg 2>&1 | sls GENRE

    The output includes a bunch of lines without my matching string, "GENRE" :

         album_artist    : Post Human Era
         ARTIST          : Post Human Era
         COMMENT         : Visit http://posthumanera.bandcamp.com
         DATE            : 2013
         GENRE           : Music
         TITLE           : Supplies
         track           : 1
    At least one output file must be specified

    I am guessing something is different in the encoding. ffmpeg’s output is colored, so maybe there are color control characters in the output that are breaking things ? Or, maybe ffmpeg’s output isn’t playing nicely with powershell’s default UTF-16 ? I can’t figure out if there is another way to redirect stderr and remove the color characters or change the encoding of stderr.

    EDIT :
    Strangely, I also get indeterminate output. Sometimes the output is as shown above. Sometimes with precisely the same command the output is :

         GENRE           :

    enter image description here

    Which makes slightly more sense, but is still missing the part of the line I care about (’Music’).

    Somewhere powershell is interpreting something as newlines that is not newlines.

  • intrax8 : Use local destination buffers

    20 février 2016, par Vittorio Giovara
    intrax8 : Use local destination buffers
    

    These buffers are just a way to store frame pointers and be able to
    modify them without touching the original ones.

    The two dependent decoders (WMV2 and VC1) do not need special care for
    these fields : the former does not seem to use the dest buffers, while
    the latter reinits them every time to the current frame data buffers.

    So only keep a local copy rather than the one from mpegvideo.

    • [DBH] libavcodec/intrax8.c
    • [DBH] libavcodec/intrax8.h
  • FFMPEG video conversion for pygame

    19 avril 2016, par Vladimir Shevyakov

    I am currently making a program on python (3) using the pygame module. One of the things I need it to do is to play a video which is currently in AVI format.

    From what I managed to understand from the pygame.movie documentation I have to use FFMPEG and not another program to convert the video to an MPEG (I tried it with NCH Prism and the result was quite memorable).

    I managed to convert my file to an MPG using the sample command found in the pygame.movie documentation (ffmpeg -i <infile> -vcodec mpeg1video -acodec libmp3lame -intra </infile>) but the video quality dropped very much. I tried looking at different cites but they never actually had a working example...

    Is there a way to keep the current video quality ? I don’t really care about the file size...

    Thanks in advance !