Recherche avancée

Médias (1)

Mot : - Tags -/net art

Autres articles (75)

  • Submit bugs and patches

    13 avril 2011

    Unfortunately a software is never perfect.
    If you think you have found a bug, report it using our ticket system. Please to help us to fix it by providing the following information : the browser you are using, including the exact version as precise an explanation as possible of the problem if possible, the steps taken resulting in the problem a link to the site / page in question
    If you think you have solved the bug, fill in a ticket and attach to it a corrective patch.
    You may also (...)

  • Les images

    15 mai 2013
  • Taille des images et des logos définissables

    9 février 2011, par

    Dans beaucoup d’endroits du site, logos et images sont redimensionnées pour correspondre aux emplacements définis par les thèmes. L’ensemble des ces tailles pouvant changer d’un thème à un autre peuvent être définies directement dans le thème et éviter ainsi à l’utilisateur de devoir les configurer manuellement après avoir changé l’apparence de son site.
    Ces tailles d’images sont également disponibles dans la configuration spécifique de MediaSPIP Core. La taille maximale du logo du site en pixels, on permet (...)

Sur d’autres sites (13501)

  • Moving ffmpeg from root to user/local

    25 janvier 2015, par Edward Meaderds

    I noticed that when I followed a guide to install ffmpeg (some time ago), that all of the scripts i want to use, say that ffmpeg need to be in the /usr/local/bin/ffmpeg mine is in root, how do I move the folder to the correct location without messing anything up ? My server is centos 6.5

  • Why is the ffmpeg `-vsync passthrough` option not extracting the same number of frames as shown in the printed info ?

    3 juin 2022, par aininja

    I am using ffmpeg to extract all the frames in a video. To get the timestamps of each frame, I'm using the -vf showinfo filter and matching the frame numbers. The problem is that sometimes the number of frames shown in the info doesn't match up with the number of frames extracted. Why could this be happening ? Is there some default output option that I need to change to avoid this ? Is this non-deterministic behavior a bug ?

    


    The commands used to extract and inspect the frames are :

    


    $ mkdir frames
$ ffmpeg -i video.mp4 -f image2 -vf showinfo -vsync passthrough -q:v 1 frames/%05d.jpg 2> info.txt
$ NUM_FRAMES_INFO=$(cat info.txt | grep pts_time | wc -l)
$ NUM_FRAMES_JPGS=$(ls frames/*.jpg | wc -l)
$ echo ${NUM_FRAMES_INFO} ?= ${NUM_FRAMES_JPGS}


    


    For most videos, this produces the correct outputs all the time. For some videos, however, there is a mismatch occasionally. Also worth mentioning is that MP4 videos are the only ones used and tested. These videos generally only had a single video stream in them.

    


  • Anomalie #4262 (Nouveau) : Permettre à editer_auteur de changer à la fois mail et mot de passe

    4 janvier 2019, par jluc -

    #FORMULAIRE_EDITER_AUTEUR envoie 2 mails lorsqu’une personne non totalement autorisée demande à modifier son mail : l’un à l’ancien mail, l’autre au nouveau. Dans ce dernier mail, figure un lien de confirmation du changement, avec un hash d’authentification. Ce hash est calculé à partir de l’id_auteur, de l’aléa éphémère ET du hash du mot de passe de l’auteur dans la base de donnée.

    Le lien n’est jamais valide lorsque l’auteur modifie en même temps son mot de passe. Car l’appel à formulaires_editer_objet_traiter qui modifie le mot de passe se fait aprés l’envoi du mail. Du coup, le hash d’authentification du lien dans le mail est valable pour l’ancien mot de passe, mais il n’est plus valable aussitôt aprés, dès que le nouveau mot de passe est enregistré en BDD.

    Il faudrait donc appeler formulaires_editer_objet_traiter avant de générer le lien du mail.