Recherche avancée

Médias (0)

Mot : - Tags -/presse-papier

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

Autres articles (31)

  • Support de tous types de médias

    10 avril 2011

    Contrairement à beaucoup de logiciels et autres plate-formes modernes de partage de documents, MediaSPIP a l’ambition de gérer un maximum de formats de documents différents qu’ils soient de type : images (png, gif, jpg, bmp et autres...) ; audio (MP3, Ogg, Wav et autres...) ; vidéo (Avi, MP4, Ogv, mpg, mov, wmv et autres...) ; contenu textuel, code ou autres (open office, microsoft office (tableur, présentation), web (html, css), LaTeX, Google Earth) (...)

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

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

Sur d’autres sites (4642)

  • How do Iuse FFMPEG API to add AV_CODEC_ID_ASS stream to my MPEGTS video format

    31 juillet 2020, par Meir Ivry

    I want to add an ASS/SSA subtitle stream to my video format using FFMPEG API.

    


    The specification for that format is in the following link :
ASS file format specification
(http://www.tcax.org/docs/ass-specs.htm)

    


    I know how to that with video, where it compirsed of the following steps

    


      

    1. get the desired AVCodec
    2. 


    3. create new AVStream
    4. 


    5. create new AVCodecContext
    6. 


    7. create the proper AVFrame for each raw video frame.
    8. 


    9. use avcodec_send_frame to encode frame
    10. 


    11. use avcodec_receive_packet to get the frame packets
    12. 


    13. use av_interleaved_write_frame to write the packets
    14. 


    


    My question is the same procedure applies to subtitles and, if so, how do I initialize the AVFrame ?
Moreover, is there more to know other than that ?

    


    Thanks.

    


  • Converting DPX to JPEG2k in RGB using FFMPEG

    28 juin 2017, par Alarmguy66

    I am attempting to use FFMPEG to convert a 2k DPX sequence that is 10 bit RGB into a Lossless JPEG2k wrapped in MXF, 10 bit with RGB colorspace, wrapped in MXF, Op1a. The following is my code -

    ffmpeg -y -i \PATH\test\0%05d.dpx -r 24 -c:v libopenjpeg -pred 1 c :\temp\123.mxf

    The conversion works in almost every fashion, the exception being the JPEG file is output as YUV with every conversion attempt. I have tried using the jpeg2000 library as well, that always gives an 8 bit output, YUV.

    FFMPEG -version responds - N-85179-gdc1a1b8

    There is no audio accompanying the video.

  • Concatenation error : Cannot concatenate media using NReco Video Converter for .NET (C#)

    10 septembre 2016, par rocketmail

    I want to concatenate two videos into one using Video Converter for .NET (C#) FFMpeg wrapper
    but I have got "cannot concatenate media" exception.. am i missing something or not..
    Here is my Source Code :

    var ffMpeg = new NReco.VideoConverter.FFMpegConverter();
       NReco.VideoConverter.ConcatSettings set = new NReco.VideoConverter.ConcatSettings();

       string videoRootPath = @"E:\Sam\Recording Feature\WebApplication2\WebApplication2\Video\";
       string tobename = "test";

       string[] _fileNames = { @"E:\Sam\Recording Feature\WebApplication2\WebApplication2\Video\1.mov",
                                           @"E:\Sam\Recording Feature\WebApplication2\WebApplication2\Video\2.mov"};

       ffMpeg.ConcatMedia(_fileNames, videoRootPath + tobename + ".mov", NReco.VideoConverter.Format.mov, set);

    Please Help