Recherche avancée

Médias (1)

Mot : - Tags -/book

Autres articles (72)

  • Configurer la prise en compte des langues

    15 novembre 2010, par

    Accéder à la configuration et ajouter des langues prises en compte
    Afin de configurer la prise en compte de nouvelles langues, il est nécessaire de se rendre dans la partie "Administrer" du site.
    De là, dans le menu de navigation, vous pouvez accéder à une partie "Gestion des langues" permettant d’activer la prise en compte de nouvelles langues.
    Chaque nouvelle langue ajoutée reste désactivable tant qu’aucun objet n’est créé dans cette langue. Dans ce cas, elle devient grisée dans la configuration et (...)

  • Emballe médias : à quoi cela sert ?

    4 février 2011, par

    Ce plugin vise à gérer des sites de mise en ligne de documents de tous types.
    Il crée des "médias", à savoir : un "média" est un article au sens SPIP créé automatiquement lors du téléversement d’un document qu’il soit audio, vidéo, image ou textuel ; un seul document ne peut être lié à un article dit "média" ;

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

  • loop a part of video using ffmpeg

    10 janvier 2019, par 1234567

    loop a part of video using ffmpeg

    I have a video about 1 min long

    I am able to get the part of video using

    ffmpeg -i movie.mp4 -ss 00:00:03 -t 00:00:08 -async 1 cut.mp4

    now I want to loop this trimmed part of video

    how can that be done , is there a a proper loop command, i dont want to use concatenate command

  • Matlab - Capture Video Streams (part 2)

    25 novembre 2014, par Uri Merhav

    This is a follow up on this question. I’m trying to capture a live stream from an ip address (e.g. rtsp ://10.0.0.0:554/live.sdp). The only solution I’ve seen so far is to use mexopencv to call opencv’s streaming functionality from matlab. This has a very significant drawback, in that you need to get mexopencv to actually work on a mac, which is quite challenging.

    So, I was thinking about using the following approach :

    1. Use ffmpeg to stream the rtsp stream into a named pipe
    2. Read the named pipe from Matlab, just as if it was an ordinary video file (am I correct that this is how one uses a named pipe ? I’ve never used this kind of solution before)

    If this solution is inefficient, not going to work, or if there’s a better alternative — I’d love to hear about it !

  • create a looped audio of a certain part of audio using ffmpeg

    8 janvier 2019, par 1234567

    How can we create a looped audio with ffmpeg from an audio file

    the command used for a looped audio is

    ffmpeg -lavfi "amovie=audio.wav:loop=3" out.wav

    but this creates a looped file of the whole audio, not a part of it

    how ever I want is

    If the audio file is of a duration of 4 mins 30 sec, I want to get part from 2 min 25 sec to 3 min 55 sec, of the audio and loop it

    how can we do this