Advanced search

Medias (91)

Other articles (13)

  • Le profil des utilisateurs

    12 April 2011, by

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

  • Librairies et logiciels spécifiques aux médias

    10 December 2010, by

    Pour un fonctionnement correct et optimal, plusieurs choses sont à prendre en considération.
    Il est important, après avoir installé apache2, mysql et php5, d’installer d’autres logiciels nécessaires dont les installations sont décrites dans les liens afférants. Un ensemble de librairies multimedias (x264, libtheora, libvpx) utilisées pour l’encodage et le décodage des vidéos et sons afin de supporter le plus grand nombre de fichiers possibles. Cf. : ce tutoriel; FFMpeg avec le maximum de décodeurs et (...)

  • Submit enhancements and plugins

    13 April 2011

    If you have developed a new extension to add one or more useful features to MediaSPIP, let us know and its integration into the core MedisSPIP functionality will be considered.
    You can use the development discussion list to request for help with creating a plugin. As MediaSPIP is based on SPIP - or you can use the SPIP discussion list SPIP-Zone.

On other websites (4664)

  • avformat/mov: split off heif item initialization to its own function

    5 October 2024, by James Almer
    avformat/mov: split off heif item initialization to its own function
    

    Signed-off-by: James Almer <jamrial@gmail.com>

    • [DH] libavformat/mov.c
  • swscale/utils: Split scaling if possible and yuv->yuv with different matrixes is...

    30 August 2015, by Michael Niedermayer
    swscale/utils: Split scaling if possible and yuv->yuv with different matrixes is requested
    

    This uses a RGB intermediate, a more optimal solution would be to perform the rematrixing
    directly in subsampled YUV, this is quite a bit more complicated though

    Fixes Ticket4805

    Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>

    • [DH] libswscale/utils.c
  • Trim or split opus on android without ffmpeg

    25 May 2021, by Omkar

    Trim or split opus on android without ffmpeg

    &#xA;

    The opus file could be contained in any format supported by ffmpeg export&#xA;(Created when building the app,ffmpeg too heavy to include in app)

    &#xA;

    I tried genVideoUsingMuxer , MediaExtractor ,MediaMetadataRetriever but it fails with error

    &#xA;

    Unsupported mime &#x27;audio/opus&#x27;&#xA;java.lang.IllegalStateException: Failed to add the track to the muxerat android.media.MediaMuxer.nativeAddTrack(Native Method)&#xA;at android.media.MediaMuxer.addTrack(MediaMuxer.java:660)&#xA;

    &#xA;

    Any way i can trim the audio on android with a lightweight solution

    &#xA;

    Reencoding is not needed but its ok if output format is anything playable on android

    &#xA;