Recherche avancée

Médias (0)

Mot : - Tags -/organisation

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

Autres articles (37)

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

  • Ajouter notes et légendes aux images

    7 février 2011, par

    Pour pouvoir ajouter notes et légendes aux images, la première étape est d’installer le plugin "Légendes".
    Une fois le plugin activé, vous pouvez le configurer dans l’espace de configuration afin de modifier les droits de création / modification et de suppression des notes. Par défaut seuls les administrateurs du site peuvent ajouter des notes aux images.
    Modification lors de l’ajout d’un média
    Lors de l’ajout d’un média de type "image" un nouveau bouton apparait au dessus de la prévisualisation (...)

  • Les tâches Cron régulières de la ferme

    1er décembre 2010, par

    La gestion de la ferme passe par l’exécution à intervalle régulier de plusieurs tâches répétitives dites Cron.
    Le super Cron (gestion_mutu_super_cron)
    Cette tâche, planifiée chaque minute, a pour simple effet d’appeler le Cron de l’ensemble des instances de la mutualisation régulièrement. Couplée avec un Cron système sur le site central de la mutualisation, cela permet de simplement générer des visites régulières sur les différents sites et éviter que les tâches des sites peu visités soient trop (...)

Sur d’autres sites (12052)

  • how to set effect on video in android programmatically ?

    23 août 2017, par Mayank Sugandhi

    I have video which is save in sdcard, now i want to apply the effect like black and white and etc. it’s functionality like editing in video which is already in photo editor or video editor applications.

    now i want to that functionality in android programmatically ? when user choose black and white color in option then it should be response very quickly and change the effect of our video and save it sdcard.

    i have find some solution for this like,

    https://github.com/krazykira/VidEffects

    but it has not save functionality of video and if i go through in
    "FFMPEG" library then it is not responding very quickly ?

    how can i change the effect of video and save this video in sdcard ?

    Thank You

  • how to set effect on video in android programmatically ?

    12 mai 2016, par Mayank Sugandhi

    I have video which is save in sdcard, now i want to apply the effect like black and white and etc. it’s functionality like editing in video which is already in photo editor or video editor applications.

    now i want to that functionality in android programmatically ? when user choose black and white color in option then it should be response very quickly and change the effect of our video and save it sdcard.

    i have find some solution for this like,

    https://github.com/krazykira/VidEffects

    but it has not save functionality of video and if i go through in
    "FFMPEG" library then it is not responding very quickly ?

    how can i change the effect of video and save this video in sdcard ?

    Thank You

  • ffmpeg Fade-in stuck at first frame

    14 janvier 2017, par Pradeep Varadharajan

    I am trying to apply a fade-in effect at the start of a video and a fade-out effect at the end of a video.

    The fade-out effect works as I expect. However the fade-in doesn’t. I am noticing that at the starting, when the video is supposed to be black before fading in, the initial frame shows up vaguely and is stuck till the fade duration ends. The Audio fade-in seems to work correctly however.

    ffmpeg -i infile.mp4 -strict experimental -y -vf "fade=t=out:st=28:d=2, fade=t=in:st=2:d=2" -af "afade=t=out:st=28:d=2, afade=t=in:st=2:d=2" fade_in.mp4

    Can someone please help me understand what I am doing wrong here ?

    According to ffmpeg documentation for this filter, the below example is supposed to make the first 5.5 seconds black, then fade in for 0.5 seconds :

    fade=t=in:st=5.5:d=0.5