Recherche avancée

Médias (0)

Mot : - Tags -/protocoles

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

Autres articles (56)

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

  • La sauvegarde automatique de canaux SPIP

    1er avril 2010, par

    Dans le cadre de la mise en place d’une plateforme ouverte, il est important pour les hébergeurs de pouvoir disposer de sauvegardes assez régulières pour parer à tout problème éventuel.
    Pour réaliser cette tâche on se base sur deux plugins SPIP : Saveauto qui permet une sauvegarde régulière de la base de donnée sous la forme d’un dump mysql (utilisable dans phpmyadmin) mes_fichiers_2 qui permet de réaliser une archive au format zip des données importantes du site (les documents, les éléments (...)

  • Script d’installation automatique de MediaSPIP

    25 avril 2011, par

    Afin de palier aux difficultés d’installation dues principalement aux dépendances logicielles coté serveur, un script d’installation "tout en un" en bash a été créé afin de faciliter cette étape sur un serveur doté d’une distribution Linux compatible.
    Vous devez bénéficier d’un accès SSH à votre serveur et d’un compte "root" afin de l’utiliser, ce qui permettra d’installer les dépendances. Contactez votre hébergeur si vous ne disposez pas de cela.
    La documentation de l’utilisation du script d’installation (...)

Sur d’autres sites (7612)

  • How to insert emote-like images among text with ffmpeg ?

    26 janvier 2020, par Vijay Bharadwaj

    I am using FFMPEG to recreate a twitch-like video chat for streaming overlay and wanted a way to insert twitch emotes into the chat that I have. The twitch emotes come in small png/jpg files.

    Currently, I use the drawtext command on several messages to get the text part of the chat, but the emotes are integral to make it look like twitch chat. Any idea how to do this ?

    If it helps, I have a working simulation of the twitch chat on a video in a webpage, using HTML, CSS, and javascript. All I’m trying to do is take what’s simulated and embed it into the video.

  • Insert frames into video using FFMPEG

    29 octobre 2020, par Ryan Glanz

    The camera I am recording video with occasionally drops frames, so I need to reinsert frames into the video to keep the timing precise.

    



    I already have a script to identify exactly when those frames were dropped, so I have an index of every frame that needs to be inserted and where.

    



    For example, in a 100 s video at 100 FPS, I should have 10,000 frames. However, 4 frames were dropped at frame 399, 1205, 4299, and 7891. So, I want to either insert a black frame at the same resolution at those spots, or hold the previous frame for exactly one frame (e.g. hold frame 398 for an extra frame, or 0.01 s).

    



    Is there a way to do this iteratively in FFMPEG ? I am currently writing the video into its constituent frames, adding in my blank images, then re-concatenating the video from the frames, which is a very inefficient process.

    


  • ffmpeg : Insert video into picture

    22 décembre 2014, par ComeBack

    I want insert a video into a picture. Like a picture need a frame. That mean the picture is a frame of video or video will be at the center of picture, another ways the picture will cover the video.

    |--------------------|
    | |
    | |
    | Video here |
    | |
    |--------------------|

    Thanks for help me