
Recherche avancée
Autres articles (42)
-
La file d’attente de SPIPmotion
28 novembre 2010, parUne file d’attente stockée dans la base de donnée
Lors de son installation, SPIPmotion crée une nouvelle table dans la base de donnée intitulée spip_spipmotion_attentes.
Cette nouvelle table est constituée des champs suivants : id_spipmotion_attente, l’identifiant numérique unique de la tâche à traiter ; id_document, l’identifiant numérique du document original à encoder ; id_objet l’identifiant unique de l’objet auquel le document encodé devra être attaché automatiquement ; objet, le type d’objet auquel (...) -
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 (...)
Sur d’autres sites (8030)
-
reduce moviepy processing time
3 septembre 2021, par MaheshI'm adding image & text to a video at a particular time only, this is the only change I'm doing to the video. But in the moviepy progress bar I can see that it goes over the rest of the frames in video even after the specified timeline. Probably this extra processing is causing it to take much more time than just the code specified changes.


Is there a way I can tell moveipy to ignore rest of the video & close the video file and exit ? this way probably it'll perform faster.


Please also indicate if there is any other ways to speed up the performance of moviepy ?


-
Record creation time of video on GoPro
7 septembre 2016, par Dzung NguyenHow do I record the creation time of the video exactly to ms level ?
I am able to the start time, but only to minutes :
ffprobe -v quiet input.mp4 -print_format json -show_entries stream=index,codec_type:stream_tags=creation_time:format_tags=creation_time
-
How run 2 script python in same time ?
28 février 2021, par FoxFrI explain my need : i wish to run ffmpeg with a python script (that's ok) but i need to know of the script is launched with a blink led connected on the GPIO of my RPI, But i dont know why i can launch my script and start le blink (or just a led on)


Can u help me ? show me the light, please ;)


import RPi.GPIO as GPIO
import time
import os

GPIO.setwarnings(False)
GPIO.setmode(GPIO.BCM)
GPIO.setup(4, GPIO.OUT)
GPIO.setup(22,GPIO.IN)

# fonction qui fait clignoter la led 
def blink(led):
 GPIO.output(led,True)
 time.sleep(0.5)
 GPIO.output(led,False)
 time.sleep(1)

# input of the switch will change the state of the LED
while 1:
 if ( GPIO.input(22) == True ):
 print "start broadcast"
 os.system("sudo /home/pi/videopi/webcam.sh")
 blink(4) << not ok like this !
 time.sleep(1)