Recherche avancée

Médias (10)

Mot : - Tags -/wav

Autres articles (53)

  • Personnaliser en ajoutant son logo, sa bannière ou son image de fond

    5 septembre 2013, par

    Certains thèmes prennent en compte trois éléments de personnalisation : l’ajout d’un logo ; l’ajout d’une bannière l’ajout d’une image de fond ;

  • Publier sur MédiaSpip

    13 juin 2013

    Puis-je poster des contenus à partir d’une tablette Ipad ?
    Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir

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

Sur d’autres sites (5300)

  • How to use ffmpeg to stream x11 via netcat ?

    28 janvier 2015, par alasin

    These are the commands I’m trying to use

    Server side :

    ffmpeg -f x11grab -video_size cif -framerate 25 -i :0.0+10,20 -f avi - | nc -l 1500

    Client side :

    nc <server ip="ip"> 1500 | mplayer -vo x11 -cache 3000 -
    </server>

    It seems to be streaming on the server side but client is not able to view the stream.

  • How to set max bitrate and max frame rate in ffmpeg ?

    28 août 2014, par Swapnil Dalvi

    I am using ffmpeg to convert my mp4 format video with Specific set values :

    "audio_bitrate" : 128,
    "audio_sample_rate" : 44100,
    "height" : 720,
    "width" : 1280,
    "max_frame_rate" : 30,
    "max_video_bitrate" : 1500

    How to set limit to frame rate and bitrate ?
    I want to know how to write command with these limitations ?

    thanks in advance

  • Split a video to multiple chunks according to multiple starting and ending frame indices

    7 octobre 2015, par Jon

    Are there any tools (like FFmpeg or OpenCV) can split a video into multiple chunks according to some specific starting and ending frame indices ? For example, given (0,20),(21,33),(40,60)..., each tuple means a starting and ending frame indices pair for a chunk, and the neighbor chunks might not adjoin.

    Note that, the number of chunks might be large. For example, given a 1 hour video, there might be 1500 splits.