Recherche avancée

Médias (91)

Autres articles (39)

  • Ajouter des informations spécifiques aux utilisateurs et autres modifications de comportement liées aux auteurs

    12 avril 2011, par

    La manière la plus simple d’ajouter des informations aux auteurs est d’installer le plugin Inscription3. Il permet également de modifier certains comportements liés aux utilisateurs (référez-vous à sa documentation pour plus d’informations).
    Il est également possible d’ajouter des champs aux auteurs en installant les plugins champs extras 2 et Interface pour champs extras.

  • Selection of projects using MediaSPIP

    2 mai 2011, par

    The examples below are representative elements of MediaSPIP specific uses for specific projects.
    MediaSPIP farm @ Infini
    The non profit organizationInfini develops hospitality activities, internet access point, training, realizing innovative projects in the field of information and communication technologies and Communication, and hosting of websites. It plays a unique and prominent role in the Brest (France) area, at the national level, among the half-dozen such association. Its members (...)

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

  • avformat/mov : rewrite aspect from matrix code

    15 janvier 2015, par Michael Niedermayer
    avformat/mov : rewrite aspect from  matrix code
    

    The original code was intended purely for rotation == 0
    In cf70ba37ba74089a18295b29e77dead0a3222c9e the condition was
    changed to use it only for rotation != 0
    which broke the cases for which it was intended to be used
    as well as breaking cases for which it was not intended to be
    used.
    This changes the code so it could work for the more general
    case and fixes the regressions
    If you have sample files that are not handled correctly
    please open tickets or mail me !

    Signed-off-by : Michael Niedermayer <michaelni@gmx.at>

    • [DH] libavformat/mov.c
  • lavf/hls : replace the same code logic with ensure_playlist()

    21 juillet 2019, par vacingfang
    lavf/hls : replace the same code logic with ensure_playlist()
    

    Replace the same code logic with ensure_playlist(), it's will
    help reusable blocks of code.

    Reviewed-by : Jun Zhao <barryjzhao@tencent.com>
    Signed-off-by : vacingfang <vacingfang@tencent.com>

    • [DH] libavformat/hls.c
  • can i use windows api function on ffmpeg code ?

    6 septembre 2020, par sooyongchoi

    I'm trying recording video from camera and receive timestamp when frame received.&#xA;I want to extracting timestamp each frame on Windows.&#xA;And I'm trying use this ffmpeg commandline.&#xA;Sync files timestamp with ffmpeg

    &#xA;

    ffmpeg -f dshow -rtbufsize 1500M -video_size 1920x1080 -use_wallclock_as_timestamps 1 -copyts -r 60 -i video="0819-INOGENI 4K2USB3" -r 60 -vf setpts=PTS-STARTPTS -q 4 video4567.avi -c copy -f mkvtimestamp_v2 timings4567.txt

    &#xA;

    but I want to timestamp based on GetSystemTimePreciseAsFileTime function, not unix epoch time for much better sensitive timer.

    &#xA;

    So, I'm trying modifying to use GetSystemTimePreciseAsFileTime function mkvtimestamp_v2 code.&#xA;But it's error when make install processing.&#xA;like this : libavformat.a(mkvtimestamp_v2.o) : error LNK2019 : unresolved external symbol _GetSystemTimePreciseAsFileTime referenced in function _write_packet

    &#xA;

    It seems like no link win32 api from ffmpeg code.

    &#xA;

    Is there any way for linking win32 api for ffmpeg code ?

    &#xA;

    thanks :)

    &#xA;