Recherche avancée

Médias (0)

Mot : - Tags -/alertes

Aucun média correspondant à vos critères n’est disponible sur le site.

Autres articles (101)

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

  • Gestion générale des documents

    13 mai 2011, par

    MédiaSPIP ne modifie jamais le document original mis en ligne.
    Pour chaque document mis en ligne il effectue deux opérations successives : la création d’une version supplémentaire qui peut être facilement consultée en ligne tout en laissant l’original téléchargeable dans le cas où le document original ne peut être lu dans un navigateur Internet ; la récupération des métadonnées du document original pour illustrer textuellement le fichier ;
    Les tableaux ci-dessous expliquent ce que peut faire MédiaSPIP (...)

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

  • 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;

  • avcodec/cfhddata : Avoid code tables

    3 septembre 2022, par Andreas Rheinhardt
    avcodec/cfhddata : Avoid code tables
    

    cfhddata.c initializes a RL VLC table via code tables and
    corresponding tables for length, run and level. code and length
    tables are used to initialize a VLC, no symbol table is used.
    Afterwards the symbols of said VLC are just the indices of
    the corresponding entries in the code and length table that
    were used for initialization ; they can therefore be used
    to get the matching level and run entry and they are not used
    for anything else. Therefore one can just permute these tables
    without changing the resulting RL VLC tables.

    This commit does just this. It permutes these tables so that
    the code tables are ordered from left to right in the resulting
    tree and then switches to ff_init_vlc_from_lengths(), which
    allows to remove the codes table altogether.

    Given that these tables are constructed on the stack, this
    also reduces stack usage, potentially fixing part of #9399.
    (The size of the tables on the stack decreases from 4752 to
    2640.)

    Reviewed-by : Paul B Mahol <onemda@gmail.com>
    Signed-off-by : Andreas Rheinhardt <andreas.rheinhardt@outlook.com>

    • [DH] libavcodec/cfhddata.c