Recherche avancée

Médias (0)

Mot : - Tags -/protocoles

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

Autres articles (48)

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

  • Des sites réalisés avec MediaSPIP

    2 mai 2011, par

    Cette page présente quelques-uns des sites fonctionnant sous MediaSPIP.
    Vous pouvez bien entendu ajouter le votre grâce au formulaire en bas de page.

  • HTML5 audio and video support

    13 avril 2011, par

    MediaSPIP uses HTML5 video and audio tags to play multimedia files, taking advantage of the latest W3C innovations supported by modern browsers.
    The MediaSPIP player used has been created specifically for MediaSPIP and can be easily adapted to fit in with a specific theme.
    For older browsers the Flowplayer flash fallback is used.
    MediaSPIP allows for media playback on major mobile platforms with the above (...)

Sur d’autres sites (5311)

  • Is there any way to provide different video qualities in my web application without converting each video to each format ?

    15 octobre 2019, par Dheeraj Arora

    i am building a web application which will handle thousand of videos. Currently, I am using ffmpeg to convert each video to 4 formats(1080,720,480,340px). It consumes lot of memory and time to upload for each video. Is there any best way that allows user to stream my videos in different video quality without converting each video ?

  • How can limit video duration before uploading and implement content detection in an ASP.NET Core 6 backend

    8 avril 2024, par ashok patel

    We are working on a project, essentially a social media app. In this project, I'm handling the backend development. Users can upload videos of up to one minute duration.

    


    Before saving the videos to the server, I need to convert all uploaded videos to MP4 format.

    


    Additionally, I also need to check if the videos contain any adult content. I am unsure how to start this task.

    


    I have downloaded an MP4 video from a website https://www.quickpickdeal.com/coding/download-sample-mp4-video-mp4-test-videos, and installed ffmpeg for converting video Mp4 for before saving it to the server but I don't know how to limit 1min video & check if the videos contain any adult content.

    


    Can someone suggest how I can achieve these tasks in ASP.NET Core 6 ?

    


  • Insert video into another video both of different formats in a time efficient way

    7 février 2017, par Sharath Huddar

    I have an assignment which requires that the code I write takes a large video(1 to 3 hrs) and a smaller video (10-60 seconds) and the smaller video is inserted at intervals of 30 minutes into the larger video. Note that the videos are not necessarily in the same format.

    I tried to encode the large and the small video to a common format (mp4) and then split the large video based on time (while encoding it to mp4) and then concat all the videos in a predefined sequence (also while encoding to mp4). All these operations were carried out using FFMPEG.

    Although this method worked, it too close to 20 hours to perform the whole operation on an Intel NUC (having an i5 processor and 8GB RAM)

    Is there a faster way to do this without compromising on quality ?