Recherche avancée

Médias (0)

Mot : - Tags -/signalement

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

Autres articles (39)

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

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

Sur d’autres sites (3993)

  • watermark image get rotated on video using ffmpeg- android

    24 avril 2017, par Pratik Deogade

    I am trying to add water mark on my video in android, i am successfull in adding it but the problem is water image get rotated by 90 degree clock wise

    here is my command

    String[] complexCommand = "ffmpeg","-y" ,"-i", "/sdcard/Vid.mp4","-strict","experimental", "-vf", "movie=/sdcard/watermarka.png [watermark] ; [in][watermark] overlay=main_w-overlay_w-10:10 [out]","-s", "320x2400","-r", "30", "-b", "15496k", "-vcodec", "mpeg4","-ab", "48000", "-ac", "2", "-ar", "22050", "/sdcard/out.mp4" ;

    the output i am getting is :
    enter image description here

  • an error occurred while processing this directive error got after watermark create on video using ffmpeg

    21 avril 2017, par sajin R

    This is my code for create water mark on video using ffmpeg :

    $cmd = "ffmpeg -filter_complex 'overlay=10:10' -i $video_dir -i thumbnail/watermark.png  input/test2.mp4";
    $return = `$cmd`;

    After that result got error :

    an error occurred while processing this directive

    How to solve this ?

  • ffmpeg add a watermark programmatically (overlay filter)

    30 septembre 2014, par Alberto Martín

    I am trying to implement a watermark, a png over a video while the video is playing.

    I configure three filters, as i saw in some examples :

    1. Input video (INPUT 1)

      avfilter_graph_create_filter(&filt_src,avfilter_get_by_name("buffer"),"in", buffersrc_args, NULL,graph);
    2. Png to overlay (INPUT 2)

      avfilter_graph_create_filter(&bufferovrlay_ctx,bufferovrlay, "overlay", argsStrOvrlay, NULL,graph);
    3. Output video (Output)

      avfilter_graph_create_filter(&filt_out, avfilter_get_by_name("ffbuffersink"),"out", NULL, buffersink_params, graph)

    At this point iḿ not sure if i am setting correctly the parameters of the overlay filter, because i did not found any example but the function returns ok.

    After creating the filters i call avfilter_graph_parse2(graph, "overlay", inputs, &outputs)
    also with no error returned.

    Finally i call avfilter_graph_config(graph, NULL); and i get the following error :

    -22 (AVERROR_INVALIDDATA)

    I found a lot of examples but always using the command line. What do you think i am doing wrong ? Someone has an programmatically example ?