Recherche avancée

Médias (91)

Autres articles (86)

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

  • Participer à sa traduction

    10 avril 2011

    Vous pouvez nous aider à améliorer les locutions utilisées dans le logiciel ou à traduire celui-ci dans n’importe qu’elle nouvelle langue permettant sa diffusion à de nouvelles communautés linguistiques.
    Pour ce faire, on utilise l’interface de traduction de SPIP où l’ensemble des modules de langue de MediaSPIP sont à disposition. ll vous suffit de vous inscrire sur la liste de discussion des traducteurs pour demander plus d’informations.
    Actuellement MediaSPIP n’est disponible qu’en français et (...)

  • Ecrire une actualité

    21 juin 2013, par

    Présentez les changements dans votre MédiaSPIP ou les actualités de vos projets sur votre MédiaSPIP grâce à la rubrique actualités.
    Dans le thème par défaut spipeo de MédiaSPIP, les actualités sont affichées en bas de la page principale sous les éditoriaux.
    Vous pouvez personnaliser le formulaire de création d’une actualité.
    Formulaire de création d’une actualité Dans le cas d’un document de type actualité, les champs proposés par défaut sont : Date de publication ( personnaliser la date de publication ) (...)

Sur d’autres sites (7381)

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