Recherche avancée

Médias (91)

Autres articles (68)

  • La file d’attente de SPIPmotion

    28 novembre 2010, par

    Une file d’attente stockée dans la base de donnée
    Lors de son installation, SPIPmotion crée une nouvelle table dans la base de donnée intitulée spip_spipmotion_attentes.
    Cette nouvelle table est constituée des champs suivants : id_spipmotion_attente, l’identifiant numérique unique de la tâche à traiter ; id_document, l’identifiant numérique du document original à encoder ; id_objet l’identifiant unique de l’objet auquel le document encodé devra être attaché automatiquement ; objet, le type d’objet auquel (...)

  • MediaSPIP v0.2

    21 juin 2013, par

    MediaSPIP 0.2 est la première version de MediaSPIP stable.
    Sa date de sortie officielle est le 21 juin 2013 et est annoncée ici.
    Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
    Comme pour la version précédente, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
    Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...)

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

  • Overlay command issue with multiple images

    28 juin 2019, par user3270148

    I Have a task to create video with mp4, audio and images with FFmpeg Command,
    and stuck in overlay issue. animation hide behind image how do i set command ?

    I have creating FFmpeg command for my Android application. I have tried with given command. i do interval for 2 images and in given interval change image, till first image video working fine but when image change video will not shown actually image hide it.

    ffmpeg -i samplenew.mp4 -i img.jpg -i img2.jpg -filter_complex "[1:v]format=argb,geq=r=’r(X,Y)’:a=’0.5*alpha(X,Y)’[zork] ;[0:v][zork]overlay=x=(main_w-overlay_w)/2:y=(main_h-overlay_h)/2:enable=’between(t,1,11)’[tmp] ;
    [tmp][2:v]overlay=x=(main_w-overlay_w)/2:y=(main_h-Actuoverlay_h)/2:enable=’between(t,11,22)’"
    -codec:a copy -preset ultrafast -async 1 out.mp4

    In actual problem in command, there is change image in defined interval but when image is change video is hide behind image.

  • crystalhd : Revert back to letting hardware handle packed b-frames

    16 octobre 2016, par Philip Langdale
    crystalhd : Revert back to letting hardware handle packed b-frames
    

    I’m not sure why, but the mpeg4_unpack_bframes bsf is not
    interacting well with seeking. Looking at the code, it should be
    ok, with possibly one warning shown, but I see it getting stuck
    for an extended period of time after a seek where a packed frame
    is cached to be shown later.

    So, I gave up on that and went back to making the old hardware
    based path work. Turns out that it wasn’t broken except that some
    samples have a 6 byte drop packet which I wasn’t accounting for.

    Now it works again and seeks are good.

    • [DH] libavcodec/crystalhd.c
  • OpenCV video capture - output even potentially corrupt frames

    20 juillet 2018, par J. S.

    In FFmpeg, there is a flag "output_corrupt" that allows the command to output even corrupted frames. I am sending h264 stream to a server where its first few frames are corrupted. By setting "output_corrupt" flag in my FFmpeg command, I am able to view the live stream.
    I can see the live stream by piping FFmpeg data to OpenCV VideoCapture (i.e. cv2.VideoCapture(’/dev/stdin’))

    Note : since my plan is to run CV algorithms on those frames, I need to be able to run it on OpenCV.

    However, by not directly sending the data through VideoCapture, it unavoidably causes some latency issue.

    The best scenario would be to just directly send the h264 stream to OpenCV VideoCapture (i.e. cv2.VideoCapture(’udp ://......’))
    However, because of the corrupted frames, the OpenCV script gets stuck after a second.

    Is there any way to run OpenCV VideoCapture such that it still outputs potentially corrupt frames ?

    Thank you.