Recherche avancée

Médias (1)

Mot : - Tags -/bug

Autres articles (99)

  • MediaSPIP 0.1 Beta version

    25 avril 2011, par

    MediaSPIP 0.1 beta is the first version of MediaSPIP proclaimed as "usable".
    The zip file provided here only contains the sources of MediaSPIP in its standalone version.
    To get a working installation, you must manually install all-software dependencies on the server.
    If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...)

  • ANNEXE : Les plugins utilisés spécifiquement pour la ferme

    5 mars 2010, par

    Le site central/maître de la ferme a besoin d’utiliser plusieurs plugins supplémentaires vis à vis des canaux pour son bon fonctionnement. le plugin Gestion de la mutualisation ; le plugin inscription3 pour gérer les inscriptions et les demandes de création d’instance de mutualisation dès l’inscription des utilisateurs ; le plugin verifier qui fournit une API de vérification des champs (utilisé par inscription3) ; le plugin champs extras v2 nécessité par inscription3 (...)

  • 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 (8998)

  • How to modify x264 source code to get motion search time [on hold]

    21 octobre 2017, par Yicheng Li

    I am a new member of stack overflow, I hope you guys can help me solve this problem.
    I am now using x264 with ffmpeg to encode some raw video, I was asked how much time the motion search would cost in libx264 video coding. Therefore, I need to modify the code, I tried put the clock around the switch sentence in the encoder/me.c
    clock start

    clock end
    After compiling the source code and run a test,
    it shows that the time is very small and it seems I am actually getting the time each macro block spent on motion search.

    So, how should I modify the x264 source code to get the time duration in motion search.

    Big Thanks.

  • ffmpeg - How do I capture AND rotate a video at the same time ?

    21 août 2019, par A R

    I need to record video from a USB camera using ffmpeg. The issue is that the camera is upside down and can’t be repositioned, so I have to rotate 180°.

    So far I’m using this command to capture :

    ffmpeg -framerate 30 -video_size 1280x720 -t 00:58:00 -i /dev/video0 output.mp4

    And then I rotate it using this other command :

    ffmpeg -i output.mp4 -vf "rotate=180*(PI/180), format=yuv420p" -metadata:s:v rotat=0 -codec:v libx264 -codec:a copy ROTATED_output.mp4;

    Both commands are working perfeclty but it takes me twice the time. Is it possible to capture with the filter enabled so that the frames are rotated before being saved the first time ?

  • trying to create thumbnail per 10 second and scaling them at same time

    25 juin 2014, par user3774884

    i need to convert one video file every 10 second into one image or thumbnail. and at the same time i want to convert image width to 320 pixels and height according to width so that aspect ratio can be maintained.I am using the code written below

    "ffmpeg -i "inputfile" -f image2 -vf fps=fps=1/10,thumbnail,scale=360:trunc(ow/a/2)*2 putputfile%08d.jpg"

    its showing one syntax error near unexpected token ’(’"