Recherche avancée

Médias (91)

Autres articles (73)

  • Websites made ​​with MediaSPIP

    2 mai 2011, par

    This page lists some websites based on MediaSPIP.

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

  • Le profil des utilisateurs

    12 avril 2011, par

    Chaque utilisateur dispose d’une page de profil lui permettant de modifier ses informations personnelle. Dans le menu de haut de page par défaut, un élément de menu est automatiquement créé à l’initialisation de MediaSPIP, visible uniquement si le visiteur est identifié sur le site.
    L’utilisateur a accès à la modification de profil depuis sa page auteur, un lien dans la navigation "Modifier votre profil" est (...)

Sur d’autres sites (6919)

  • Linker error LNK2019 with ffmpeg and VC++ [duplicate]

    9 octobre 2015, par Dom

    I have the following code :

    extern "C"
    {
      #include <libavcodec></libavcodec>avcodec.h>
      #include <libavformat></libavformat>avformat.h>
      #include <libswscale></libswscale>swscale.h>
    }

    int main(int argc, char *argv[]) {
      av_register_all();
      return 0;
    }

    And when I try to build, I get the following error :

    error LNK2019: unresolved external symbol _av_register_all referenced in function _main

    I’m using the Zeranoe build for Windows and my Linker is configured to the ffmpeg folder and my Aditional Includes are set to the include folder.

    I added all the lib files to my Linker Input.

  • doc/filters : Clarify scale2ref example

    27 mai 2017, par Kevin Mark
    doc/filters : Clarify scale2ref example
    

    Signed-off-by : Kevin Mark <kmark937@gmail.com>
    Signed-off-by : Michael Niedermayer <michael@niedermayer.cc>

    • [DH] doc/filters.texi
  • Cut a video in between key frames without re-encoding the full video using ffpeg ?

    1er septembre 2020, par bguiz

    I would like to cut a video at the beginning at any particular timestamp, and it need to be precise, so the nearest key frame is not good enough.

    &#xA;

    Also, these videos are rather long - an hour or longer - so I would like to avoid re-encoding this altogether if possible, or otherwise only re-encode a minimal fraction of the total duration. Thus, would like to maximise the use of -vcodec copy.

    &#xA;

    How can I accomplish this using ffmpeg ?

    &#xA;

    NOTE : See scenario, and my own rough idea for a possible solution below.

    &#xA;


    &#xA;

    Scenario :

    &#xA;

      &#xA;
    • Original video&#xA;
        &#xA;
      • Length of 1:00:00
      • &#xA;

      • Has a key frame every 10s
      • &#xA;

      &#xA;

    • &#xA;

    • Desired cut :&#xA;
        &#xA;
      • From 0:01:35 through till the end
      • &#xA;

      &#xA;

    • &#xA;

    • Attempt #1 :&#xA;
        &#xA;
      • Using -ss 0:01:35 -i blah.mp4 -vcodec copy, what results is a file where :
      • &#xA;

      • audio starts at 0:01:30
      • &#xA;

      • video also starts at 0:01:30
      • &#xA;

      • this starts both the audio and the video too early
      • &#xA;

      &#xA;

    • &#xA;

    • using -i blah.mp4 -ss 0:01:35 -vcodec copy, what results is a file where :&#xA;
        &#xA;
      • audio starts at 0:01:35,
      • &#xA;

      • but the video is blank/ black for the first 5 seconds,&#xA;
          &#xA;
        • until 0:01:40, when the video starts
        • &#xA;

        &#xA;

      • &#xA;

      • this starts the audio on time,&#xA;but the video starts too late
      • &#xA;

      &#xA;

    • &#xA;

    &#xA;


    &#xA;

    Rough idea

    &#xA;

      &#xA;
    • (1) cut 0:01:30 to 0:01:40&#xA;
        &#xA;
      • re-encode this to have new key frames,&#xA;including one at the target time of 0:01:35
      • &#xA;

      • then cut this to get the 5 seconds from 0:01:35 through 0:01:40
      • &#xA;

      &#xA;

    • &#xA;

    • (2) cut 0:01:40 through till the end&#xA;
        &#xA;
      • without re-encoding, using -vcodec copy
      • &#xA;

      &#xA;

    • &#xA;

    • (3) ffmpeg concat the first short clip (the 5 second one)&#xA;with the second long clip
    • &#xA;

    &#xA;

    I know/ can work out the commands for (2) and (3), but am unsure about what commands are needed for (1).

    &#xA;