Recherche avancée

Médias (2)

Mot : - Tags -/map

Autres articles (82)

  • Participer à sa traduction

    10 avril 2011

    Vous 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 (...)

  • Les autorisations surchargées par les plugins

    27 avril 2010, par

    Mediaspip core
    autoriser_auteur_modifier() afin que les visiteurs soient capables de modifier leurs informations sur la page d’auteurs

  • Publier sur MédiaSpip

    13 juin 2013

    Puis-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

Sur d’autres sites (10365)

  • Merge commit ’51ca3cb604a7585a7cff35d4b954794508955c19’

    15 février 2015, par Michael Niedermayer
    Merge commit ’51ca3cb604a7585a7cff35d4b954794508955c19’
    

    * commit ’51ca3cb604a7585a7cff35d4b954794508955c19’ :
    xcbgrab : Use the correct geometry for the region highlight

    See : 0ae37e460c345a4c76e28256af56931e00c94cb5
    Merged-by : Michael Niedermayer <michaelni@gmx.at>

  • OpenCV - motion detection in large video files

    18 décembre 2023, par M9A

    I have large video files (over a few GB each) that I am trying detect motion on. I am using fairly basic OpenCV code in python with ROI to detect motion in a certain area of the video only. This works absolutely fine but takes absolutely ages to process large files. Is there any way to speed things up ? I am simply just checking to see which file has motion detected in it and will not be outputting a video. The moment the first motion is detected the rest of the file is not checked.

    &#xA;

    import sys&#xA;import cv2&#xA;&#xA;video_path = “video.mp4”&#xA;&#xA;capture = cv2.VideoCapture(video_path)&#xA;&#xA;# Set the first frame as the reference background&#xA;_, background = capture.read()&#xA;&#xA;# Define the region of interest (ROI)&#xA;x, y, w, h = 1468, 1142, 412, 385&#xA;roi = (x, y, x &#x2B; w, y &#x2B; h)&#xA;&#xA;while capture.isOpened():&#xA;    ret, frame = capture.read()&#xA;&#xA;    if not ret:&#xA;        break&#xA;&#xA;    # Extract the region of interest from the current frame&#xA;    frame_roi = frame[y:y &#x2B; h, x:x &#x2B; w]&#xA;&#xA;    # Calculate the absolute difference between the ROI and the background&#xA;    diff = cv2.absdiff(background[y:y &#x2B; h, x:x &#x2B; w], frame_roi)&#xA;    gray = cv2.cvtColor(diff, cv2.COLOR_BGR2GRAY)&#xA;    _, thresh = cv2.threshold(gray, 30, 255, cv2.THRESH_BINARY)&#xA;&#xA;    # Check if motion is detected in the ROI (adjust threshold as needed)&#xA;    if cv2.countNonZero(thresh) > 75:&#xA;        print("YES")&#xA;        break&#xA;&#xA;# Release the video capture object&#xA;capture.release()&#xA;

    &#xA;

  • Anomalie #4543 : Accessibilité des chargements ajax (live regions)

    4 septembre 2020, par nicod _

    Si sur le site de cette région, ya pas mal d’ajax qui se recharge "tout seul" sans interaction, possible oui ça va pas du tout,

    Non non, ce sont les cas classiques d’utilisation "de base" : formulaires, et listes de résultats avec paginations.