Recherche avancée

Médias (91)

Autres articles (46)

  • Des sites réalisés avec MediaSPIP

    2 mai 2011, par

    Cette page présente quelques-uns des sites fonctionnant sous MediaSPIP.
    Vous pouvez bien entendu ajouter le votre grâce au formulaire en bas de page.

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

  • ffmpeg sepia effect on video

    22 juin 2015, par Gufran Khurshid

    How can I apply simple sepia effect of a video using FFmpeg ? I am seeking for a single line FFmpeg command which I will be using in android.Though I have learnt colorchannelmixer=.393:.769:.189:0:.349:.686:.168:0:.272:.534:.131 on official FFmpeg doc , but unable to apply it properly.Thank you.

  • ffmpeg frame->pts out-of-order when decode hevc

    23 octobre 2023, par ValiantHeart

    I try to set pkt->pts to 0,1,2,3,4,5,6,
but the frame->pts received is 0,1,4,5,3,6,2 where the pict_type was I, I, B, B, B, B, P.

    


    int num = 0;
pkt->pts = num++;
avcodec_send_packet(dec_ctx, pkt);
avcodec_receive_frame(dec_ctx, frame); 


    


    I tried to read h264 file, it is correct ; and I tried to use official 'decode_video.c', it's still incorrect in hevc.

    


    Why the frame->pts is not 0,1,2,3,4,5,6 ?

    


  • How to install FFMPEG in Red Hat OS From source code ?

    9 février 2015, par Satishakumar

    Please somebody provide me references for installing FFMPEG with mp3 and h264 codecs enabled from source code.

    I gone through official FFMPEG website, No detailed information as how to install FFMPEG with all features enabled and no information about dependencies.