
Recherche avancée
Médias (91)
-
Spoon - Revenge !
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
My Morning Jacket - One Big Holiday
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Zap Mama - Wadidyusay ?
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
David Byrne - My Fair Lady
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Beastie Boys - Now Get Busy
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Granite de l’Aber Ildut
9 septembre 2011, par
Mis à jour : Septembre 2011
Langue : français
Type : Texte
Autres articles (11)
-
Les formats acceptés
28 janvier 2010, parLes commandes suivantes permettent d’avoir des informations sur les formats et codecs gérés par l’installation local de ffmpeg :
ffmpeg -codecs ffmpeg -formats
Les format videos acceptés en entrée
Cette liste est non exhaustive, elle met en exergue les principaux formats utilisés : h264 : H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10 m4v : raw MPEG-4 video format flv : Flash Video (FLV) / Sorenson Spark / Sorenson H.263 Theora wmv :
Les formats vidéos de sortie possibles
Dans un premier temps on (...) -
Supporting all media types
13 avril 2011, parUnlike 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 (...)
-
Ajouter notes et légendes aux images
7 février 2011, parPour pouvoir ajouter notes et légendes aux images, la première étape est d’installer le plugin "Légendes".
Une fois le plugin activé, vous pouvez le configurer dans l’espace de configuration afin de modifier les droits de création / modification et de suppression des notes. Par défaut seuls les administrateurs du site peuvent ajouter des notes aux images.
Modification lors de l’ajout d’un média
Lors de l’ajout d’un média de type "image" un nouveau bouton apparait au dessus de la prévisualisation (...)
Sur d’autres sites (3337)
-
UPD Stream Receiver Container not receiving Sender's stream with ffmpeg in Docker
9 octobre 2022, par JamesI have 2 containers bridged on the same network in Docker : One is acting as an UPD video streamer (sender) and the other one is acting as a the stream Receiver. The Stream is a m3u8.


I manage to start the Sender to stream the m3u8 with ffmpeg, but when I run the ffmpeg command in the Receiver's terminal, it just starts the ffmpeg and it gets stuck. It won't receive the .ts file.


Receiver's terminal Screenshot


Any help would be appreciated.


-
converting png to movies with R via ffmpeg
10 mai 2021, par user237554I want to convert a series of *.png files to a movie with R and have installed ffmpeg in the root directory. I think the installation has been successful because if I type


ffmpeg -version



in terminal I get all of the version information etc., etc.


I have my *.png files saved in the wd and in R I say


imgs <- list.files(pattern="*.png")
 saveVideo({
 for(img in imgs){
 im <- magick::image_read(img)
 plot(as.raster(im))
 }
 })



I get an error message that "the command ""ffmpeg"" is not available in your system. Please install FFmpeg". Is there something I need to do to get R and ffmpeg to talk to each other ? Again, from terminal, ffmpeg is in the directory and it looks like it installed.


thanks


-
Get thumbnail image from video not working with PHP and ffmpeg (Ubuntu)
20 décembre 2018, par a_pajicI have generated a $cmd string :
ffmpeg -i /home/alen/www/mysite/video/Guitarist-139.mp4 -an -ss 0 -s
1280x720 /home/alen/www/mysite/img/Guitarist-139.jpgthen I have typing a command in PHP :
shell_exec($cmd);
but not working,
then I have pasted this string in terminal but in terminal work perfectly.
What is wrong.