Recherche avancée

Médias (1)

Mot : - Tags -/artwork

Autres articles (63)

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

  • 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 ;

  • Publier sur MédiaSpip

    13 juin 2013

    Puis-je poster des contenus à partir d’une tablette Ipad ?
    Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir

Sur d’autres sites (11256)

  • Split Long Video Into Small Parts With FFmpeg And PHP

    13 janvier 2021, par Rhara Mutiara

    First, English is not my native language, I hope you understand what i want to say
    
I want to split long video, lets say 1 hour of video into small parts.
Right now I'm able to do this with this code

    


    ob_start();
    passthru('ffmpeg -i in.mp4 -acodec copy -f segment -segment_time 3 -force_key_frames "expr: gte(t, n_forced * 3)" %d.mp4');
    ob_end_clean();


    


    The output is thousands of parts with name 0.mp4, 1.mp4, 2.mp4 etc and 3sec duration each part
    
What I want to do now is should look like this :
    
0.mp4 3seconds , 1.mp4 5seconds, 2.mp4 3seconds.. etc
    
is it possible ?

    


  • How can I create a video from a directory of images in C

    12 décembre 2012, par Chrishi

    How can I create a video from directory which contain set of images using c language. I want to do this inside a c Class file (not in command prompt). Something similar to this.

    void ImagetoVideo(char [] path)
    {
      // create video from file
    }

    I saw some code in the stack overflow but it's all about running a command line code.
    This is the code

    ffmpeg -f image2 -start_number n -i "PATH_TO_IMAGE_FILE" video.mpg
       -vcodec mpeg4 test.avi
  • how to convert and capture with ffmpeg

    16 février 2012, par Wai Yan

    I want to upload a video.Uploaded video will be capture two images at 10% and 50% time length.
    And if uploaded video is not flv, want to convert to flv.
    How to know uploaded video is flv or not flv.
    How to convert ?
    Now I am using php and ffmpeg.
    Please someone answer me.I am beginner for php, ffmpeg and english language.
    I founded many questions in this website about ffmpeg.But I can't found need answer.
    If this question is duplicate question,forgive me.