Recherche avancée

Médias (1)

Mot : - Tags -/getid3

Autres articles (72)

  • Des sites réalisés avec MediaSPIP

    2 mai 2011, par

    Cette page présente quelques-uns des sites fonctionnant sous MediaSPIP.
    Vous pouvez bien entendu ajouter le votre grâce au formulaire en bas de page.

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

  • MediaSPIP v0.2

    21 juin 2013, par

    MediaSPIP 0.2 est la première version de MediaSPIP stable.
    Sa date de sortie officielle est le 21 juin 2013 et est annoncée ici.
    Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
    Comme pour la version précédente, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
    Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...)

Sur d’autres sites (12132)

  • FFMPEG waveform transparent, background solid color

    11 mai 2016, par user1152226

    I am trying to generate a waveform with ffmpeg, I want the background to be a solid color, and the actual waveform to be transparent. The following achieves partially what i want, except that in has a black background. I would like to be able to change this to any color, but have the waveform be transparent. How can i achieve this with ffmepg ?

    ffmpeg -i input.mp3 -filter_complex \
    "[0:a]aformat=channel_layouts=mono,\
    compand=gain=-6, \
    showwavespic=s=600x120, \
    colorchannelmixer=rr=1:gg=0:bb=0:aa=1,\
    drawbox=x=(iw-w)/2:y=(ih-h)/2:w=iw:h=1:color=red,\
    format=rgba,\
    colorkey=#ff0000" \
    -vframes 1 output.png

    This generates this waveform : the background is black, the waveform itself is transparent. How do I change the background color to a different color, while still keeping the waveform transparent ?

    enter image description here

  • There is a problem with converting ffmpeg video from hev1 to hvc1

    18 septembre 2024, par sixawnstar

    ffmpeg -i in.mp4 -c:v copy -c:a copy -tag:v hvc1 out.mp4

    


    I used ffmpeg to transcode the videos, but some of the transcoded videos were black screens with audio but no visuals.

    


    enter image description hereenter image description here

    


    By using ffmpeg -i video.mp4 to view the video information, it was found that the information for both videos is consistent. However, the screen in Figure 1 displays a black screen after transcoding, whereas Figure 2 functions normally after transcoding.

    


  • How can I cut out detected freezed (used "freezedetect") parts from a video file using ffmpeg ?

    24 mars 2020, par Itzhak Eretz Kdosha

    I am trying to process a recorded stream that has a lot of freezes.
    I am able to detect the freeze sections using "freezedetect" but I dont know how to pipe the result and cut them out of the video.
    (no experience in video processing at all)

    Would appreciate any help, thanks.