
Recherche avancée
Autres articles (64)
-
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 (...) -
Publier sur MédiaSpip
13 juin 2013Puis-je poster des contenus à partir d’une tablette Ipad ?
Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir -
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 (13976)
-
File created in subprocess.run not found by os.listdir()
13 novembre 2019, par AbitbolI am using subprocess to launch an instance of ffmpeg extracting frames in a folder. Then I do
os.listdir
on that same folder and it returns an empty list ; off course I would except to see the files created by ffmpeg listed.Here is a minimal example
import os
import subprocess
folder = 'generated'
subprocess.run(['ffmpeg', '-i', 'input.mp4', '-vf', 'fps=4', f'{folder}/%05d.png'])
print(os.listdir(folder)) # []I can testify that the files are created while the script is running.
In the full example I am using ffmpeg complex filter to generate two output, I don’t think that is the source of the problem.
-
Disable i8x8 in lossless
20 juillet 2014, par Fiona Glaser -
extract timestamp from a frame. OpenCV gives wrong results
24 juillet 2012, par ar ar arI have an avi video with H264-MPEG-4 AVC codec.
I have a c++ project in which I use OpenCv. So I take every frame with OpenCv and want to know about the timestamp of the frame in reference to the video length.
OpenCv p0orperties give me wrong results as for the timestamp and the frame count.
So I thought of using ffmpeg to extract the correct timestamp of the frame, but my kwoleedge of ffmpeg is minimal.
Can somebody advice what I need to do ?? Maybe which libraries of ffmpeg to use ?
Or to give me an answer why is this happening to openCv ?