Recherche avancée

Médias (1)

Mot : - Tags -/lev manovitch

Autres articles (25)

  • Websites made ​​with MediaSPIP

    2 mai 2011, par

    This page lists some websites based on MediaSPIP.

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

  • Creating farms of unique websites

    13 avril 2011, par

    MediaSPIP platforms can be installed as a farm, with a single "core" hosted on a dedicated server and used by multiple websites.
    This allows (among other things) : implementation costs to be shared between several different projects / individuals rapid deployment of multiple unique sites creation of groups of like-minded sites, making it possible to browse media in a more controlled and selective environment than the major "open" (...)

Sur d’autres sites (7577)

  • 80 character line length on Arnr LUT

    23 juillet 2010, par Paul Wilkins

    80 character line length on Arnr LUT

  • ffmpeg selects shortest movie but leaves full length audio

    26 octobre 2015, par Stan James

    I’ve created a tool to create a grid of movies, like in the Brady Bunch opening. It’s a cool, funny effect.

    Here’s a sample movie showing the grid.

    Grid of movies in ffmpeg output

    The problem is that ffmpeg is choosing the shortest movie to determine the maximum length of overlaid videos, but still using the full length of the first audio track to determine the overall output movie length.

    So all my videos stop moving when the shortest one ends, but the audio plays on for full length of the first movie.

    How can I either (1) set the length of the output movie to the longest input movie or (2) match the audio length to the shortest movie length as well ?

    Gist of my script.

    Based on this ffmpeg example usage which exhibits the same audio problem :

    ffmpeg
       -i 1.avi -i 2.avi -i 3.avi -i 4.avi
       -filter_complex "
           nullsrc=size=640x480 [base];
           [0:v] setpts=PTS-STARTPTS, scale=320x240 [upperleft];
           [1:v] setpts=PTS-STARTPTS, scale=320x240 [upperright];
           [2:v] setpts=PTS-STARTPTS, scale=320x240 [lowerleft];
           [3:v] setpts=PTS-STARTPTS, scale=320x240 [lowerright];
           [base][upperleft] overlay=shortest=1 [tmp1];
           [tmp1][upperright] overlay=shortest=1:x=320 [tmp2];
           [tmp2][lowerleft] overlay=shortest=1:y=240 [tmp3];
           [tmp3][lowerright] overlay=shortest=1:x=320:y=240
       "
       -c:v libx264 output.mkv
  • Remove clearing as numbers of `min`, `max` and `range` rules. Fixes #455. Closes gh-528.

    4 février 2013, par hazzik

    m jquery.validate.js m test/index.html m test/rules.js m test/test.js Remove clearing as numbers of `min`, `max` and `range` rules. Fixes #455. Closes gh-528. These rules are fully suitable to check any comparable JavaScript objects such as strings or dates. Also clearing prevents HTML5 date (...)