Recherche avancée

Médias (1)

Mot : - Tags -/book

Autres articles (86)

  • Websites made ​​with MediaSPIP

    2 mai 2011, par

    This page lists some websites based on MediaSPIP.

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

  • Creating farms of unique websites

    13 avril 2011, par

    MediaSPIP platforms can be installed as a farm, with a single "core" hosted on a dedicated server and used by multiple websites.
    This allows (among other things) : implementation costs to be shared between several different projects / individuals rapid deployment of multiple unique sites creation of groups of like-minded sites, making it possible to browse media in a more controlled and selective environment than the major "open" (...)

Sur d’autres sites (13499)

  • FFmpeg : Issues for Transparent Background in WebM Video [closed]

    20 juillet 2024, par BlueSky

    I've encountered an issue while processing videos with FFmpeg. I want to convert a MOV video with an alpha channel to WebM format and overlay it onto a main video. Below are the steps I took and the problem I encountered.

    


    I used Adobe After Effects (AE) to remove the green screen background from a video and exported the MOV file with RGB+Alpha channels using the Animation codec. Additionally, I tried exporting in QuickTime format, both ensuring the alpha channel was included.

    


    When converting the MOV video to WebM format, I executed the following command :

    


    ffmpeg -i input.mov -c:v libvpx-vp9 overlay.webm


    


    Then, I attempted to overlay the converted WebM video onto the main video main.mp4 using the following command :

    


    ffmpeg -i main.mp4 -vf "movie=overlay.webm,scale=200x200[video_inner];[in][video_inner]overlay=x=10:y=10[out]" output.mp4


    


    However, in the final output.mp4 video, the background of the WebM video was not transparent as expected, but instead showed a black background after removing the green screen.

    


    Could there be an error in one of my steps ?

    


    I have tried different command parameters and options but have not been able to resolve this issue.

    


    I expected the WebM video to retain its transparent background when overlaid onto the main video. However, the resulting output.mp4 video showed the background of the WebM portion as black instead of transparent.

    


  • Python convert audio files to MP3

    19 janvier 2015, par Fernando Retimo

    I’m trying to write a small utility that get as input an m4a/ogg file and converts it to a MP3 audio file.
    My main goal is not to use any third party binaries such as ’Lame’ or ’ffmpeg’.
    I read allot about PyMedia and such, but my knowledge on audio codecs is very poor.
    Can any one help me and give me an elegant cross platform solution ?
    Thanks !

    EDIT :
    meanwhile I know it is very basic but this is my code :

    import sys

    def convert2mp3(input_file):
       .....
       some magic...
       ...
       return mp3file

    if __name__ == "__main__":
       if len(sys.argv) != 2:
           print "%prog Usage: %s <input file="file" />"
           sys.exit()

       convert2mp3(sys.argv[1])
  • How to "re-interlace" a video ? How to convert a naïvely deinterlaced 480p video back to 480i ? [closed]

    8 juillet 2021, par toughluck

    I have a 480p video that was naïvely created from a 480i original and had no deinterlacing applied. The resulting format is 480p25. Combing is visible and I would like to convert it back to 480i50, so sort of "re-interlace" the video back to its original state.

    &#xA;

    I have tried the solution from this question : How to convert a 1080p to 1080i using FFMPEG but it did not create the expected output.

    &#xA;

    I looked at ffmpeg reference here : https://www.ffmpeg.org/ffmpeg-all.html but I could not find a proper option. Tons of filters to deinterlace interlaced videos but nothing to "re-interlace" them.

    &#xA;

    My expected output would be this :

    &#xA;

     ------> time&#xA;Input:&#xA;Frame 1 (0 ms)        Frame 2 (40 ms)&#xA;&#xA;11111                 33333&#xA;22222                 44444&#xA;11111                 33333&#xA;22222                 44444&#xA;&#xA;Output 1:&#xA;Frame 1 (0 ms)  Frame 2 (20 ms) Frame 3 (40 ms) Frame 4 (60 ms)&#xA;11111           22222           33333           44444&#xA;11111           22222           33333           44444&#xA;11111           22222           33333           44444&#xA;11111           22222           33333           44444&#xA;&#xA;(Alternative) Output 2:&#xA;Frame 1 (0 ms)  Frame 2 (20 ms) Frame 3 (40 ms) Frame 4 (60 ms)&#xA;22222           11111           44444           33333&#xA;22222           11111           44444           33333&#xA;22222           11111           44444           33333&#xA;22222           11111           44444           33333&#xA;

    &#xA;

    (I'm not sure whether it's top field first or bottom field first, so I'd like to have an option to try both.)

    &#xA;

    Is this possible ?

    &#xA;