Recherche avancée

Médias (1)

Mot : - Tags -/copyleft

Autres articles (94)

  • MediaSPIP version 0.1 Beta

    16 avril 2011, par

    MediaSPIP 0.1 beta est la première version de MediaSPIP décrétée comme "utilisable".
    Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
    Pour avoir une installation fonctionnelle, 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 (...)

  • De l’upload à la vidéo finale [version standalone]

    31 janvier 2010, par

    Le chemin d’un document audio ou vidéo dans SPIPMotion est divisé en trois étapes distinctes.
    Upload et récupération d’informations de la vidéo source
    Dans un premier temps, il est nécessaire de créer un article SPIP et de lui joindre le document vidéo "source".
    Au moment où ce document est joint à l’article, deux actions supplémentaires au comportement normal sont exécutées : La récupération des informations techniques des flux audio et video du fichier ; La génération d’une vignette : extraction d’une (...)

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

Sur d’autres sites (13882)

  • ffmpeg to YouTube with tee mux giving resolution warning (65535x65535), which is not optimal

    25 juillet 2022, par kuldeep chopra

    I am streaming to YouTube and Facebook using ffmpeg , also writing data into disk (recording).

    


    it's working fine on Facebook and recording but on YouTube it's giving warning that is

    


    Please check the video resolution. The current resolution is (65535x65535), which is not optimal.

    


    and output on YouTube is also 1:1 aspect ratio due to the above resolution.

    


    I am using tee mux in ffmpeg Command.

    


    ffmpeg -f dshow -framerate 30 -i video="Integrated Webcam":audio="Microphone Array (Intel® Smart Sound Technology (Intel® SST))" -s 1920x1080 -c:v libx264 -r 30 -preset ultrafast -tune zerolatency -crf 28 -pix_fmt yuv420p -c:a aac -strict -2 -ac 2 -b:a 128k -t 4 -map 0 -f tee "[f=ismv]pipe:1 | [f=flv]rtmps ://youtube | [f=flv]facebook"

    


  • Overlay with fade in-out not showing

    3 mai 2018, par Pier Giorgio Misley

    I can actually add an overlay image in the center of a video from a start time A to an end time B.

    Reading here and there I tried to add a fade-in/fade-out effect to my overlayed image but the result is the image not showing at all in my final video.

    This is my "experiment" :

    -i output.mp4 -i 1.png -filter_complex "[1:v]format=rgba,scale=300:300,fade=in:st=0:d=1:alpha=1,fade=out:st=5:d=1[im];[0][im]overlay=(main_w-overlay_w)/2:(main_h - overlay_h) / 2:enable='between(t,0,5)'" -pix_fmt yuv420p -c:a copy output_0.mp4

    If in understood :

    fade=in:st=0:d=1

    Means that the image should appear at 0’’ with a fade-in effect of 1’’ duration

    fade=out:st=5:d=1

    Means that the image should disappear at 5’’ with a fade-out effect of 1’’ duration

    Isn’t it ?

    Second part would be to add a zoom effect of the image when it is fading in, can I combine the fade-in and the zoom effect toghether ?

    I think that something like this should zoom for a duration of 3 seconds my image overlay, can I add it with another "," separating the filter to the overlayed image ?

    zoompan=z='if(lte(zoom,1.0),1.5,max(1.001,zoom-0.0015))':d=3

    Thanks

    edit :

    The video is 10 sec long. I want an image to be shown with fade in-out and zoom in from 0 to 5 and another from 5 to 10 with the same effect

    Step 1 : adding fade in-out

    -i 0_vid.mp4 -loop 1 -t 1 -i 1.png -filter_complex "[1:v]format=rgba,fade=in:st=0:d=1:alpha=1,fade=out:st=4:d=1:alpha=1[im];[0][im]overlay=(main_w-overlay_w)/2:(main_h - overlay_h)/2:shortest=1" -pix_fmt yuv420p -c:a copy output_0.mp4

    With this solution the fade in works, but the fade out is not even taken in consideration.

    If I add the zoom :

    -i 0_vid.mp4 -loop 1 -t 1 -i 1.png -filter_complex "[1:v]format=rgba,zoompan=z='if(lte(zoom,1.0),1.5,max(1.3875,zoom-0.0015))':d=625,fade=in:st=0:d=1:alpha=1,fade=out:st=4:d=1:alpha=1[im];[0][im]overlay=(main_w-overlay_w)/2:(main_h - overlay_h)/2:shortest=1" -pix_fmt yuv420p -c:a copy output_0.mp4

    This way the image is stretched full screen width and the height is cut. But during the 5 sec animation the image is not resized as normal.

    What I’m aiming for is the image to be zoomed in the video but not to be cut/stretched. I would like to have the image to look smaller at the start and bigger at the end. Is it possible ?

    And also, what am I doing wrong with fade out animation

  • Is there a way to analyse a video to find out its loudness and then correct it to ebu r128

    14 novembre 2019, par A Person

    I wanted to see if anyone know the best way I can analyse a audio of a video and find out it’s loudness.

    I want to use this information to then correct the audio either through FFmpeg or other means.
    The audio has to met https://tech.ebu.ch/docs/r/r128.pdf the ebu standard of loudness -23 and not higher than 0.5.

    is there a way to do this ?

    I am having difficulties finding a solution.