
Recherche avancée
Médias (2)
-
Granite de l’Aber Ildut
9 septembre 2011, par
Mis à jour : Septembre 2011
Langue : français
Type : Texte
-
Géodiversité
9 septembre 2011, par ,
Mis à jour : Août 2018
Langue : français
Type : Texte
Autres articles (35)
-
Gestion générale des documents
13 mai 2011, parMédiaSPIP ne modifie jamais le document original mis en ligne.
Pour chaque document mis en ligne il effectue deux opérations successives : la création d’une version supplémentaire qui peut être facilement consultée en ligne tout en laissant l’original téléchargeable dans le cas où le document original ne peut être lu dans un navigateur Internet ; la récupération des métadonnées du document original pour illustrer textuellement le fichier ;
Les tableaux ci-dessous expliquent ce que peut faire MédiaSPIP (...) -
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. -
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 (...)
Sur d’autres sites (4148)
-
Facing libavfilter error while doing cmake for NVIDIA-DALI library on ubuntu version
27 avril 2019, par vamsi— Installed OpenCV 3.4.4 which NVIDIA DALI recommended.
— below link for NVIDIA DALI reference.
https://docs.nvidia.com/deeplearning/sdk/dali-developer guide/docs/quickstart.html
— below link for OpenCV installation :
https://www.pyimagesearch.com/2018/05/28/ubuntu-18-04-how-to-install-opencv/—NVIDIA DALI using below versions :
-DALI version : 0.10.0dev
-Found PythonInterp : /usr/bin/python (found version "2.7.15")
-Found CUDA : /usr (found suitable version "9.1", minimum required is "8.0")
-Found OpenCV : /usr/local/include ;/usr/local/include/opencv (found suitable version "3.4.4", minimum required is "2.0")---This is the error(No package ’libavfilter’ found) i am getting.
- Found CUDA : /usr (found suitable version "9.1", minimum required is "8.0")
Building WITHOUT nvJPEG
Building WITHOUT JpegTurbo
Found OpenCV : /usr/local/include ;/usr/local/include/opencv (found suitable version "3.4.4", minimum required is "2.0")
OpenCV libraries :
opencv_core ;opencv_imgproc ;opencv_imgcodecs -
Found PythonLibs : /usr/lib/x86_64-linux-gnu/libpython2.7.so
pybind11 v2.2.4
Found Protobuf : /usr/lib/x86_64-linux-gnu/libprotobuf.a ;-lpthread (found suitable version "3.0.0", minimum required is "2.0")
-
Enabling TensorFlow TFRecord file format support
- Found PkgConfig : /usr/bin/pkg-config (found version "0.29.1")
- Checking for module ’libavformat’
- Found libavformat, version 58.20.100
Checking for module ’libavcodec’
- Found libavcodec, version 58.35.100
Checking for module ’libavfilter’
No package ’libavfilter’ found
CMake Error at /usr/share/cmake-3.10/Modules/FindPkgConfig.cmake:415 (message) :
A required package was not found
Call Stack (most recent call first) :
/usr/share/cmake-3.10/Modules/FindPkgConfig.cmake:593 (_pkg_check_modules_internal)
cmake/Dependencies.cmake:176 (pkg_check_modules)
CMakeLists.txt:45 (include)Configuring incomplete, errors occurred !
See also - Found CUDA : /usr (found suitable version "9.1", minimum required is "8.0")
-
Evolution #3692 : Suivre les évolution de MediaJS
28 juin 2017, par Franck DHello, juste pour dire que la version 4.2.2 vient de sortir https://github.com/mediaelement/mediaelement/blob/master/changelog.md
J’ai pas fait de test, Il y a pas mal de corrections de bugs, mais aussi la mise à jour de l’API Facebook. Elle était en 2.6 et passe en 2.9 !
https://github.com/mediaelement/mediaelement/commit/8a5760dc6ca3fe5c32eb26f44142e579d718128a
L’intérêt de mettre à jour la lib, c’est que cela fonctionne, après le 13 juillet 2018 https://developers.facebook.com/docs/apps/changelogNous ne mettons pas souvent à jour les libs, (sauf sécu ou gros bug) dans les versions mineures de spip, et nous ne sortons pas souvent de mise à jour "majeure" (avec un peu de chances, la 3.3 sortira d’ici juillet 2019), c’est pour cela que je pense que cela serait une bonne idée de mettre la nouvelle lib, car sinon, une fonction ne fonctionnera plus dès l’année prochaine :-(
Franck
-
FFmpeg keep framerate of input video despite overlay on color source
12 mai 2022, par Peter- 

- FFmpeg can
overlay
(docs) videos like this :




ffmpeg -i inputA_60fps.mp4 -i inputB_60fps.mp4 -filter_complex "[0:v] [1:v] overlay=shortest=1" output1.mp4


-> The frame rate of
output1.mp4
is automatically the same as that of the inputs (60). I like this.

- 

- FFmpeg can also overlay on a
color
(docs) source like this :




ffmpeg -i input_60fps.mp4 -filter_complex "color=c=black [c]; [c] [0:v] overlay=shortest=1" output2.mp4


-> The frame rate of
output2.mp4
is always 25, because the default frame rate of thecolor
source is 25, even though the input has a frame rate of 60. I don't like this.

- 

- The
color
frame rate can be specified explicitly like this :




ffmpeg -i input_60fps.mp4 -filter_complex "color=c=black:r=30 [c]; [c] [0:v] overlay=shortest=1" output3.mp4


-> But then the frame rate of
output3.mp4
is always that fixed value 30. I don't like this.

Question : How can the output frame rate instead automatically use the same frame rate as the input again ?


- FFmpeg can