Recherche avancée

Médias (9)

Mot : - Tags -/soundtrack

Autres articles (87)

  • Submit bugs and patches

    13 avril 2011

    Unfortunately a software is never perfect.
    If you think you have found a bug, report it using our ticket system. Please to help us to fix it by providing the following information : the browser you are using, including the exact version as precise an explanation as possible of the problem if possible, the steps taken resulting in the problem a link to the site / page in question
    If you think you have solved the bug, fill in a ticket and attach to it a corrective patch.
    You may also (...)

  • List of compatible distributions

    26 avril 2011, par

    The table below is the list of Linux distributions compatible with the automated installation script of MediaSPIP. Distribution nameVersion nameVersion number Debian Squeeze 6.x.x Debian Weezy 7.x.x Debian Jessie 8.x.x Ubuntu The Precise Pangolin 12.04 LTS Ubuntu The Trusty Tahr 14.04
    If you want to help us improve this list, you can provide us access to a machine whose distribution is not mentioned above or send the necessary fixes to add (...)

  • Automated installation script of MediaSPIP

    25 avril 2011, par

    To overcome the difficulties mainly due to the installation of server side software dependencies, an "all-in-one" installation script written in bash was created to facilitate this step on a server with a compatible Linux distribution.
    You must have access to your server via SSH and a root account to use it, which will install the dependencies. Contact your provider if you do not have that.
    The documentation of the use of this installation script is available here.
    The code of this (...)

Sur d’autres sites (9622)

  • Add several texts to ffmpeg slideshow video

    29 décembre 2016, par kostya572

    I have slideshow video created from images with :

    ffmpeg -r 60 -video_size 1280x720 \
    -loop 1 -t 5 -i ok/image-1.jpg \
    -loop 1 -t 2.5 -i ok/image-2.jpg \
    -loop 1 -t 2.5 -i ok/image-3.jpg \
    -loop 1 -t 2.5 -i ok/image-4.jpg \
    -loop 1 -t 2.5 -i ok/image-5.jpg \
    -filter_complex \
    "[1:v][0:v]blend=all_expr='A*(if(gte(T,0.5),1,T/0.5))+B*(1-(if(gte(T,0.5),1,T/0.5)))'[b1v]; \
    [2:v][1:v]blend=all_expr='A*(if(gte(T,0.5),1,T/0.5))+B*(1-(if(gte(T,0.5),1,T/0.5)))'[b2v]; \
    [3:v][2:v]blend=all_expr='A*(if(gte(T,0.5),1,T/0.5))+B*(1-(if(gte(T,0.5),1,T/0.5)))'[b3v]; \
    [4:v][3:v]blend=all_expr='A*(if(gte(T,0.5),1,T/0.5))+B*(1-(if(gte(T,0.5),1,T/0.5)))'[b4v]; \
    [0:v][b1v][1:v][b2v][2:v][b3v][3:v][b4v][4:v]concat=n=9:v=1:a=0,format=yuv420p[v];" -map "[v]" out.mp4

    I know that i can add text with drawtext=fontfile=OpenSans-Regular.ttf:text='Title of this Video':fontcolor=white:fontsize=24:x=(w-tw)/2:y=(h/PHI)+th; Also i know there is possibility to make text duration for example from first second to fifth second with drawtext=enable='between(t,1,5)'. How can i combine multiple texts with different durations with code provided below ?

  • Coverting JPEG images or webcam stream to video using C language with ffmpeg wrapper or any othe way

    19 décembre 2016, par Chakri

    I’m writing a C program that access webcam using linux-v4l2 to record in a video file. I’m able to take jpeg pictures using v4l2 and libjpeg. Here is the part of code :

    int jpgfile;
    if((jpgfile = open("/tmp/myimage.jpeg", O_WRONLY | O_CREAT, 0660)) < 0){
       perror("open");
       exit(1);
       }

    write(jpgfile, buffer, buf.length);
    close(jpgfile);

    I want to replace this peice of code to a ’equivalent video code’ or to convert that jpeg stream (or raw buffer stream) to a video file using libraries or through pipelining because writing to disk requires more cycles. I’ve come across ffmpeg wrappers like avcodec.h but they lack proper documentation.

    Please give me advice to convert to video file.

  • doc/filters : drawtext : add example of printing texts on same baseline

    14 décembre 2016, par Andrey Utkin
    doc/filters : drawtext : add example of printing texts on same baseline
    

    Height of canvas produced by drawtext varies depending on symbols in
    text, so add example for printing separate texts aligned horizontally.

    Wording suggested by Lou Logan <lou@lrcd.com>

    Signed-off-by : Andrey Utkin <andrey.utkin@pb.com>
    Signed-off-by : Lou Logan <lou@lrcd.com>

    • [DH] doc/filters.texi