
Recherche avancée
Médias (91)
-
Corona Radiata
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Lights in the Sky
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Head Down
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Echoplex
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Discipline
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Letting You
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
Autres articles (33)
-
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 (...) -
De l’upload à la vidéo finale [version standalone]
31 janvier 2010, parLe chemin d’un document audio ou vidéo dans SPIPMotion est divisé en trois étapes distinctes.
Upload et récupération d’informations de la vidéo source
Dans un premier temps, il est nécessaire de créer un article SPIP et de lui joindre le document vidéo "source".
Au moment où ce document est joint à l’article, deux actions supplémentaires au comportement normal sont exécutées : La récupération des informations techniques des flux audio et video du fichier ; La génération d’une vignette : extraction d’une (...) -
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 (6136)
-
Revision 109790 : - Suite à un problème de sécu concernant facteur, je monte la version ...
3 avril 2018, par spip.franck@… — LogSuite à un problème de sécu concernant facteur, je monte la version mini des necessites pour réduire le risque que les gens aient une version de facteur à risque.
Je monte aussi la version mini des utilises, ce qui aura pour incidence une désactivation de facteur si les gens ne le mettent pas également à jour ( à voir si c’est une bonne idée), je pars du principe que le mieux, c’est une désactivation, plutôt que d’avoir un plug à problème
A savoir que je n’ai fait la mise à jour que pour la version de facteur qui est pour spip 3.0.0 mini
https://zone.spip.org/trac/spip-zone/changeset/109788 -
Rotate video without transcode - problems
29 décembre 2023, par Tyrone HirtI created an FFMpeg script to rotate
-90
some videos, this makes these videos display correctly.

the script is this :


ffmpeg -i input.mp4 -c:v copy -metadata:s:v:0 rotate=-90 output.mp4



The issue is that for some reason all the output files are having variations of
2 frames
, which causes me problems when I use these files as Proxy videos in editing programs.

For example, if the original file has a timecode of
00:00:32:12
the output file for some reason will have a timecode of00:00:32:10
.

The problem seems to be occurring because I am working with files with
23,976 fps
, because I did a test with a video file with30 fps
and there was no variation in the output file.

How can I fix this problem ?


I've already tried adding
-r 23.976
to the code to force the frame rate, but that didn't help either.

The crucial point here is to rotate the video without re-encoding the file, as re-encoding will cause a significant time penalty in my workflow.


-
OpenCV4 (python 3.9) VideoCapture failing to open .mp4 file on osx
15 juin 2021, par EnderI am trying to read an mp4 video frame-wise with OpenCV4 installed with brew. The following snippet, though, fails to open the file :


v_path = os.path.join(v_dir, v_title + ".mp4")
v = cv2.VideoCapture(v_path)



resulting in the following error :


OpenCV: Couldn't read video stream from file []



v_path is an absolute path. Some advise searching for the opencv_ffmpeg.dll file and copying it to the root python folder but its not in /usr/local/Cellar/opencv/4.5.2_4/lib and I would rather not download it directly from a site. If this is crucial, how should I reinstall opencv (ideally still using brew) ? The thing is brew include ffmpeg with the opencv installation. Others say converting to .avi with ffmpeg is the trick but there should be a solution for .mp4, right ? Other questions focus on issues where VideoCapture opens the video but is unable to load any frames, this seems like a less severe problem.


brew doctor



reveals no serious issues.