Recherche avancée

Médias (1)

Mot : - Tags -/MediaSPIP

Autres articles (54)

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

  • MediaSPIP v0.2

    21 juin 2013, par

    MediaSPIP 0.2 est la première version de MediaSPIP stable.
    Sa date de sortie officielle est le 21 juin 2013 et est annoncée ici.
    Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
    Comme pour la version précédente, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
    Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...)

  • MediaSPIP version 0.1 Beta

    16 avril 2011, par

    MediaSPIP 0.1 beta est la première version de MediaSPIP décrétée comme "utilisable".
    Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
    Pour avoir une installation fonctionnelle, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
    Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...)

Sur d’autres sites (3811)

  • Merge selected audio with camera recorded video in React Native

    13 avril 2023, par RoshaanAli

    I am trying to merge a different audio (like song audio) with the camera recorded video in react native.
Tiktok like video making functionality.
Is there any way to merge audio with the video to preview the recorded video with selected audio in react native app ??
I can use ffmpeg to merge audio and video but it is expensive task it will take more processing on mobile so that's why looking for other solutions.

    


    I have tried react native video player but there is not any prop to mute video audio and play different audio from link. May be some customizable player which play different video and different audio at the same time and control it

    


  • Where can I find high-quality videos for testing video processing ?

    15 novembre 2018, par Workman

    Aside from Big Buck Bunny, Sintel, and Elephant’s Dream, what are other high-quality and free sources for high quality video ?

    I’m using these videos internally to test video transcoding options and am not public redistributing. Any suggestions for content that falls under this category ?

  • How to stream only a part of a video without downloading the whole thing ?

    11 mai 2024, par Abbas

    I am building a YouTube video trimmer, and currently, it takes the YouTube video ID, downloads the whole video from the server (Even it is like 10 hours long), and then it trims it according to user's inputted timeframe using ffmpeg.

    


    Now the problem with this is that it takes so much time to download the whole video even if we want a small piece of it hence it is highly impractical.

    


    I was thinking to implement something like an HTML5 video player does when you seek the video forward. It just jumps to the part where you seek-ed to without downloading the part you skipped over. How can I only download a part of a video file from a server in form of a buffer and then generate an already trimmed video file from that ? I don't know if that is even possible on the server-side, but video players do it on the client-side.