
Recherche avancée
Médias (1)
-
Revolution of Open-source and film making towards open film making
6 octobre 2011, par
Mis à jour : Juillet 2013
Langue : English
Type : Texte
Autres articles (41)
-
Support de tous types de médias
10 avril 2011Contrairement à beaucoup de logiciels et autres plate-formes modernes de partage de documents, MediaSPIP a l’ambition de gérer un maximum de formats de documents différents qu’ils soient de type : images (png, gif, jpg, bmp et autres...) ; audio (MP3, Ogg, Wav et autres...) ; vidéo (Avi, MP4, Ogv, mpg, mov, wmv et autres...) ; contenu textuel, code ou autres (open office, microsoft office (tableur, présentation), web (html, css), LaTeX, Google Earth) (...)
-
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 (...)
Sur d’autres sites (11424)
-
FFMPEG add black bars to a image if the video input is not 16:9
31 décembre 2020, par iTeYSo I'm playing with ffmpeg and I have the command currently :


"ffmpeg_path -ss seek_time -i input_video_path -vframes 1 -f mjpeg output_image_path 2<&1"



The issue that I'm facing is that for example I have a vertical video from a mobile phone the output image will be streched to 16:9, what I would like to do is to add black bars to the side of the image if the input is not in a 16:9 format.


Any suggestions or ideas on how I could do that ?


Thank you !


-
ffmpeg insert black to video head/tail
15 mars 2021, par moriakiI tried to carry out the matter of the title.


ffmpeg -i "${in}" -vf tpad=5,start_duration=5,color=black -af adelay=5s,all=1 "${out}"


Console Error :


Only '-vf tpad=5,start_duration=5,color=black' read, ignoring remaining -vf options: Use ',' to separate filters
Only '-af adelay=5s,all=1' read, ignoring remaining -af options: Use ',' to separate filters


No such filter: 'all'
Error reinitializing filters!
Failed to inject frame into filter network: Invalid argument
Error while processing the decoded data for stream #0:1
Conversion failed!



I can hardly understand this legacy.
Thanks in advance.


-
output video has black..whats wrong in this command ?
24 décembre 2022, par vikrami want add text over video and i am using ffmpeg android lib but edited successfully but output video shows me black screen only


String addtextcommand[] = {
 "-i",
 inputpath,
 "-strict",
 "-2",
 "-vf",
 "drawtext=text=\'onLine1\': fontcolor=white", "-map", "0:a",
 "-codec:v", "libx264", "-codec:a", "copy",
 output
};