Recherche avancée

Médias (0)

Mot : - Tags -/signalement

Aucun média correspondant à vos critères n’est disponible sur le site.

Autres articles (54)

  • 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

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

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

Sur d’autres sites (6450)

  • Run ffmpeg on Terminal MacOS [closed]

    6 mars 2013, par user2139175

    I'm rather new to MacOS and I cannot find it easy to working with Terminal to get ffmpeg run properly as I have on Window.

    I have got ffmpeg binary from http://ffmpegmac.net and I try running the executable in Terminal, it tells that the command not found ? The only way I can run it by now is using command : "open ffmpeg", but this way the Terminal open in another window and this is not what I'm expecting.

    Is there any ways to call ffmpeg directly in Terminal (just like run in on Windows cmd) or I'm missing anything ?

  • ffmpeg convert MKV to MP4 while keeping Audio and Subtitle titles

    4 septembre 2017, par Fetts

    I am using ffmpeg to batch convert a bunch of MKV videos to MP4 videos. The code I use for this is :

    for %%a in ("*.*") do ffmpeg -i "%%a" -codec copy -map 0 "newfiles\%%~na.mp4"

    However, I cannot figure out how to keep the title for each audio track. For example, here is what I see when converting one of my videos :

    Stream #0:2(eng): Audio: aac (LC) (mp4a / 0x6134706D), 48000 Hz, stereo, fltp
       Metadata:
         title           : Director Commentary

    Stream #0:3(eng): Audio: aac (LC) (mp4a / 0x6134706D), 48000 Hz, stereo, fltp
       Metadata:
         title           : Production Commentary

    While these tracks appear in the converted MP4 file, the titles "Director Commentary" and "Production Commentary" are not kept. I’ve tried using different variations of map_metadata, but it doesn’t seem to work.

    Any thoughts would be appreciated.

  • minimal ffmpeg build without filters

    1er août 2020, par Andrew

    I'm trying to build a minimal version of ffmpeg that is as small as possible, with only support to decode AAC audio in an MP4 container, and write it out to PCM or WAV.

    


    For some reason though, I can't find a way to build ffmpeg without it including all of these filters :

    


    Enabled filters:
aformat                 atrim                   hflip                   transpose               vflip
anull                   format                  null                    trim


    


    Is there any way to disable these ?

    


    I'm using this configure command :

    


    ./configure \
        --disable-fast-unaligned \
        --disable-pthreads \
        --disable-w32threads \
        --disable-os2threads \
        --disable-debug \
        --disable-stripping \
        --disable-safe-bitstream-reader \
        --disable-all \
        --enable-ffmpeg \
        --enable-avcodec \
        --enable-avformat \
        --enable-avfilter \
        --disable-filters \
        --enable-protocol=pipe \
        --disable-swresample \
        --disable-swscale \
        --disable-network \
        --disable-d3d11va \
        --disable-dxva2 \
        --disable-vaapi \
        --disable-vdpau \
        --enable-protocol=file \
        --disable-bzlib \
        --disable-iconv \
        --disable-libxcb \
        --disable-lzma \
        --disable-sdl2 \
        --disable-securetransport \
        --disable-xlib \
        --disable-zlib \
        --enable-encoder=pcm_s16le \
        --enable-muxer=pcm_s16le,wav \
        --enable-demuxer=mov \
        --enable-libfdk-aac \
        --enable-nonfree \
        --enable-decoder=libfdk_aac