Recherche avancée

Médias (9)

Mot : - Tags -/soundtrack

Autres articles (102)

  • Multilang : améliorer l’interface pour les blocs multilingues

    18 février 2011, par

    Multilang est un plugin supplémentaire qui n’est pas activé par défaut lors de l’initialisation de MediaSPIP.
    Après son activation, une préconfiguration est mise en place automatiquement par MediaSPIP init permettant à la nouvelle fonctionnalité d’être automatiquement opérationnelle. Il n’est donc pas obligatoire de passer par une étape de configuration pour cela.

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

Sur d’autres sites (10388)

  • movenc : Remove a leftover commented out line

    4 avril 2024, par Martin Storsjö
    movenc : Remove a leftover commented out line
    

    This line originates from 6f69f7a8bf6a0d013985578df2ef42ee6b1c7994.

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

    • [DH] libavformat/movenc.c
  • Revision 3316918b3b : Remove an empty line Change-Id : Id6eedc502c86433df1456dd994aee6bc9a1359a2

    7 juillet 2014, par Jingning Han

    Changed Paths :
     Modify /vp9/encoder/vp9_encodeframe.c



    Remove an empty line

    Change-Id : Id6eedc502c86433df1456dd994aee6bc9a1359a2

  • FFmpeg command line vs programatically

    10 avril 2018, par John

    How do I reproduce the ffmpeg rtsp streaming/codec copying/audio disabling command line entry

    ffmpeg -i rtsp://abcd:123456@1.2.3.4/rtspvideostream -vcodec copy -an /home/pc/video.avi

    within ffmpeg library referencing code ? Currently I use (along with all the necessary av_find_stream_info / avcodec_find_decoder etc. commands)

    numBytes = av_open_input_file(&amp;pFormatCtx,"rtsp://abcd:123456@1.2.3.4/rtspvideostream", NULL, 0, NULL))

    which to me appears to reproduce the command line entry

    ffmpeg -i rtsp://abcd:123456@1.2.3.4/rtspvideostream /home/pc/video.avi

    without the hugely CPU saving flags of ’-vcodec copy -an’.