Recherche avancée

Médias (0)

Mot : - Tags -/objet éditorial

Aucun média correspondant à vos critères n’est disponible sur le site.

Autres articles (15)

  • L’espace de configuration de MediaSPIP

    29 novembre 2010, par

    L’espace de configuration de MediaSPIP est réservé aux administrateurs. Un lien de menu "administrer" est généralement affiché en haut de la page [1].
    Il permet de configurer finement votre site.
    La navigation de cet espace de configuration est divisé en trois parties : la configuration générale du site qui permet notamment de modifier : les informations principales concernant le site (...)

  • Prérequis à l’installation

    31 janvier 2010, par

    Préambule
    Cet article n’a pas pour but de détailler les installations de ces logiciels mais plutôt de donner des informations sur leur configuration spécifique.
    Avant toute chose SPIPMotion tout comme MediaSPIP est fait pour tourner sur des distributions Linux de type Debian ou dérivées (Ubuntu...). Les documentations de ce site se réfèrent donc à ces distributions. Il est également possible de l’utiliser sur d’autres distributions Linux mais aucune garantie de bon fonctionnement n’est possible.
    Il (...)

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

Sur d’autres sites (4158)

  • configure : fix the check for MFX_CODEC_VP9

    19 février 2021, par Haihao Xiang
    configure : fix the check for MFX_CODEC_VP9
    

    The data structures for VP9 in mfxvp9.h is wrapped by
    MFX_VERSION_NEXT, which means those data structures have never been used
    in a public release. Actually MFX_CODEC_VP9 and other VP9 stuffs are
    added in mfxstructures.h. In addition, mfxdefs.h is included in
    mfxvp9.h, so we may use the check in this patch for MFX_CODEC_VP9

    This is in preparation for oneVPL support because mfxvp9.h is removed
    from oneVPL [1]

    [1] : https://github.com/oneapi-src/oneVPL

    • [DH] configure
  • Android screencast function with Device been Root

    4 août 2015, par facebook-1663245907229773

    I am working on how to create a smooth mp4 format video in an android device which has been rooted. (This means that we already have the permission to access frame buffer).

    But now i have no idea to figure out this function. My current idea is :

    1. Screenshot a lot of screen image according to /dev/graphics/fb0

    2. Convert images to video use ffmpeg in android

    I am facing a few issues :

    1. I cant screenshot large images. This action is very costly to the CPU which may cause the mobile phone to run unsmoothly.

    2. Even if I screenshot enough images, it take lots of time to convert images into mp4 video.

    My ffmpeg command is as below :

     ./ffmpeg -y -f image2 -i /mnt/sdcard/image%d.jpg -s 320x240 /mnt/sdcard/temp/test.mp4

    Any suggestions ?

  • How to cut and concatenate the file so it is not off-beat when the file I got the bpm from is being muxed ?

    27 janvier 2017, par P. Dee

    I am cutting files with ffmpeg based on the bpm I found in a music file. So let’s assume, the file’s bpm = 120. That means, there are 2 bps and 1 beat every 500ms.

    So I cut a video file with multiples of 500ms length, ie 500ms, 1500ms, 3000ms etc. length. But cutting it using

    ffmpeg -ss start -i fileorig.mp4 -t duration part_number.mp4

    and finally creating a mylist.txt with

    file 'part_1.mp4'
    file 'part_2.mp4'
    ...

    and adding them via

    ffmpeg -f concat -i mylist.txt -c copy output.mp4

    and replacing the audio track with the music file, makes the video be off-beat after some time.

    How to cut and concatenate the file so it is not off-beat when the file I got the bpm from is being muxed ?