Recherche avancée

Médias (91)

Autres articles (97)

  • Demande de création d’un canal

    12 mars 2010, par

    En fonction de la configuration de la plateforme, l’utilisateur peu avoir à sa disposition deux méthodes différentes de demande de création de canal. La première est au moment de son inscription, la seconde, après son inscription en remplissant un formulaire de demande.
    Les deux manières demandent les mêmes choses fonctionnent à peu près de la même manière, le futur utilisateur doit remplir une série de champ de formulaire permettant tout d’abord aux administrateurs d’avoir des informations quant à (...)

  • Les formats acceptés

    28 janvier 2010, par

    Les commandes suivantes permettent d’avoir des informations sur les formats et codecs gérés par l’installation local de ffmpeg :
    ffmpeg -codecs ffmpeg -formats
    Les format videos acceptés en entrée
    Cette liste est non exhaustive, elle met en exergue les principaux formats utilisés : h264 : H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10 m4v : raw MPEG-4 video format flv : Flash Video (FLV) / Sorenson Spark / Sorenson H.263 Theora wmv :
    Les formats vidéos de sortie possibles
    Dans un premier temps on (...)

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

  • ffmpeg generate m3u8 from mp4 (Resume option)

    20 août 2014, par diogopms

    I have a mp4 file or other file (non mp4 format) and i need generate ts files and m3u8 playlist.

    I am using this command and works fine :

    ffmpeg -i foo.mp4 -codec copy -vbsf h264_mp4toannexb -map 0 -f segment
    -segment_list out.m3u8 -segment_time 10 out%03d.ts

    Now I need to generate many ts simultaneous so i need a "resume option".

    Please see the example below :

    One thread (first 20 seconds (0-20))

    ffmpeg -i foo.mp4 -codec copy -vbsf h264_mp4toannexb -map 0 -f segment
    -segment_list out.m3u8 -segment_time 10 out%03d.ts

    Seconds thread (20 seconds to 40 seconds)

    ffmpeg -i foo.mp4 ......

    Third thread (40 seconds to 60 seconds)

    ffmpeg -i foo.mp4 ......

    I have lots of core processor to do this jobs.

    In resume i need generate .ts files and m3u8 fastest way possible

    I need help or advises to resolve my problem.

    Prove of concept i build a litle script that use -ss and -t option :

    <?php

    //generate all the commands using -ss and -t <seconds>
    $startTime = new DateTime("00:00:00");
    for ($i=1; $i &lt; 20; $i++) {
       $data = $startTime->format('H:i:s');
       $exec = 'ffmpeg  -i "<file>" -ss '.$data.' -t 10 -c:v copy -bsf h264_mp4toannexb -flags -global_header -map 0 -f segment -segment_time 10 -segment_start_number '.$i.' -segment_list '.sprintf("%04d", $i).'_test.m3u8 -segment_format mpegts '.$i.'stream%05d.ts';
       shell_exec($exec);
       $startTime->modify('+10 seconds');
       echo "\n";
    }

    //cycle all m3u8 and creates a master hls playlist
    $files = glob('*.{m3u8}', GLOB_BRACE);
    sort($files);
    $ret = "#EXTM3U
    #EXT-X-VERSION:3
    #EXT-X-MEDIA-SEQUENCE:0
    #EXT-X-ALLOW-CACHE:YES
    #EXT-X-TARGETDURATION:11
    ";
    foreach($files as $file) {
       $ret .= shell_exec('sed -n -e 6,7p '. $file);
    }
    $ret .= "#EXT-X-ENDLIST";

    file_put_contents('final.m3u8', $ret);

    ?>
    </file></seconds>

    Thanks

  • FFmpeg split multiple files with logo overlay

    25 juillet 2014, par Onur Öztürk

    i want to add logo overlay in video. and also i want to split videos multiple mp4 files

    i can add logo with below code

    ffmpeg -i in.mp4 -i logo.png -filter_complex "[0:v][1:v]overlay=0:620" out.mp4

    also i can split the video to multiple files with below code

    ffmpeg -i in.mp4 -vcodec copy -acodec copy -ss 0.05 -t 20 out1.mp4 -vcodec copy -acodec copy -ss 20 -t 15 out2.mp4

    but i want to add logo and split them with one ffmpeg code

    i use below code but i get error

    ffmpeg -i in.mp4 -i logo.png -filter_complex "[0:v][1:v]overlay=0:620" -vcodec copy -acodec copy -ss 0 -t 20 out1.mp4 -vcodec copy -acodec copy -ss 20 -t 15 out2.mp4

    How can i do two jobs with one ffmpeg code

  • Trying to compile ffmpeg and mpv in Arch Linux : error "undefined reference to pl_log_create_341" [closed]

    4 février 2024, par Mike Nguyen

    Ever since yesterday, I have been struggling to compile ffmpeg, and to a further extent, mpv, on Arch Linux due to the following error that is probably unique to my install :

    &#xA;

    /usr/bin/ld: libavfilter/libavfilter.so: undefined reference to pl_log_create_341&#xA;collect2: error: ld returned 1 exit status&#xA;make: *** [Makefile:133: ffplay_g] Error 1&#xA;make: *** Waiting for unfinished jobs....&#xA;/usr/bin/ld: libavfilter/libavfilter.so: undefined reference to `pl_log_create_341&#x27;&#xA;collect2: error: ld returned 1 exit status&#xA;make: *** [Makefile:133: ffprobe_g] Error 1&#xA;/usr/bin/ld: libavfilter/libavfilter.so: undefined reference to `pl_log_create_341&#x27;&#xA;collect2: error: ld returned 1 exit status&#xA;make: *** [Makefile:133: ffmpeg_g] Error 1&#xA;

    &#xA;

    I was trying to install mpd on my system, but pacman forced me to remove a ton of essential packages relating to multimedia, Qt, etc. I have since been able to reinstall most of these packages.

    &#xA;

    However, my ffmpeg has been corrupted (as well as mpv failing to start) due to another error that apparently no one else has been getting (I have searched Google for this) :

    &#xA;

    symbol lookup error: /usr/lib/libavfilter.so.9: undefined symbol: pl_tone_map_auto&#xA;

    &#xA;

    I have both libavfilter.so.9.12.100 and libavfilter.so.9.13.100 in my /usr/lib directory, and I am forced to run sudo ln -s /usr/lib/libavfilter.so.9.12.100 /usr/lib/libavfilter.so.9 every time I run pacman.

    &#xA;

    I have spent countless hours browsing the web about what solutions are available, but as I said, I seem to be the only one getting these errors.

    &#xA;

    Whether it's installing ffmpeg-git via the AUR, or removing and reinstalling mpv, nothing seems to fix the problem. And no one else is having this problem.

    &#xA;

    I might be forced to do a clean install of Arch Linux, but I don't have the time for it.

    &#xA;