Recherche avancée

Médias (3)

Mot : - Tags -/plugin

Autres articles (60)

  • Websites made ​​with MediaSPIP

    2 mai 2011, par

    This page lists some websites based on MediaSPIP.

  • Creating farms of unique websites

    13 avril 2011, par

    MediaSPIP platforms can be installed as a farm, with a single "core" hosted on a dedicated server and used by multiple websites.
    This allows (among other things) : implementation costs to be shared between several different projects / individuals rapid deployment of multiple unique sites creation of groups of like-minded sites, making it possible to browse media in a more controlled and selective environment than the major "open" (...)

  • 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

Sur d’autres sites (6191)

  • Merge commit ’07cac07c0c0360d67e73a7472214c79d6c520a4b’

    27 mars 2017, par Clément Bœsch
    Merge commit ’07cac07c0c0360d67e73a7472214c79d6c520a4b’
    

    * commit ’07cac07c0c0360d67e73a7472214c79d6c520a4b’ :
    dash : Use correct ISO C scanf conversion specifier

    This commit is a noop : the use of SCN (scanf) format is wrong here.

    Merged-by : Clément Bœsch <u@pkh.me>

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

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