Recherche avancée

Médias (91)

Autres articles (93)

  • Librairies et binaires spécifiques au traitement vidéo et sonore

    31 janvier 2010, par

    Les logiciels et librairies suivantes sont utilisées par SPIPmotion d’une manière ou d’une autre.
    Binaires obligatoires FFMpeg : encodeur principal, permet de transcoder presque tous les types de fichiers vidéo et sonores dans les formats lisibles sur Internet. CF ce tutoriel pour son installation ; Oggz-tools : outils d’inspection de fichiers ogg ; Mediainfo : récupération d’informations depuis la plupart des formats vidéos et sonores ;
    Binaires complémentaires et facultatifs flvtool2 : (...)

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

  • De l’upload à la vidéo finale [version standalone]

    31 janvier 2010, par

    Le chemin d’un document audio ou vidéo dans SPIPMotion est divisé en trois étapes distinctes.
    Upload et récupération d’informations de la vidéo source
    Dans un premier temps, il est nécessaire de créer un article SPIP et de lui joindre le document vidéo "source".
    Au moment où ce document est joint à l’article, deux actions supplémentaires au comportement normal sont exécutées : La récupération des informations techniques des flux audio et video du fichier ; La génération d’une vignette : extraction d’une (...)

Sur d’autres sites (7847)

  • avformat/matroskaenc : Don't waste bytes on length fields

    29 décembre 2019, par Andreas Rheinhardt
    avformat/matroskaenc : Don't waste bytes on length fields
    

    Several EBML Master elements for which a good upper bound of the final
    length was available were nevertheless written without giving an
    upper bound of the final length to start_ebml_master(), so that their
    length fields were eight bytes long. This has been changed.

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

    • [DH] libavformat/matroskaenc.c
    • [DH] tests/fate/wavpack.mak
    • [DH] tests/ref/fate/aac-autobsf-adtstoasc
    • [DH] tests/ref/fate/matroska-flac-extradata-update
    • [DH] tests/ref/fate/rgb24-mkv
    • [DH] tests/ref/fate/webm-dash-chapters
    • [DH] tests/ref/lavf-fate/av1.mkv
    • [DH] tests/ref/lavf/mka
    • [DH] tests/ref/lavf/mkv
    • [DH] tests/ref/lavf/mkv_attachment
    • [DH] tests/ref/seek/lavf-mkv
  • ffmpeg works with laptop webcam but not with android camera

    28 février 2023, par Rajkumar Somasundaram

    I am working on Macbook with M1 Chip with this ffmpeg version locally installed.

    &#xA;

    ffmpeg version 5.1.2 Copyright (c) 2000-2022 the FFmpeg developers &#xA;built with Apple clang version 14.0.0 (clang-1400.0.29.202)&#xA;

    &#xA;

    With this, I am able to use my laptop's webcam as input and do my ffmpeg work.

    &#xA;

    Following command is what worked (avfoundation was needed for OSX)

    &#xA;

    ffmpeg -f avfoundation -framerate 30 -i 0:0 \&#xA;-map 0:v:0 -map 0:a:0 \&#xA;-pix_fmt yuv420p \&#xA;-c:v libx264 -profile:v high \&#xA;-crf 32 -ar 44100 \&#xA;-c:a aac \&#xA;-filter:v:0 scale=w=480:h=360 \&#xA;-utc_timing_url "https://time.akamai.com/?iso" \&#xA;-segment_time 8 \&#xA;-f dash ${path.join(__dirname, "/output/sample.mpd")}&#xA;

    &#xA;

    Now, I am trying to use my android front camera as an input.

    &#xA;

    But, it is not working. (Errors are mainly in & around camera_index)

    &#xA;

    I am trying the following command and facing error.

    &#xA;

    ffmpeg -f android_camera -camera_index 0 -framerate 30 -map 0:v -map 0:a -c:v\&#xA;libx264 -profile:v high -c:a aac -filter:v:0 scale=w=480:h=360 \&#xA;-utc_timing_url "https://time.akamai.com/?iso" -segment_time 8 \&#xA;-f dash ${path.join(__dirname, "/output/sample.mpd")}&#xA;

    &#xA;

    This is the stacktrace of the whole error log : https://www.diffchecker.com/Mnnghg7M/

    &#xA;

      &#xA;
    1. What is the correct command for android camera as input ?
    2. &#xA;

    3. Do all stable versions of ffmpeg work with android or any limitations ?
    4. &#xA;

    &#xA;

  • How to demux an MP4 video and get its segments ? [on hold]

    21 août 2019, par zergon321

    I have an MP4 video. I want to demux it and then get its segments to have an mpd file like this. How to do it with MP4Box or ffmpeg ?