Recherche avancée

Médias (1)

Mot : - Tags -/livre électronique

Autres articles (111)

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

  • HTML5 audio and video support

    13 avril 2011, par

    MediaSPIP uses HTML5 video and audio tags to play multimedia files, taking advantage of the latest W3C innovations supported by modern browsers.
    The MediaSPIP player used has been created specifically for MediaSPIP and can be easily adapted to fit in with a specific theme.
    For older browsers the Flowplayer flash fallback is used.
    MediaSPIP allows for media playback on major mobile platforms with the above (...)

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

  • Compile FFMPEG on Debian 9 [on hold]

    11 septembre 2018, par Json

    I’m trying to run FFMPEG on my pi but the documentation really sucks and also I can’t seem to find any good tutorials.

    From what I read online, I saw that after you install ffmpeg using this command :

    sudo apt-get install ffmpeg

    you need to compile it. My question is, where do I find the ffmpeg folder ?

    I ran this command :

    dpkg -L ffmpeg

    and I got the following list :

    /etc /etc/ffserver.conf /usr /usr/bin /usr/bin/ffmpeg /usr/bin/ffplay
    /usr/bin/ffprobe /usr/bin/ffserver /usr/bin/qt-faststart /usr/share
    /usr/share/doc /usr/share/doc/ffmpeg
    /usr/share/doc/ffmpeg/RELEASE_NOTES
    /usr/share/doc/ffmpeg/changelog.Debian.gz
    /usr/share/doc/ffmpeg/changelog.gz /usr/share/doc/ffmpeg/copyright
    /usr/share/ffmpeg /usr/share/ffmpeg/libvpx-1080p.ffpreset
    /usr/share/ffmpeg/libvpx-1080p50_60.ffpreset
    /usr/share/ffmpeg/libvpx-360p.ffpreset
    /usr/share/ffmpeg/libvpx-720p.ffpreset
    /usr/share/ffmpeg/libvpx-720p50_60.ffpreset /usr/share/lintian
    /usr/share/lintian/overrides /usr/share/lintian/overrides/ffmpeg
    /usr/share/man /usr/share/man/man1 /usr/share/man/man1/ffmpeg-all.1.gz
    /usr/share/man/man1/ffmpeg-bitstream-filters.1.gz
    /usr/share/man/man1/ffmpeg-codecs.1.gz
    /usr/share/man/man1/ffmpeg-devices.1.gz
    /usr/share/man/man1/ffmpeg-filters.1.gz
    /usr/share/man/man1/ffmpeg-formats.1.gz
    /usr/share/man/man1/ffmpeg-protocols.1.gz
    /usr/share/man/man1/ffmpeg-resampler.1.gz
    /usr/share/man/man1/ffmpeg-scaler.1.gz
    /usr/share/man/man1/ffmpeg-utils.1.gz /usr/share/man/man1/ffmpeg.1.gz
    /usr/share/man/man1/ffplay-all.1.gz /usr/share/man/man1/ffplay.1.gz
    /usr/share/man/man1/ffprobe-all.1.gz /usr/share/man/man1/ffprobe.1.gz
    /usr/share/man/man1/ffserver-all.1.gz
    /usr/share/man/man1/ffserver.1.gz
    /usr/share/man/man1/qt-faststart.1.gz

    But I don’t see the ffmpeg folder listed, what am I missing ?

    Where do I need to cd to compile it ?

    And one more thing, once I found it, I need to run this command make install within the folder to compile, right ?

    EDIT : I know it takes a lot of time to compile on the pi itself, I don’t care.

  • Creating master playlist with node-fluent-ffmpeg

    28 septembre 2018, par mikek

    I am not sure if fully understand the concept behind it but I am trying to get at this structure with node-fluent-ffmpeg :

    beach/
         |- playlist.m3u8
         |- 360p.m3u8
         |- 360p_001.ts
         |- 360p_002.ts
         |- 480p.m3u8
         |- 480p_001.ts
         |- 480p_002.ts
         |- 720p.m3u8
         |- 720p_001.ts
         |- 720p_002.ts
         |- 1080p.m3u8
         |- 1080p_001.ts
         |- 1080p_002.ts

    I have everything in place but playlist.m3u8. Is there some specific set of options to create a master playlist ? Or I could just "hack" my way around it manually create one using Node’s fs ?

  • lavu/qsv : make a copy as libmfx alignment requirement for uploading

    17 septembre 2018, par Zhong Li
    lavu/qsv : make a copy as libmfx alignment requirement for uploading
    

    Libmfx requires 16 bytes aligned input/output for uploading.
    Currently only output is 16 byte aligned and assigning same width/height to
    input with smaller buffer size actually, thus definitely will cause segment fault.

    Can reproduce with any 1080p nv12 rawvideo input :
    ffmpeg -init_hw_device qsv=qsv:hw -hwaccel qsv -filter_hw_device qsv -f rawvideo -pix_fmt nv12 -s:v 1920x1080
    - i 1080p_nv12.yuv -vf 'format=nv12,hwupload=extra_hw_frames=16,hwdownload,format=nv12' -an -y out_nv12.yuv

    It can fix #7418

    Signed-off-by : Zhong Li <zhong.li@intel.com>

    • [DH] libavutil/hwcontext_qsv.c