Recherche avancée

Médias (2)

Mot : - Tags -/map

Autres articles (65)

  • Mise à jour de la version 0.1 vers 0.2

    24 juin 2013, par

    Explications des différents changements notables lors du passage de la version 0.1 de MediaSPIP à la version 0.3. Quelles sont les nouveautés
    Au niveau des dépendances logicielles Utilisation des dernières versions de FFMpeg (>= v1.2.1) ; Installation des dépendances pour Smush ; Installation de MediaInfo et FFprobe pour la récupération des métadonnées ; On n’utilise plus ffmpeg2theora ; On n’installe plus flvtool2 au profit de flvtool++ ; On n’installe plus ffmpeg-php qui n’est plus maintenu au (...)

  • 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 ;

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

Sur d’autres sites (13448)

  • Python remove and change video background [closed]

    21 juillet 2022, par Billi Alt

    I have a video with a human in the foreground and a white wall in the background. I would like to remove the white wall and to add several background videos. So one video would be from second 0-5 the next from 5-20 and so on. And the end video should still have the initial audio. Do you have any idea how to do that in python ?

    


  • How do I run ffmpeg m3u8 download on iso when moved to background ?

    20 juillet 2022, par user12719663

    I am trying to download an m3u8 playlist in my ioS App using the following ffmpeg command line :
-i ""+url[0].absoluteString+"" -i ""+url[1].absoluteString+"" -c copy "+downloadsDirURL.absoluteString
This works fine when the iPad is open but as soon as it has been closedand goes into Background the process stops. I have tried including the command option -nostdin without success. Is it at all possible to execute this in background mode ?

    


  • Using ffmpeg to embed cover art into mp3 does not work with some images

    31 août 2016, par Yves

    I am using the code described here http://www.ffmpeg.org/ffmpeg-all.html#mp3 to embed cover art into an mp3 :

    ffmpeg -i input.mp3 -i cover.jpg -c copy -map 0 -map 1 -metadata:s:v title="Album cover" -metadata:s:v comment="Cover (Front)" out.mp3

    This works with most images such as youtube thumbnails (example that works : https://i.ytimg.com/vi/ubkWrjeCNGI/hqdefault.jpg), however when I try to embed any cover art from soundcloud such as https://i1.sndcdn.com/artworks-000174313329-x742lv-t500x500.jpg I get the following errors

    [image2 @ 0x7fb009008600] Could not find codec parameters for stream 0 (Video : mjpeg, none(bt470bg/unknown/unknown)) : unspecified size
    Consider increasing the value for the ’analyzeduration’ and ’probesize’ options

    https://i1.sndcdn.com/artworks-000174313329-x742lv-t500x500.jpg : could not find codec parameters

    [mp3 @ 0x7fb009029a00] dimensions not set

    Could not write header for output file #0 (incorrect codec parameters ?) : Invalid argument

    I have increased both of these parameters to MAX_INT64 to no avail. Whats even weirder is that if I download the image to my desktop first and then reference it in ffmpeg from there it works !

    Any ideas ? Thank you !