Recherche avancée

Médias (3)

Mot : - Tags -/collection

Autres articles (80)

  • Personnaliser en ajoutant son logo, sa bannière ou son image de fond

    5 septembre 2013, par

    Certains thèmes prennent en compte trois éléments de personnalisation : l’ajout d’un logo ; l’ajout d’une bannière l’ajout d’une image de fond ;

  • 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

  • XMP PHP

    13 mai 2011, par

    Dixit Wikipedia, XMP signifie :
    Extensible Metadata Platform ou XMP est un format de métadonnées basé sur XML utilisé dans les applications PDF, de photographie et de graphisme. Il a été lancé par Adobe Systems en avril 2001 en étant intégré à la version 5.0 d’Adobe Acrobat.
    Étant basé sur XML, il gère un ensemble de tags dynamiques pour l’utilisation dans le cadre du Web sémantique.
    XMP permet d’enregistrer sous forme d’un document XML des informations relatives à un fichier : titre, auteur, historique (...)

Sur d’autres sites (5146)

  • What are the ways to deploy python code on aws ec2 ?

    17 octobre 2017, par johnconnor

    I have a python project and i want to deploy it on an AWS EC2 instance. My project has dependencies to other python libraries and uses programs installed on my machine. What are the alternatives to deploy my project on an AWS EC2 instance ?
    Further details : My project consist on a celery periodic task that uses ffmpeg and blender to create short videos.
    I have checked elastic bean stalk but it seems it is tailored for web apps. I don’t know if containerizing my project via docker is a good idea...

    The manual way and the cheapest way to do it would be :
    1- Launch a spot instance
    2- git clone the project
    3- Install the librairies via pip
    4- Install all dependant programs
    5- Launch periodic task

    I am looking for a more automatic way to do it.

    Thanks.

  • FFMPEG : How do I convert a minute long MP4 into a WebM (VP8) under 4MB with a decent quality ?

    14 juillet 2021, par svart-galla

    I've seen people on 4chan posting 2-3 minutes long file with a decent quality with sound on /wsg/ or /gif/. I tried to do the same with my MP4 file which is a minute long with this command :

    


    


    ffmpeg -i input.mp4 -threads 4 -c:v libvpx -c:a libvorbis -b:v 400k -b:a 128k -quality good -qmin 0 -qmax 55 output.webm

    


    


    The source video was 12MB and the resulting video was around 4.7MB. But video quality was not so great. I tried changing some of the values which would give me a video under 4MB but with a bad picture quality. How do I find the sweet spot between the size and the quality ? Pls help.

    


  • Use ffmpeg to pan right over an image and then pan left to the original location

    4 février 2024, par user1517922

    I'm using this command to pan to the right for 5 seconds on an image (like a 1080x1080 window moving across a larger image, 500px from the top) :

    


    ffmpeg -loop 1 -r 30 -i image.jpg -vf crop=w=1080:h=1080:x=n:y=500 -frames:v 150 -pix_fmt yuv420p -preset fast -crf 30 video.mp4

    


    I'd like to pan back to the left for 5 seconds to end up at the same spot.

    


    The desired affect is when the video is on loop the square window pans right for 5 seconds then back left for 5 seconds then repeats, smooth and without flicker.

    


    I suspect I need to use zoompan, but I haven't had success trying that.