
Recherche avancée
Médias (1)
-
Richard Stallman et le logiciel libre
19 octobre 2011, par
Mis à jour : Mai 2013
Langue : français
Type : Texte
Autres articles (37)
-
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 (...)
-
Encoding and processing into web-friendly formats
13 avril 2011, parMediaSPIP automatically converts uploaded files to internet-compatible formats.
Video files are encoded in MP4, Ogv and WebM (supported by HTML5) and MP4 (supported by Flash).
Audio files are encoded in MP3 and Ogg (supported by HTML5) and MP3 (supported by Flash).
Where possible, text is analyzed in order to retrieve the data needed for search engine detection, and then exported as a series of image files.
All uploaded files are stored online in their original format, so you can (...)
Sur d’autres sites (11054)
-
doc : delete viterbi.txt
10 novembre 2013, par Timothy Gudoc : delete viterbi.txt
The description has been moved to the FFmpeg wiki :
https://trac.ffmpeg.org/wiki/ViterbiAlgorithmSigned-off-by : Timothy Gu <timothygu99@gmail.com>
-
How convert High bitrate mp3 to lower rate using ffmpeg in android
23 mars 2018, par Android TeamWe want to convert 320kbps mp3 file to 128kbps mp3 so currently we are using below ffmpeg command but its not working.
ffmpeg -i input.mp3 -codec:a libmp3lame -qscale:a 5 output.mp3
Result :-the output bitrate same as input mp3.
And we are following the FFmpeg Encoding guideline for that here is the link :- https://trac.ffmpeg.org/wiki/Encode/MP3
so please suggest any solution.
-
gst-inspect-1.0 do not see avdec_h264
16 octobre 2020, par Marat ZakirovPreviously I installed gstreamer via conda and its (good) plugins
next I installed gst-libav via
sudo apt-get install gstreamer1.0-libav
next I usedapt-file list gstreamer1.0-libav
to see installation path and found it to be/usr/lib/x86_64-linux-gnu/gstreamer-1.0/
next I read running gstream manual and then

GST_PLUGIN_PATH=/usr/lib/x86_64-linux-gnu/gstreamer-1.0/ gst-inspect-1.0 avdec_h264

(base) marat@user-System-Product-Name:~$ ls -lh /usr/lib/x86_64-linux-gnu/gstreamer-1.0/ | grep av
-rw-r--r-- 1 root root 181K мар 21 2020 libgstavi.so
-rw-r--r-- 1 root root 56K мар 21 2020 libgstinterleave.so
-rw-r--r-- 1 root root 251K дек 9 2019 libgstlibav.so
-rw-r--r-- 1 root root 15K мар 21 2020 libgstnavigationtest.so
-rw-r--r-- 1 root root 40K мар 21 2020 libgstwavenc.so
-rw-r--r-- 1 root root 48K мар 21 2020 libgstwavpack.so
-rw-r--r-- 1 root root 72K мар 21 2020 libgstwavparse.so



It found many new modules but didn't found avdec_h264. What I am missing ?


UPDATE :


I just want way to use gstreamer via conda virtenv python appliation. If you know valid way to do so I will consider your reply as answer.