Recherche avancée

Médias (91)

Autres articles (109)

  • Websites made ​​with MediaSPIP

    2 mai 2011, par

    This page lists some websites based on MediaSPIP.

  • Des sites réalisés avec MediaSPIP

    2 mai 2011, par

    Cette page présente quelques-uns des sites fonctionnant sous MediaSPIP.
    Vous pouvez bien entendu ajouter le votre grâce au formulaire en bas de page.

  • Support audio et vidéo HTML5

    10 avril 2011

    MediaSPIP utilise les balises HTML5 video et audio pour la lecture de documents multimedia en profitant des dernières innovations du W3C supportées par les navigateurs modernes.
    Pour les navigateurs plus anciens, le lecteur flash Flowplayer est utilisé.
    Le lecteur HTML5 utilisé a été spécifiquement créé pour MediaSPIP : il est complètement modifiable graphiquement pour correspondre à un thème choisi.
    Ces technologies permettent de distribuer vidéo et son à la fois sur des ordinateurs conventionnels (...)

Sur d’autres sites (14701)

  • Running ffmpeg command in Android gives Protocol not found error for image path

    29 mars 2019, par Abdul Mateen

    I am trying to use ffmpeg from Android command line to convert images into video. I have stored my sequence of images on sdcard. When I run ffmpeg command to convert images into video, ffmpeg command give me error Protocol not found.

    My command is like this :

    /data/data/package/files/ffmpeg -r 40 -qscale 2 -i /mnt/sdcard/images/img%d.jpg /mnt/sdcard/images/finalvideo.mp4

    Error is like this /mnt/sdcard/vid.mp4: Protocol not found

    I found the same error message mentioned in error.c file. But I am not getting the type of error and condition when it throws the error. Also when I run ffmpeg command i.e. ffmpeg -protocols from Android and Linux, the number of supported protocols are not same.

    I found file and many protocols missing in Android.

  • avformat/concat : Check protocol prefix

    20 janvier 2016, par Michael Niedermayer
    avformat/concat : Check protocol prefix
    

    Reviewed-by : Andreas Cadhalpun <andreas.cadhalpun@googlemail.com>
    Signed-off-by : Michael Niedermayer <michael@niedermayer.cc>

    • [DH] libavformat/concat.c
  • FFmpeg concat protocol and keyframes

    11 janvier 2023, par Rems

    I am trying to use to the concat protocol but I have troubles with keyframes

    &#xA;

    I use this ffprobe command to visualize the keyframes pts of my videos :

    &#xA;

    ffprobe -loglevel error -select_streams v:0 -show_entries packet=pts_time,flags -of csv=print_section=0 inout.mp4  | awk -F&#x27;,&#x27; &#x27;/K/ {print $1}&#x27;

    &#xA;

    Here is my process : I have the original video, with these keyframes :

    &#xA;

    0.000000 5.000000 9.760000 14.240000  18.440000 ...

    &#xA;

    I trim the first 5 seconds, so the output has these keyframes :

    &#xA;

    0.000000 4.760000 9.240000 13.440000 ...

    &#xA;

    I create a 5 seconds video by looping an image, with the same parameters/codec... that were used to produce the original video. This video just has one keyframe at 0.000000

    &#xA;

    Then I concat this video with the trimmed video like this :

    &#xA;

    ffmpeg -f concat -safe 0 -i list.txt -c copy -shortest  output.mp4 -y

    &#xA;

    But when I look for the keyframes of the output video, I get this :

    &#xA;

    0.021016 5.035000 9.795000 14.275000 ...

    &#xA;

    Is this behavior normal ? Should I add a parameter to handle keyframes during concatenation ? Thanks

    &#xA;