
Recherche avancée
Médias (1)
-
The pirate bay depuis la Belgique
1er avril 2013, par
Mis à jour : Avril 2013
Langue : français
Type : Image
Autres articles (24)
-
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 (5987)
-
FFMPEG Extra just codec information
18 juin 2014, par JimI am planning on using FFMPeg with Java, to detect a specific codec and convert this to another. Using the FFMpeg line -
ffprobe -v quiet -print_format json -show_streams "input.avi"
I can print off all of the stream information of the video, but this includes video information, audio information, all metadata, all tags and other information which I just don’t need.
Question : Is it possible to launch an FFMpeg command which only returns the video codec, so I don’t have to wave through unnecessary information ?
-
OpenCV : VideoCapture not working with DSHOW backend
12 juin 2017, par nji9I built OpenCV (with mingw 4.9.2 @ Win7Prof64) with
CMake switches for WITH_FFMPEG and WITH_DSHOW turned on.
When I access a movie file withVideoCapture (fileName)
works fine (it uses ffmpeg backend then).But
VideoCapture (fileName, cv::CAP_DSHOW)
doesn’t work
(isOpened()
returns false).What is missing/ what do I do wrong ?
Are there any kind of dshow libs/ dlls needed ? -
simple loop saying no file found terminal
29 mai 2021, par Frodo BagginsI have this command which I am trying to find all movie files in all directories, convert them, and remove the original, within all sub directories. It displays the file names but it returns no such file found.


for oggfile in "$(find . -iname '*.mp4' -or -iname '*.avi' -or -iname '*.mov')"
do
ffmpeg -i ${oggfile} -b:a 320000 -vcodec libx264 ${oggfile}_newCompressed.mp4
rm $oggfile
done ```