Recherche avancée

Médias (91)

Autres articles (58)

  • Installation en mode ferme

    4 février 2011, par

    Le mode ferme permet d’héberger plusieurs sites de type MediaSPIP en n’installant qu’une seule fois son noyau fonctionnel.
    C’est la méthode que nous utilisons sur cette même plateforme.
    L’utilisation en mode ferme nécessite de connaïtre un peu le mécanisme de SPIP contrairement à la version standalone qui ne nécessite pas réellement de connaissances spécifique puisque l’espace privé habituel de SPIP n’est plus utilisé.
    Dans un premier temps, vous devez avoir installé les mêmes fichiers que l’installation (...)

  • Multilang : améliorer l’interface pour les blocs multilingues

    18 février 2011, par

    Multilang est un plugin supplémentaire qui n’est pas activé par défaut lors de l’initialisation de MediaSPIP.
    Après son activation, une préconfiguration est mise en place automatiquement par MediaSPIP init permettant à la nouvelle fonctionnalité d’être automatiquement opérationnelle. Il n’est donc pas obligatoire de passer par une étape de configuration pour cela.

  • Les statuts des instances de mutualisation

    13 mars 2010, par

    Pour des raisons de compatibilité générale du plugin de gestion de mutualisations avec les fonctions originales de SPIP, les statuts des instances sont les mêmes que pour tout autre objets (articles...), seuls leurs noms dans l’interface change quelque peu.
    Les différents statuts possibles sont : prepa (demandé) qui correspond à une instance demandée par un utilisateur. Si le site a déjà été créé par le passé, il est passé en mode désactivé. publie (validé) qui correspond à une instance validée par un (...)

Sur d’autres sites (4074)

  • Ffmpeg hardware acceleration unsupported formats betwen transpose and auto_scaler_0

    11 août 2021, par Eduard6421

    I am trying to develop a transoding service which makes use of nvidia hardware acceleration capabilities ( The gpu used in this process is a Tesla T4) ; I want to generate a mpeg-dash playlist for my video so that i can stream it ;

    


    ffmpeg -y -hwaccel cuda -hwaccel_output_format cuda -i mobil1.mp4 -c:v h264_nvenc -c:a aac  \
-map v:0 -b:v:0 1000k -maxrate:0 1500k -bufsize:0 2500k -filter:v:0 "scale_npp=1920:1080:force_original_aspect_ratio=decrease" -map 0:a -b:a 128k \
-f dash dash.mpd


    


    But when mobile videos are uploaded ( which have rotation metadata ) I encounter the following error :

    


    Impossible to convert between the formats supported by the filter 'transpose' and the filter 'auto_scaler_0'
Error reinitializing filters!
Failed to inject frame into filter network: Function not implemented
Error while processing the decoded data for stream #0:0


    


    How can i solve this issue ? I am using the following docker image :
jrottenberg/ffmpeg:4.4-nvidia

    


  • ffmpeg problems with restreaming rtmp [closed]

    1er avril 2023, par Blind Bird

    I am trying to achieve a restream with one input to many outputs.

    


    Currently testing this with 1 output but the stream does not seem to be smooth :

    


    ffmpeg -re -hwaccel cuda -i "https://steamxyzc.com/stream1.m3u8" -vcodec libx264 -maxrate 2000k -b:v 500k -bufsize 1M -g 25 -c:a aac -b:a 192k -c:v h264_nvenc -ac 2 -ar 44100 -f flv -s 720x1080 "rtmp://a.rtmp.youtube.com/live2/fwasfwa"

    


    Any idea what could be causing this ?

    


    ffmpeg -re -hwaccel cuda -i "https://steamxyzc.com/stream1.m3u8" -vcodec libx264 -maxrate 2000k -b:v 500k -bufsize 1M -g 25 -c:a aac -b:a 192k -c:v h264_nvenc -ac 2 -ar 44100 -f flv -s 720x1080 "rtmp://a.rtmp.youtube.com/live2/fwasfwa"

    


  • Use output as input (complex)

    30 juin 2022, par Xavi Font

    I want to take an input file and make a lot of stuff with it, like changing colours, adding overlays, etc... and I do so again with another input, and again, and again, until I am satisfied with the number of clips generated... but on the same command, I want to take the output of all of those tasks and concatenate them... if that is possible.

    


    In my case :

    


      

    1. Take image and make it a five second video (ffmpeg -loop 1 -I
input.jpg -t 5 output.mp4)
    2. 


    3. Take that video from image and add a watermark
    4. 


    5. Do the same with multiple other images (convert them to video and
add a watermark)
    6. 


    7. Concatenate them into a single video (-filter_complex "[output of video of image with watermark 1][output of video of image with watermark 2][output of video of image with watermark 3]concat=n=3")
    8. 


    9. Finally, output the video that contains a concatenation of five
second clips of a static image with a watermark on top.
    10. 


    


    You don't have to do the work for me... that is just instructions on what I need o do... I just want to know how to take the five second clips with he watermark and concatenate them, all in a single command.