
Recherche avancée
Médias (3)
-
Valkaama DVD Cover Outside
4 octobre 2011, par
Mis à jour : Octobre 2011
Langue : English
Type : Image
-
Valkaama DVD Label
4 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Image
-
Valkaama DVD Cover Inside
4 octobre 2011, par
Mis à jour : Octobre 2011
Langue : English
Type : Image
Autres articles (111)
-
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) (...)
-
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 (...)
-
Script d’installation automatique de MediaSPIP
25 avril 2011, parAfin de palier aux difficultés d’installation dues principalement aux dépendances logicielles coté serveur, un script d’installation "tout en un" en bash a été créé afin de faciliter cette étape sur un serveur doté d’une distribution Linux compatible.
Vous devez bénéficier d’un accès SSH à votre serveur et d’un compte "root" afin de l’utiliser, ce qui permettra d’installer les dépendances. Contactez votre hébergeur si vous ne disposez pas de cela.
La documentation de l’utilisation du script d’installation (...)
Sur d’autres sites (4370)
-
ffmpeg distributed transcoding
23 juillet 2020, par KalavaI have a 100GB 1080p video file which I want to transcode to 720 h264. Since transcoding is computationally expensive, i wanted to transcode smaller portions of video & stitch it back together. Can we use ffmpeg seek to transcode 10seconds of video & stitch it back together ? When I am reading through blogs they mention to go with GOP. I want to get opinion with below approach. Any help is appreciated.


ffmpeg -ss 00:00:00 -i 80Gb.mp4 -t 10 -s 720x720 -c:v libx264 -c:a aac chunk1.mp4 
ffmpeg -ss 00:00:10 -i 80Gb.mp4 -t 10 -s 720x720 -c:v libx264 -c:a aac chunk2.mp4
ffmpeg -ss 00:00:20 -i 80Gb.mp4 -t 10 -s 720x720 -c:v libx264 -c:a aac chunk2.mp4



...


-
choosing outbound IP (eth0 or eth1) in FFMPEG
4 septembre 2018, par Ba TaI have 2 IP addresses on my server.
$curl --interface eth0 ifconfig.co
111.111.111.111
$curl --interface eth0:0 ifconfig.co
222.222.222.222So via curl I can switch via interfaces so my IP address changes when I visit any url based on eth IP
How can I use same thing via ffmpeg ?
For example, if want to access this video via ffmpeg (it uses 111.111.111.111 to access it)
ffmpeg -i 123.com/video.mp4
how can I access same video from my second IP 222.222.222.222 ?
Is there any command like this, perhaps ?
ffmpeg --interface eth0:0 -i 123.com/video.mp4
-
Calling FFMPEG commands from xcode
2 janvier 2013, par Swatii have got some library files of FFMPEG :
libavcodec.a
libavfilter.a
libavutil.a
libswscale.a
libavdevice.a
libavformat.a
libswresample.aCan anybody tell me how to use these libraries if i want to do audio conversion of amr file to mp3 in iphone app.
The amr file is placed in resource bundle
I cannot understand how to call the methods of the library for audio format conversion.
Any help is appreciated :)