Recherche avancée

Médias (91)

Autres articles (51)

  • Les vidéos

    21 avril 2011, par

    Comme les documents de type "audio", Mediaspip affiche dans la mesure du possible les vidéos grâce à la balise html5 .
    Un des inconvénients de cette balise est qu’elle n’est pas reconnue correctement par certains navigateurs (Internet Explorer pour ne pas le nommer) et que chaque navigateur ne gère en natif que certains formats de vidéos.
    Son avantage principal quant à lui est de bénéficier de la prise en charge native de vidéos dans les navigateur et donc de se passer de l’utilisation de Flash et (...)

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

  • Mise à disposition des fichiers

    14 avril 2011, par

    Par défaut, lors de son initialisation, MediaSPIP ne permet pas aux visiteurs de télécharger les fichiers qu’ils soient originaux ou le résultat de leur transformation ou encodage. Il permet uniquement de les visualiser.
    Cependant, il est possible et facile d’autoriser les visiteurs à avoir accès à ces documents et ce sous différentes formes.
    Tout cela se passe dans la page de configuration du squelette. Il vous faut aller dans l’espace d’administration du canal, et choisir dans la navigation (...)

Sur d’autres sites (4433)

  • Unable to concatenate videos due to identical MOOV atoms

    8 avril 2014, par StackOverflowed

    I am cutting out segments from a long mp4 file and then rejoining parts of them. However, since FFMPEG apparently keeps the same MOOV atom for the trimmed files as the original, it looks to FFMPEG that the trimmed videos are all identical since they all have the same MOOV atom, and therefore only uses the first segment when trying to join the videos. Is there a way around this ? Unfortunately since FFMPEG is embedded in an Android app, I can only use version 0.11.
    Edit :

    This is a sample of the processes :

    ffmpeg -i /sdcard/path/movie.mp4  -ss 00:00:06.000, -t  00:00:05.270, -c:a aac -c:v libx264 /sdcard/path/file1.mp4
    ffmpeg -i /sdcard/path/movie.mp4  -ss 00:00:12.000, -t  00:00:04.370, -c:a aac -c:v libx264 /sdcard/path/file2.mp4
    ffmpeg -i /sdcard/path/movie.mp4  -ss 00:00:23.000, -t  00:00:03.133, -c:a aac -c:v libx264 /sdcard/path/file3.mp4
    ffmpeg -i "concat:/sdcard/path/file1.mp4|/sdcard/path/file2.mp4|/sdcard/path/file3.mp4" -c:a aac -c:v libx264 /sdcard/path/output.mp4

    I've also tried using the copy codec option but that hasn't helped.

  • rtmpproto : Send chunk size on the network channel

    13 octobre 2016, par Martin Storsjö
    rtmpproto : Send chunk size on the network channel
    

    This makes sure that e.g. Adobe FME actually reacts to it. As long
    as the value we’ve been sending is the default one (128), the bug
    hasn’t been noticed.

    Signed-off-by : Martin Storsjö <martin@martin.st>

    • [DBH] libavformat/rtmpproto.c
  • Passing negative values for dimensions with PHP FFMpeg

    10 juin 2018, par Matthew Daly

    I’m working on a legacy project that uses FFMpeg to process videos on upload. The code I inherited uses escapeshellarg() to run FFMpeg from the command line, which is problematic because it doesn’t provide any means of keeping track of progress, so I’m rewriting it using PHP-FFMpeg.

    I’m a bit stumped at the point of resizing the videos. The aspect ratio needs to remain the same, so the dimensions passed to the command line for the scale were -vf scale=-1:720, and my interpretation of the documents is that you need to pass the dimensions through as follows :

    $dimension = new FFMpeg\Coordinate\Dimension('-1', '720');
    $video->filters()->resize($dimension)->synchronize();

    However, the constructor of the Dimension class only accepts integers, and it’s unclear how I’d go about specifying a negative dimension here. Google hasn’t been very useful, nor have the existing issues on the project.

    Any idea how I could pass through the required dimensions ? I don’t often use FFMpeg so I’m not terribly familiar with it.