Recherche avancée

Médias (91)

Autres articles (22)

  • Personnaliser les catégories

    21 juin 2013, par

    Formulaire de création d’une catégorie
    Pour ceux qui connaissent bien SPIP, une catégorie peut être assimilée à une rubrique.
    Dans le cas d’un document de type catégorie, les champs proposés par défaut sont : Texte
    On peut modifier ce formulaire dans la partie :
    Administration > Configuration des masques de formulaire.
    Dans le cas d’un document de type média, les champs non affichés par défaut sont : Descriptif rapide
    Par ailleurs, c’est dans cette partie configuration qu’on peut indiquer le (...)

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

  • My ffmpeg commands result in very compressed video when blending with music. TYIA

    30 juin 2021, par DCnative

    I have a flutter app that combines music with video. Below is the command I am using, but the resulting video has a very blurry/compressed look. Any help would be greatly appreciated !

    


    -i $pathOfVideo -i $_localMusic -y -map 0:v -map 1:a -shortest $f$Platform.pathSeparatorout.mp4

    


    I have tried adding "-crf 20 -preset veryfast" but it did not work

    


  • ffpmeg loop background music in audio file and add fadeout

    21 juin 2021, par Javed Saifi

    I have 2 files one is voice.mp3 and the second is background.mp3 currently I'm adding background music in voice.mp3 below is the command.

    


    ffmpeg -i voice.mp3 -i background.mp3 -filter_complex "[0]volume=1.0[a],[1]volume=0.5[b];[a][b]amix=duration=shortest" -ac 2 -c:a libmp3lame -q:a 4 output.mp3 -y


    


    What I want to achieve is.

    


      

    1. loop background.mp3 if it is shorter than voice.mp3 duration
    2. 


    3. if background.mp3 duration is greater than voice.mp3 then use duration shortest.
    4. 


    5. fadeout background
    6. 


    


  • adding background music to video using ffmpeg

    3 avril 2021, par Captain_Zaraki

    I am trying to add bacground music to a video using ffmpeg and it is working fine but I want if length of video is more than the music file then music should start playing again till the video is over -

    


    ffmpeg -i 1.mp4 -i 2.mp3 -map 0:v:0 -map 1:a:0 output.mp4


    


    is there anyway to perform this action ?