Recherche avancée

Médias (1)

Mot : - Tags -/intégration

Autres articles (102)

  • Supporting all media types

    13 avril 2011, par

    Unlike most software and media-sharing platforms, MediaSPIP aims to manage as many different media types as possible. The following are just a few examples from an ever-expanding list of supported formats : images : png, gif, jpg, bmp and more audio : MP3, Ogg, Wav and more video : AVI, MP4, OGV, mpg, mov, wmv and more text, code and other data : OpenOffice, Microsoft Office (Word, PowerPoint, Excel), web (html, CSS), LaTeX, Google Earth and (...)

  • Websites made ​​with MediaSPIP

    2 mai 2011, par

    This page lists some websites based on MediaSPIP.

  • Emballe médias : à quoi cela sert ?

    4 février 2011, par

    Ce plugin vise à gérer des sites de mise en ligne de documents de tous types.
    Il crée des "médias", à savoir : un "média" est un article au sens SPIP créé automatiquement lors du téléversement d’un document qu’il soit audio, vidéo, image ou textuel ; un seul document ne peut être lié à un article dit "média" ;

Sur d’autres sites (13791)

  • Trimming a video from URL without retrieving the whole file [on hold]

    27 mars 2016, par Shlomi Uziel

    I have implemented a service which is given a URL of a movie file and a start time indicator. Then I trim a length of a maximum of 1 minute from that period onwards.
    The process is done in a server by calling a command with ProcessBuilder :

    ffmpeg -accurate_seek -ss hh:mm:ss.sss -t 60 -i "url" -c:v copy -c:a copy outputPath

    However, some video files have their metadata in the end of the file.
    Since the videos are stored in a remote URL, I cannot manipulate them without retrieving them fully (e.g. by using -movflags +faststart).

    Is there a way to seek to the given point and trim the video without prefetching the whole file ?

  • video.js record timestamp blob is invalid after the first one [closed]

    10 octobre 2022, par Codengine

    I am building a video messaging service. I have used video.js and videojs record to record video and audio.

    


    I have used timeSlice option of record plugin to 2 second so every 2 second I get blobs which I cans save in server and then merge later.

    


    Everything is fine. I can get the blob and upload ins server.

    


    But the issue is - only the first blob is correct and othr blobs I cannot concate altogether. I have tried ffmpeg and opencv both to merge the videos in backend. Both says all but the first blob is incorrect.

    


    Need help on this. I have been strugging with this last few days with no solution yet.

    


  • Can I use ffmpeg to output JPEGs to a memory stream instead of a file ?

    10 juillet 2024, par Andrew Simpson

    I have a C# app. I have 100 JPEGs (for an example).

    



    I can easily encode this into a video file.

    



    When it has finished encoding on the client app I FTP upload to my server.

    



    It would be 'neater' if I could not write the video file to a disc but instead write it to a memory stream (or array of bytes) and upload via web service perhaps ?

    



    I have checked out the ffmpeg documentation but as a C# developer I do not find it natural to understand the C examples.

    



    I guess my first question is it possible, and if so can anyone post an example code in C# ? At the moment I am using the process class in C# to execute ffmpeg.