Recherche avancée

Médias (9)

Mot : - Tags -/soundtrack

Autres articles (71)

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

  • MediaSPIP version 0.1 Beta

    16 avril 2011, par

    MediaSPIP 0.1 beta est la première version de MediaSPIP décrétée comme "utilisable".
    Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
    Pour avoir une installation fonctionnelle, 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 (...)

  • Les autorisations surchargées par les plugins

    27 avril 2010, par

    Mediaspip core
    autoriser_auteur_modifier() afin que les visiteurs soient capables de modifier leurs informations sur la page d’auteurs

Sur d’autres sites (8237)

  • avcodec/mpeg4video_parser : Avoid litteral 0x1B6, use named constant instead

    30 avril 2018, par Michael Niedermayer
    avcodec/mpeg4video_parser : Avoid litteral 0x1B6, use named constant instead
    

    Signed-off-by : Michael Niedermayer <michael@niedermayer.cc>

    • [DH] libavcodec/mpeg4video_parser.c
  • ffmpeg how to start encoding at live point (not from beginning)

    9 avril 2021, par Jintor

    Is there a way with ffmpeg to start encoding at "live point" (in other words at last encoded frame...)

    &#xA;

    let met explain : 2 ffmpeg process

    &#xA;

    [1] x11grab that is being generated that started a 2:00 pm.... and still continue live (I don't want to stop and continue encoding live)

    &#xA;

    [2] restream the [1] but at live point (at where it is encoding now) not from start...

    &#xA;

    If [2] is being triggered at 2:15 pm, it will load the first frame of [1] (start to encode from 2pm)

    &#xA;

    but I want that it load the last few frames of [1] as a starting point (2:15pm)...

    &#xA;

    I know that I could ffmpeg -i -ss but I have to specify a x number of seconds after -ss...

    &#xA;

    is there a better way ?

    &#xA;

  • FFMPEG - Data Before Seek Point

    9 mars 2021, par Marcus
      &#xA;
    1. When using ffmpeg seek - does ffmpeg read and discard all data before the seek point ?

      &#xA;

    2. &#xA;

    3. Is it possible to get ffmpeg to only load the input from the seek point ? or just before the seek point ?

      &#xA;

    4. &#xA;

    &#xA;

    We are trying to seek to the middle of large 1gb audio files in the cloud (and on desktop) and at the moment when we run this command :

    &#xA;

    ffmpeg -ss 90 -i https://cloud.suffix/file.mp3 -t 00:15 -acodec libmp3lame C:/file.mp3&#xA;

    &#xA;

    It's really fast and downloads a 241kb audio file with 15 second length

    &#xA;

    But if we run this command :

    &#xA;

    ffmpeg -ss 9000 -i https://cloud.suffix/file.mp3 -t 00:15 -acodec libmp3lame C:/file.mp3&#xA;

    &#xA;

    The result file is also a 241kb audio file with 15 second length, but it takes a long time to process. Also the network is downloading at full speed while ffmpeg is waiting for the seek point.

    &#xA;