Recherche avancée

Médias (1)

Mot : - Tags -/ogg

Autres articles (14)

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

  • Les thèmes de MediaSpip

    4 juin 2013

    3 thèmes sont proposés à l’origine par MédiaSPIP. L’utilisateur MédiaSPIP peut rajouter des thèmes selon ses besoins.
    Thèmes MediaSPIP
    3 thèmes ont été développés au départ pour MediaSPIP : * SPIPeo : thème par défaut de MédiaSPIP. Il met en avant la présentation du site et les documents média les plus récents ( le type de tri peut être modifié - titre, popularité, date) . * Arscenic : il s’agit du thème utilisé sur le site officiel du projet, constitué notamment d’un bandeau rouge en début de page. La structure (...)

  • Gestion générale des documents

    13 mai 2011, par

    MédiaSPIP ne modifie jamais le document original mis en ligne.
    Pour chaque document mis en ligne il effectue deux opérations successives : la création d’une version supplémentaire qui peut être facilement consultée en ligne tout en laissant l’original téléchargeable dans le cas où le document original ne peut être lu dans un navigateur Internet ; la récupération des métadonnées du document original pour illustrer textuellement le fichier ;
    Les tableaux ci-dessous expliquent ce que peut faire MédiaSPIP (...)

Sur d’autres sites (5393)

  • Using ffmpeg libraries in android native project

    23 juillet 2012, par SergeyD

    In my native android project I need to reduce a size of video file.

    I've already built ffmpeg libraries for android.

    How do I init ffmpeg libraries in my project and how to reduce video size without calling to ffmpeg in android command line.

    Thanks in advance !

  • FFmpeg performance on android devices

    14 juin 2017, par LemanRass

    I’m trying to make an app for android via Unity3D game engine which will basically
    be a video player.
    I decide to use FFmpeg library which i linked to my C++ plugin using Android NDK.
    I’m trying to play at least HD video and i stuck on performance problem.
    Retrieving each frame of HD resolution takes near than 40 milliseconds of time. 1000 / 40 = 25 fps which is already not good enough because i did n`t even wrote audio handling yet. But how about full hd videos ? Another video players on my device somehow playing full hd videos but i don’t even know how they do.

  • Efficiently get all bitmap frames from a video on Android

    11 mars 2017, par C Luo

    I am looking for the fastest way to get all bitmap frames from a video on Android. I tried MediaMetadataRetriever or FFmpegMediaMetadataRetriever, but they are very slow to do it repeatedly. Using MediaCodec or JNI including FFmpeg to display frames on Surface for ImageReader to catch is naive because they keep screen on and tend to play video in normal speed. So suppose we have a 10 min video, how can we get all the frames in bitmap (which can be processed by Java algorithms on Android) within some seconds ? Cheers.