Recherche avancée

Médias (2)

Mot : - Tags -/media

Autres articles (82)

  • Personnaliser en ajoutant son logo, sa bannière ou son image de fond

    5 septembre 2013, par

    Certains thèmes prennent en compte trois éléments de personnalisation : l’ajout d’un logo ; l’ajout d’une bannière l’ajout d’une image de fond ;

  • Participer à sa traduction

    10 avril 2011

    Vous pouvez nous aider à améliorer les locutions utilisées dans le logiciel ou à traduire celui-ci dans n’importe qu’elle nouvelle langue permettant sa diffusion à de nouvelles communautés linguistiques.
    Pour ce faire, on utilise l’interface de traduction de SPIP où l’ensemble des modules de langue de MediaSPIP sont à disposition. ll vous suffit de vous inscrire sur la liste de discussion des traducteurs pour demander plus d’informations.
    Actuellement MediaSPIP n’est disponible qu’en français et (...)

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

  • avcodec/libaomenc : Get number of operating points

    16 juin 2022, par Wan-Teh Chang
    avcodec/libaomenc : Get number of operating points
    

    Use the new codec control AV1E_GET_NUM_OPERATING_POINTS to get the
    number of operating points. This is the size of the output arrays of
    AV1E_GET_SEQ_LEVEL_IDX and AV1E_GET_TARGET_SEQ_LEVEL_IDX.

    Signed-off-by : Wan-Teh Chang <wtc@google.com>
    Signed-off-by : James Zern <jzern@google.com>

    • [DH] libavcodec/libaomenc.c
  • ffmpeg for Android - how to use Audio ?

    1er août 2014, par user2976267

    First off - if anyone knows a simpler way to get exact current playback time of audio - please tell.

    The problem with a MediaPlayer in a standard API is after searching through audio it gives back wrong getCurrentTime().

    After searching through net I’ve found that it is a common and unsoleable bug of MediaPlayer and there’s nothing you could do about it.

    So, there’s an ffmpeg library and google search is full of instructions how to compile it which is so complicated for me who know nothing about c++, But the problem - every tutorial about ffmpeg finishes with the Logging some file аnd no info how to play file, search, get current milliseconds of playback, load file, prepare it, etc.

    Can someone give me instructions on that because I can’t google it, only compiling tutorials, or suggest an easier way to playback audio , search through that and get a correct current time because MediaPlayer is correct only when playing it from the beginning

  • ffmpeg how to copy one frame for certain duration

    19 août 2018, par user889030

    Am trying to add image Overlay to video it specific duration for specific time period for which i want that video frame to be copied for specific time so that video feels like stationary and image overlay have animated effect on that specific frame .

    ffmpeg -y -i small.mp4 -i google.png -filter_complex "overlay=enable='between=(t,1,4)':x=30+t*28:y=50"  output.mp4

    the above command insert google.png to video small.mp4 between 1 to 4 sec it x=30 and y =50 where x is added with t * 28 , which create 28 pixel shift it x-axis

    currently am using this command which works ok but the problem is i do no know how to copy the frame for certain duration so that image overlay have animation effect on it