Recherche avancée

Médias (91)

Autres articles (56)

  • Les autorisations surchargées par les plugins

    27 avril 2010, par

    Mediaspip core
    autoriser_auteur_modifier() afin que les visiteurs soient capables de modifier leurs informations sur la page d’auteurs

  • 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

  • Supporting all media types

    13 avril 2011, par

    Unlike most software and media-sharing platforms, MediaSPIP aims to manage as many different media types as possible. The following are just a few examples from an ever-expanding list of supported formats : images : png, gif, jpg, bmp and more audio : MP3, Ogg, Wav and more video : AVI, MP4, OGV, mpg, mov, wmv and more text, code and other data : OpenOffice, Microsoft Office (Word, PowerPoint, Excel), web (html, CSS), LaTeX, Google Earth and (...)

Sur d’autres sites (10948)

  • How to get video length using ffmpeg

    21 janvier 2019, par Kevin

    I am getting the duration of video using following code,

    if (substr(php_uname(), 0, 7) == "Windows"){            
       $time = exec("{$ffmpeg} -i $path 2>&1 | findstr Duration");

       echo $time;
       exit;

       $duration = explode(":", $time);                
       $seconds = ($duration[0] * 3600) + ($duration[1] * 60) + round($duration[2]);  
       $minutes = $seconds/60;
       $real_minutes = floor($minutes);
       $real_seconds = round(($minutes-$real_minutes)*60);
       $length = $real_minutes.':'.$real_seconds;
    }

    $time shows the output like Duration: 00:00:06.52, start: 0.000000, bitrate: 350 kb/s but $duration shows only like Array ans $length shows 0:0 only for all videos. So how can i get video length please help me.

  • fate/matroska : Add test for zero-length Block

    25 avril 2020, par Andreas Rheinhardt
    fate/matroska : Add test for zero-length Block
    

    It furthermore tests the demuxer's handling of chained SeekHeads,
    level 1-elements after the Clusters and the muxer's capability of
    writing huge TrackNumbers as well as expanding the Cues' length field
    by one byte if necessary to fill the reserved space. It also tests
    propagation of metadata.

    Signed-off-by : Andreas Rheinhardt <andreas.rheinhardt@gmail.com>

    • [DH] tests/fate/matroska.mak
    • [DH] tests/ref/fate/matroska-zero-length-block
  • FFmpeg Video Merging Length Issue

    1er avril 2014, par Sanket990

    I have created 2 file 1)first.mp4 and 2) test.mp3 when i am merging this file and created one new video .video is created perfectly done but getting one problem (Audio Problem)

    Two file description
    first.mp4 in video Length -30Sec
    test.mp4 in audio Length -10Sec

    How to handle remaining new video in 10Sec after audio not listen problem any way to handle this type of problem or Any way to detect if remaining 20Sec audio set as first.mp4 video length 20Sec to 30Sec audio length set

    I am executing below command

    String videoWithAudio[] = { "ffmpeg", "-i", "/sdcard/first.mp4", "-i",
                       "/sdcard/test.mp3", "-c:v", "copy", "-c:a", "aac",
                       "-strict", "experimental", "-map", "0:v:0", "-map",
                       "1:a:0", "/sdcard/jointAb.mp4" };