Recherche avancée

Médias (91)

Autres articles (47)

  • Publier sur MédiaSpip

    13 juin 2013

    Puis-je poster des contenus à partir d’une tablette Ipad ?
    Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir

  • Contribute to translation

    13 avril 2011

    You can help us to improve the language used in the software interface to make MediaSPIP more accessible and user-friendly. You can also translate the interface into any language that allows it to spread to new linguistic communities.
    To do this, we use the translation interface of SPIP where the all the language modules of MediaSPIP are available. Just subscribe to the mailing list and request further informantion on translation.
    MediaSPIP is currently available in French and English (...)

  • Use, discuss, criticize

    13 avril 2011, par

    Talk to people directly involved in MediaSPIP’s development, or to people around you who could use MediaSPIP to share, enhance or develop their creative projects.
    The bigger the community, the more MediaSPIP’s potential will be explored and the faster the software will evolve.
    A discussion list is available for all exchanges between users.

Sur d’autres sites (9718)

  • avfilter/vf_yadif : rename config_props -> config_output, link -> outlink

    28 novembre 2019, par Limin Wang
    avfilter/vf_yadif : rename config_props -> config_output, link -> outlink
    

    Signed-off-by : Limin Wang <lance.lmwang@gmail.com>
    Signed-off-by : Michael Niedermayer <michael@niedermayer.cc>

    • [DH] libavfilter/vf_yadif.c
  • Converting m3u8 link to frame through FFMpeg

    30 octobre 2019, par LionKing

    I am trying to convert the .m3u8 live streaming link into frames instantly. I can convert the link to the frames by overwriting. But as much as I understood, FFMpeg reads the m3u8 links package by package, so this creates a standstill on the frames, frames doesn’t flow unceasingly.

    I have tried to overcome this issue by setting input and output framerates manually. The code I used is below.

    URL=https://trtcanlitv-lh.akamaihd.net/i/TRT1HD_1@181842/index_720p_av-b.m3u8

    ffmpeg -y -r 4 -i $URL -r 25 -update 1 image.jpg

    This allowed me to overcome standstill problem a bit but not really, but is there any way you can suggest that the frames can be written to image.jpg instantly and without any discontinuation.

    Thanks a lot.

  • How to link libavformat in Cmake on mac ?

    29 novembre 2019, par Alexandru Cancescu

    I am trying to use the libavformat from ffmpeg in a C++ project. I have ffmpeg installed using homebrew.

    My CMakeLists.txt :

    cmake_minimum_required(VERSION 3.14)
    project(av_test)

    set(CMAKE_CXX_STANDARD 11)

    INCLUDE_DIRECTORIES(/usr/local/Cellar/ffmpeg/4.2.1_2/include)
    LINK_DIRECTORIES(/usr/local/Cellar/ffmpeg/4.2.1_2/lib)

    add_executable(av_test main.cpp)

    TARGET_LINK_LIBRARIES(av_test libavformat)

    When running cmake I get this error :

    ld: library not found for -llibavformat
    clang: error: linker command failed with exit code 1 (use -v to see invocation)
    make[3]: *** [av_test] Error 1
    make[2]: *** [CMakeFiles/av_test.dir/all] Error 2
    make[1]: *** [CMakeFiles/av_test.dir/rule] Error 2
    make: *** [av_test] Error 2

    A quick find libavformat* into /usr/local/Cellar/ffmpeg/4.2.1_2/lib returns :

    libavformat.58.29.100.dylib
    libavformat.58.dylib
    libavformat.a
    libavformat.dylib

    Also in /usr/local/Cellar/ffmpeg/4.2.1_2/include/libavformat there is avformat.h

    My main.cpp :

    #include <libavformat></libavformat>avformat.h>

    int main() {

       AVFormatContext *pFormatContext;

       return 0;
    }

    I am running on mac os 10.14 with cmake version 3.15.5 , ffmpeg version 4.2.1