Recherche avancée

Médias (0)

Mot : - Tags -/protocoles

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

Autres articles (67)

  • Participer à sa traduction

    10 avril 2011

    Vous pouvez nous aider à améliorer les locutions utilisées dans le logiciel ou à traduire celui-ci dans n’importe qu’elle nouvelle langue permettant sa diffusion à de nouvelles communautés linguistiques.
    Pour ce faire, on utilise l’interface de traduction de SPIP où l’ensemble des modules de langue de MediaSPIP sont à disposition. ll vous suffit de vous inscrire sur la liste de discussion des traducteurs pour demander plus d’informations.
    Actuellement MediaSPIP n’est disponible qu’en français et (...)

  • Supporting all media types

    13 avril 2011, par

    Unlike most software and media-sharing platforms, MediaSPIP aims to manage as many different media types as possible. The following are just a few examples from an ever-expanding list of supported formats : images : png, gif, jpg, bmp and more audio : MP3, Ogg, Wav and more video : AVI, MP4, OGV, mpg, mov, wmv and more text, code and other data : OpenOffice, Microsoft Office (Word, PowerPoint, Excel), web (html, CSS), LaTeX, Google Earth and (...)

  • Encoding and processing into web-friendly formats

    13 avril 2011, par

    MediaSPIP automatically converts uploaded files to internet-compatible formats.
    Video files are encoded in MP4, Ogv and WebM (supported by HTML5) and MP4 (supported by Flash).
    Audio files are encoded in MP3 and Ogg (supported by HTML5) and MP3 (supported by Flash).
    Where possible, text is analyzed in order to retrieve the data needed for search engine detection, and then exported as a series of image files.
    All uploaded files are stored online in their original format, so you can (...)

Sur d’autres sites (6963)

  • How to play video bytes(h265,h264) to any media server from java [closed]

    29 avril 2023, par gtejas

    I have video bytes(came from device through tcp) i write into a file and its able to play now I need to play that stream on media server.

    


    ffmpeg -re -i myfile.mp4 -c:v libx265 -preset ultrafast -f mpegts rtmp ://ip:1935/live/stream

    


    can i play bytes directly ?

    


  • Nginx-rtmp vod play a list of files from a directory

    7 juillet 2022, par Balazs

    I have the following use case :

    


    I would like to playback MP4 files one after another in a mounted directory with nginx-rtmp. I managed to play/access only 1 files at a time.

    


    So instead of this
rtsp ://192.168.1.100/vod/movie01.MP4

    


    then change it to this manually
rtsp ://192.168.1.100/vod/movie02.MP4

    


    Have and endpoint like this and play all of the videos one after another (without using ffmpeg stream to nginx rtmp endpoint).

    


    rtsp ://192.168.1.100/vod/stream

    


    I have a simple config so far

    


    rtmp {
    server {
        listen 1935;
        chunk_size 4096;

        # video on demand for mp4 files
        application vod {
          allow play all;
          wait_video on;
          play /opt/video/vod;

    }
    }
}


    


    How can I achieve this ?

    


  • Play video with WMV format

    2 février 2023, par juan

    I use ExoPlayer library to play videos but the library does not support the WMV format. How I can play video with WMV format ?

    


    Is there a certain way to play this format, or can I play the video using mobile-ffmpeg
library ?

    


    XML :

    


    


    


    Code fragment :

    


     List<mediaitem> mediaItems = new ArrayList&lt;>();&#xA;&#xA;            MediaItem mediaItem = new MediaItem.Builder()&#xA;                    .setUri(Uri.parse(videos.get(position).getPath()))&#xA;                    .build();&#xA;&#xA;            mediaItems.add(mediaItem);&#xA;            player.setMediaItems(mediaItems);&#xA;&#xA;            binding.videoView.setPlayer(player);&#xA;            player.prepare();&#xA;            player.seekTo(0);&#xA;            player.play();&#xA;</mediaitem>

    &#xA;

    Thanks for the help in advance.

    &#xA;