Recherche avancée

Médias (91)

Autres articles (10)

  • Encoding and processing into web-friendly formats

    13 avril 2011, par

    MediaSPIP automatically converts uploaded files to internet-compatible formats.
    Video files are encoded in MP4, Ogv and WebM (supported by HTML5) and MP4 (supported by Flash).
    Audio files are encoded in MP3 and Ogg (supported by HTML5) and MP3 (supported by Flash).
    Where possible, text is analyzed in order to retrieve the data needed for search engine detection, and then exported as a series of image files.
    All uploaded files are stored online in their original format, so you can (...)

  • Contribute to documentation

    13 avril 2011

    Documentation is vital to the development of improved technical capabilities.
    MediaSPIP welcomes documentation by users as well as developers - including : critique of existing features and functions articles contributed by developers, administrators, content producers and editors screenshots to illustrate the above translations of existing documentation into other languages
    To contribute, register to the project users’ mailing (...)

  • Other interesting software

    13 avril 2011, par

    We don’t claim to be the only ones doing what we do ... and especially not to assert claims to be the best either ... What we do, we just try to do it well and getting better ...
    The following list represents softwares that tend to be more or less as MediaSPIP or that MediaSPIP tries more or less to do the same, whatever ...
    We don’t know them, we didn’t try them, but you can take a peek.
    Videopress
    Website : http://videopress.com/
    License : GNU/GPL v2
    Source code : (...)

Sur d’autres sites (3322)

  • hqx : Implement slice-threaded decoding

    9 avril 2015, par Vittorio Giovara
    hqx : Implement slice-threaded decoding
    

    Inspired by a patch from Ferdinand Oeinck <ferdo@demon.nl>.

    Signed-off-by : Vittorio Giovara <vittorio.giovara@gmail.com>

    • [DH] libavcodec/hqx.c
    • [DH] libavcodec/hqx.h
  • FFMPEG detect color bars and tone in video

    23 novembre 2016, par Chris Harvey

    I am trying to detect if a video has any valid content or is just the standard broadcasting bars & tone. So far I’ve looked at this question : http://superuser.com/questions/1036449/detect-color-bars-ffmpeg/1036478#1036478
    which generates bars & tone from the first frame and then compares that against the rest of the stream but in my case I need to run the ffmpeg command within a folder that only has one file that has already been found by my python script.

    Is it possible to use ffmpeg’s blend=difference to check that a short bars & tone clip is a subclip of one of my video files ? I’m thinking of this in the same way you can check if a string is within a string, or is there a better way to check for bars that I’m not thinking of ?

    Thanks !

  • creating a modern nodejs video rendering app (ffmpeg microservice / cloud hosting)

    5 avril 2020, par Martin

    I'm thinking of making a nodejs website like tunestotube.com or audioship.io that will :

    &#xA;&#xA;

      &#xA;
    • accept an audio file / image file input

    • &#xA;

    • render a video using ffmpeg

    • &#xA;

    • upload that video to youtube

    • &#xA;

    &#xA;&#xA;

    I just have a question on the best way to go about doing this, I want to host over GCP eventually, and am thinking about the best / most efficient way to handle the ffmpeg video rendering, since I want it to be scaleable and have a load balancer (ingress ?) queue to handle getting multiple requests at once.

    &#xA;&#xA;

    Would it make sense to containerize my web service ? Have the main website be one docker image ; and have another image / microservice 'video-renderer' that would accept the inputs, render the video, and return the rendered video ?

    &#xA;&#xA;

    Does this idea make sense, and would going about it in the way I describe above work ? I'm also trying to find tutorials / example projects with handling microservices / load balancers in node js / gcp if anyone has any ideas / recomendations, thanks

    &#xA;