
Recherche avancée
Médias (1)
-
La conservation du net art au musée. Les stratégies à l’œuvre
26 mai 2011
Mis à jour : Juillet 2013
Langue : français
Type : Texte
Autres articles (50)
-
HTML5 audio and video support
13 avril 2011, parMediaSPIP 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 2011MediaSPIP 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 (...) -
De l’upload à la vidéo finale [version standalone]
31 janvier 2010, parLe chemin d’un document audio ou vidéo dans SPIPMotion est divisé en trois étapes distinctes.
Upload et récupération d’informations de la vidéo source
Dans un premier temps, il est nécessaire de créer un article SPIP et de lui joindre le document vidéo "source".
Au moment où ce document est joint à l’article, deux actions supplémentaires au comportement normal sont exécutées : La récupération des informations techniques des flux audio et video du fichier ; La génération d’une vignette : extraction d’une (...)
Sur d’autres sites (8234)
-
FFMPEG scaling, how to set scale so width AND height don't exceed a certain amount ?
12 octobre 2013, par DariusI have 2 videos, one is 500 pixels by 100 pixels (just an example, like something recorded sideways on an iphone). And a 1980 x 400 pixels videos. I need the video to convert maintaining aspect ratios. I know of the -vf scale filter such as -vf scale=-1:320, but that only takes the width and scales the height accordingly. My 500 x 100 video would be 320px wide and 1600 pixels tall. That's bad, I need it to be max 500 pixels tall and max width of 320 (just example sizes).
How would I configure the -vf scale function to do that ?
Using latest ffmpeg 0.11
Recap : scale any video to max 500 height : 320 width while keeping aspect ratio
-
Write only last five minutes of audio to wav file with FFmpeg [closed]
27 février 2023, par Bohdan PetrenkoI'm making a voice recorder bot for Discord.


I have a FFMpeg process that writes all received data to a .wav audio file. One file represents the voice of one user. And when the recording stops, I merge all the audios in one file.


The problem is that the recording can take hours and more, so I need to keep only last five minutes of data on the disk. I don't know how to make FFmpeg do it. Maybe I need use circular buffers, but I don't know how they work in FFmpeg.


I tried making circular buffer by myself, but ffmpeg says that data is corrupted and doesn't write any data.
I use .NET 6 and latest ffmpeg version.
I will be glad to see any help or advice.


-
ffmpeg - How to combine overlapping clips from single video ?
21 février, par anonI am trying to use ffmpeg to take a few clips from a video and combine them together, similar to this :


Cut multiple parts of a video with ffmpeg


Except that the clips come from timestamps that overlap. My command looks like this :


"C:\Program Files\ffmpeg\bin\ffmpeg.exe" -y -i "C:\temp\5min.mp4" ^
-vf "select='between(t,4,6.5)+between(t,5,6)', setpts=N/FRAME_RATE/TB" ^
-af "aselect='between(t,4,6.5)+between(t,5,6)', asetpts=N/SR/TB" "C:\temp\5min-clip.mp4"



The video that I get only contains the first clip. I am on the latest version of ffmpeg. How do I accomplish this ?