Recherche avancée

Médias (1)

Mot : - Tags -/3GS

Autres articles (66)

  • Websites made ​​with MediaSPIP

    2 mai 2011, par

    This page lists some websites based on MediaSPIP.

  • Possibilité de déploiement en ferme

    12 avril 2011, par

    MediaSPIP peut être installé comme une ferme, avec un seul "noyau" hébergé sur un serveur dédié et utilisé par une multitude de sites différents.
    Cela permet, par exemple : de pouvoir partager les frais de mise en œuvre entre plusieurs projets / individus ; de pouvoir déployer rapidement une multitude de sites uniques ; d’éviter d’avoir à mettre l’ensemble des créations dans un fourre-tout numérique comme c’est le cas pour les grandes plate-formes tout public disséminées sur le (...)

  • Ajouter des informations spécifiques aux utilisateurs et autres modifications de comportement liées aux auteurs

    12 avril 2011, par

    La manière la plus simple d’ajouter des informations aux auteurs est d’installer le plugin Inscription3. Il permet également de modifier certains comportements liés aux utilisateurs (référez-vous à sa documentation pour plus d’informations).
    Il est également possible d’ajouter des champs aux auteurs en installant les plugins champs extras 2 et Interface pour champs extras.

Sur d’autres sites (9785)

  • avisynth : Factor out a couple of returns

    28 octobre 2013, par Stephen Hutchinson
    avisynth : Factor out a couple of returns
    

    Signed-off-by : Michael Niedermayer <michaelni@gmx.at>

    • [DH] libavformat/avisynth.c
  • avformat : use AV_OPT_TYPE_BOOL in a bunch of places

    21 novembre 2015, par Clément Bœsch
    avformat : use AV_OPT_TYPE_BOOL in a bunch of places
    
    • [DH] libavformat/adtsenc.c
    • [DH] libavformat/aiffenc.c
    • [DH] libavformat/apngdec.c
    • [DH] libavformat/asfdec_f.c
    • [DH] libavformat/assenc.c
    • [DH] libavformat/avidec.c
    • [DH] libavformat/concatdec.c
    • [DH] libavformat/dashenc.c
    • [DH] libavformat/file.c
    • [DH] libavformat/flacenc.c
    • [DH] libavformat/flvdec.c
    • [DH] libavformat/ftp.c
    • [DH] libavformat/gifdec.c
    • [DH] libavformat/hdsenc.c
    • [DH] libavformat/hlsenc.c
    • [DH] libavformat/http.c
    • [DH] libavformat/icecast.c
    • [DH] libavformat/img2dec.c
    • [DH] libavformat/img2enc.c
    • [DH] libavformat/matroskadec.c
    • [DH] libavformat/matroskaenc.c
    • [DH] libavformat/mov.c
    • [DH] libavformat/movenc.c
    • [DH] libavformat/mp3dec.c
    • [DH] libavformat/mp3enc.c
    • [DH] libavformat/mpegts.c
    • [DH] libavformat/mpegtsenc.c
    • [DH] libavformat/mpjpegdec.c
    • [DH] libavformat/nutenc.c
    • [DH] libavformat/options_table.h
    • [DH] libavformat/rtmphttp.c
    • [DH] libavformat/rtpproto.c
    • [DH] libavformat/rtsp.c
    • [DH] libavformat/sctp.c
    • [DH] libavformat/segment.c
    • [DH] libavformat/smoothstreamingenc.c
    • [DH] libavformat/udp.c
    • [DH] libavformat/unix.c
    • [DH] libavformat/webmdashenc.c
  • Is there a way to convert uploaded videos to browser MP4 using most basic ffmpeg ?

    22 janvier 2016, par PeterTheLobster

    I am trying to convert videos uploaded to my website to browser friendly mp4 using ffmpeg.

    The Problem : the website is hosted by a company and it seems like it does not have the codecs I need (the ones I’m aware to be browser-friendly.) I have learned that h264 and libx264 are the codecs I would want to encode the mp4 videos to, but libx264 is not present and h264 is decodable only. Doing :

    exec("ffmpeg -codecs", $output);

    tells me that :

    D V D h264 H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10

    I have tried converting the videos using mpeg4 codecs, but those are not supported natively in browsers it appears :

    $command ="$ffmpeg -i $target -b 1500k -vcodec mpeg4 -pix_fmt yuv420p -acodec aac -strict experimental $converted2 2>&amp;1";
    exec($command, $output);

    The videos converted using the method above play only audio in chrome for example (the mpeg4 codec encoding is supported).

    Edit : I was able to convert videos to ogg and webm, but those won’t cover all browsers as far as I’m aware. Especially not the mobile ones anyway.

    Question : is there another type of basic ffmpeg, browser friendly mp4 codecs that I am not ware of or was there something wrong with my conversion $command above ? Or would I have to somehow try to install libx264 codecs and libraries ? (My guess is, that I probably cant do that to their servers, right ?)