
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 (29)
-
Des sites réalisés avec MediaSPIP
2 mai 2011, parCette page présente quelques-uns des sites fonctionnant sous MediaSPIP.
Vous pouvez bien entendu ajouter le votre grâce au formulaire en bas de page. -
Participer à sa traduction
10 avril 2011Vous pouvez nous aider à améliorer les locutions utilisées dans le logiciel ou à traduire celui-ci dans n’importe qu’elle nouvelle langue permettant sa diffusion à de nouvelles communautés linguistiques.
Pour ce faire, on utilise l’interface de traduction de SPIP où l’ensemble des modules de langue de MediaSPIP sont à disposition. ll vous suffit de vous inscrire sur la liste de discussion des traducteurs pour demander plus d’informations.
Actuellement MediaSPIP n’est disponible qu’en français et (...) -
Librairies et logiciels spécifiques aux médias
10 décembre 2010, parPour un fonctionnement correct et optimal, plusieurs choses sont à prendre en considération.
Il est important, après avoir installé apache2, mysql et php5, d’installer d’autres logiciels nécessaires dont les installations sont décrites dans les liens afférants. Un ensemble de librairies multimedias (x264, libtheora, libvpx) utilisées pour l’encodage et le décodage des vidéos et sons afin de supporter le plus grand nombre de fichiers possibles. Cf. : ce tutoriel ; FFMpeg avec le maximum de décodeurs et (...)
Sur d’autres sites (4578)
-
Monitoring ffmpeg two-passes encoding
31 décembre 2024, par HodolI'm new in FFMPEG.


According to the official guide, https://trac.ffmpeg.org/wiki/Encode/VP9 I use the following command to convert a large h.264 file :


ffmpeg -i input.mp4 -c:v libvpx-vp9 -b:v 0 -crf 30 -pass 1 -an -f null /dev/null
ffmpeg -i input.mp4 -c:v libvpx-vp9 -b:v 0 -crf 30 -pass 2 -c:a libopus output.webm



However, the pass-1 takes too long time and it does not log progress. With
-report
option I can see something is in progress but I don't know how long I should wait.

Here's questions :


- 

- Is there any way to see the progress of 1-pass ?
- Is there any way to speed up the process ?






Thank you,


-
Not able to play video file in Qt5 based Web browser on Linux ARM machine
20 février 2016, par user3436349I am using Yocto Buildsystem to generate customized Linux Image with Qt5.4
support in it for TI AM335x based ARM platform, here in Yocto I have selected
components those are required for Qt5 based Webbrowser so as to play HTML5 audio
and video files such as :qtmultimedia
gstreamer (1.0)
qtscript
qtwebsockets
qtimageformats
libgles-omap3
lighttpd
gst-ffmpeg
gst-fluendo-mp3
gstreamer (0.10)
Here after building the final image. I found that there are
both gstreamer and gstreamer-1.0 directories in /usr/lib, also the
required ffmpeg libs are located in /usr/lib/gstreamer directory.
But I suspect the webkit by default links to /usr/lib/gstreamer-1.0
directory and hence cannot find required libs.When I tried the manually copy the ffmepg related libs in /usr/lib/gstreamer-1.0
directory from /usr/lib/gstreamer, then I got the libav related version error.Please guide me regarding who to configure webkit or webcore .bb file so that
it links to both the gstreamer directories in /usr/lib and can thus play
HTML5 audio and video files in qt5 based web-browser. -
ffmpeg4android : overlay a video on video with opacity
21 juin 2016, par LuongTruongI am using ffmpeg4android to edit video. Now, I am able to overlay a video on a video by using this command :
String[] complexCommand = {"ffmpeg","-y" ,"-i", "/sdcard/videokit/in_big.mp4","-strict","experimental", "-vf", "movie=/sdcard/videokit/in_small.mp4 [watermark]; [in][watermark] overlay=main_w-overlay_w-0:0 [out]","-s", "320x240","-r", "30", "-b", "15496k", "-vcodec", "mpeg4","-ab", "48000", "-ac", "2", "-ar", "22050", "/sdcard/videokit/out.mp4"};
Now, I want to change the opacity of the video "in_small.mp4" which will be on the top of another video.
Some useful links :
using ffmpeg to add overlay with opacity
ffmpeg overlay video with semi transparent videoFrom those links, I know that
all_opacity
should be the keyword in this case, but I do not know where to put it in the command.Please let me know if you have any ideas. Any suggestion would be appreciated !