Recherche avancée

Médias (0)

Mot : - Tags -/diogene

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

Autres articles (73)

  • Personnaliser en ajoutant son logo, sa bannière ou son image de fond

    5 septembre 2013, par

    Certains thèmes prennent en compte trois éléments de personnalisation : l’ajout d’un logo ; l’ajout d’une bannière l’ajout d’une image de fond ;

  • Ecrire une actualité

    21 juin 2013, par

    Présentez les changements dans votre MédiaSPIP ou les actualités de vos projets sur votre MédiaSPIP grâce à la rubrique actualités.
    Dans le thème par défaut spipeo de MédiaSPIP, les actualités sont affichées en bas de la page principale sous les éditoriaux.
    Vous pouvez personnaliser le formulaire de création d’une actualité.
    Formulaire de création d’une actualité Dans le cas d’un document de type actualité, les champs proposés par défaut sont : Date de publication ( personnaliser la date de publication ) (...)

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

  • lavfi/vf_libplacebo : allow operation without avhwdevice

    11 mai 2023, par Niklas Haas
    lavfi/vf_libplacebo : allow operation without avhwdevice
    

    Recent versions of libplacebo have required Vulkan versions incompatible
    with lavu Vulkan hwcontexts. While this is expected to change
    eventually, breaking vf_libplacebo every time there is such a transition
    period is obviously undesired behavior, as the following sea of bug
    reports shows.

    This commit adds a fallback path for init_vulkan failures which simply
    creates an internal device if there was no user-supplied Vulkan hwaccel.
    Useful when no interop with lavu vulkan hwframes is needed or desired,
    and makes using this filter easier inside certain applications.

    Fixes : https://github.com/haasn/libplacebo/issues/170
    Fixes : https://github.com/mpv-player/mpv/issues/9589#issuecomment-1535432185
    Fixes : https://github.com/mpv-player/mpv/issues/11363
    Fixes : https://github.com/mpv-player/mpv/issues/11685#issuecomment-1546627082
    Closes : https://code.videolan.org/videolan/libplacebo/-/issues/270

    • [DH] libavfilter/vf_libplacebo.c
  • lavf/avio : temporarily accept 0 as EOF.

    27 octobre 2017, par Nicolas George
    lavf/avio : temporarily accept 0 as EOF.
    

    Print a warning to let applicatios fix their use.
    After a deprecation period, check with a low-level assert.
    Also make the constraint explicit in the doxygen comment.

    Signed-off-by : Nicolas George <george@nsup.org>

    • [DH] libavformat/avio.h
    • [DH] libavformat/aviobuf.c
    • [DH] libavformat/version.h
  • Python : How to clip/trim required part from the video and move the trimmed video file to other directory

    4 avril 2021, par saurabh

    I'm trying to remove duplicate segments from videos from a directory and paste these trimmed videos to other directory.

    &#xA;

    For example :

    &#xA;

    I've following directory structure for saving live rtsp stream (each 1 min long) :-

    &#xA;

    Live_videos&#xA;------2021-04-04&#xA;      ------stream1&#xA;            -------14 36 08.avi( 1 min)&#xA;                   14 37 08.avi( Saved only till 14 37 39 mark due to disconnect with stream1 camera)&#xA;                   14 38 35.avi( 1 min)&#xA;            stream2&#xA;            -------14 36 15.avi( 1 min)&#xA;                   14 37 15.avi( 1 min)&#xA;                   14 38 14.avi( 1 min)&#xA;

    &#xA;

    So, the disconnect and reconnect time are 14 37 40 and 14 38 34 respectively which will be sent to some other server and that server will search for videos saved in their machine which contains segments from the given timestamps and sends the video file in following directory structure : -

    &#xA;

    Edge_videos&#xA;-----------2021-04-04&#xA;           ----------stream1&#xA;                     -------14 36 35.avi&#xA;                     -------14 37 35.avi&#xA;

    &#xA;

    Now, you can see that the received video files have the required segments from disconnect period as well as duplicate segments which are already saved in Live_videos directory.

    &#xA;

    How do I remove the duplicate segments from the received videos and move only the required trimmed video file to the Live_videos----> stream1 directory and delete all the files from Edge_videos afterwards.

    &#xA;