Recherche avancée

Médias (1)

Mot : - Tags -/biographie

Autres articles (47)

  • L’utiliser, en parler, le critiquer

    10 avril 2011

    La première attitude à adopter est d’en parler, soit directement avec les personnes impliquées dans son développement, soit autour de vous pour convaincre de nouvelles personnes à l’utiliser.
    Plus la communauté sera nombreuse et plus les évolutions seront rapides ...
    Une liste de discussion est disponible pour tout échange entre utilisateurs.

  • Changer son thème graphique

    22 février 2011, par

    Le thème graphique ne touche pas à la disposition à proprement dite des éléments dans la page. Il ne fait que modifier l’apparence des éléments.
    Le placement peut être modifié effectivement, mais cette modification n’est que visuelle et non pas au niveau de la représentation sémantique de la page.
    Modifier le thème graphique utilisé
    Pour modifier le thème graphique utilisé, il est nécessaire que le plugin zen-garden soit activé sur le site.
    Il suffit ensuite de se rendre dans l’espace de configuration du (...)

  • Pas question de marché, de cloud etc...

    10 avril 2011

    Le vocabulaire utilisé sur ce site essaie d’éviter toute référence à la mode qui fleurit allègrement
    sur le web 2.0 et dans les entreprises qui en vivent.
    Vous êtes donc invité à bannir l’utilisation des termes "Brand", "Cloud", "Marché" etc...
    Notre motivation est avant tout de créer un outil simple, accessible à pour tout le monde, favorisant
    le partage de créations sur Internet et permettant aux auteurs de garder une autonomie optimale.
    Aucun "contrat Gold ou Premium" n’est donc prévu, aucun (...)

Sur d’autres sites (8510)

  • How to tell whether the colors in a video frame decoded by FFmpeg are pre-multiplied by alpha ?

    28 mai 2024, par smokris

    When I decode video frames with FFmpeg (avcodec_decode_video2(), sws_scale()), with some videos (e.g., ProRes4444), I get colors pre-multiplied by alpha, and with other videos (e.g., QuickTime PNG), I get colors that aren't pre-multiplied by alpha.

    



    How can I tell whether the colors are pre-multiplied ? Alternatively, how can I tell FFmpeg to always provide either pre-multiplied or un-pre-multiplied ("straight alpha") colors ?

    


  • Audio conversion and filter application using ffmpeg with 1 command

    1er juillet 2019, par user2773013

    I have an mp3 file I need to convert to wav, and apply loudnorm filter afterwards. So far i’ve been doing it with 2 commands.

    ffmpeg -i input.mp3 output.wav

    and

    ffmpeg -y -nostdin -i output.wav -filter_complex "[0:0]FILTER PARAMETER" -map_metadata 0 -map_metadata:s:a:0 0:s:a:0 -map_chapters 0 -map [norm0] -c:a pcm_s16le -ar 1500 -c:s copy out2.wav  

    Is there anyway to use 1 command instead of 2 ? I tried converting straight from mp3 to out2.wav by changing output.wav to input.mp3, but when the resulting file is compared with diff, they are different compared to the 2 step process.

    I’m fairly new to ffmpeg, and have spent hours on the documentation without really knowing how to accomplish what i’m trying to do.

  • when ffmpeg is waiting to reconnect to camera, add blank frames ?

    7 décembre 2016, par moeiscool

    The command I am using is this one.

    It takes an MJPEG stream and saves it to WEBM for one output and another output is straight to stdout as I use it for something else.

    ffmpeg -loglevel warning -reconnect 1 -f mjpeg -r 5 -i http://MJPEGURL/ -vcodec libvpx -r 5 -q:v 1 filename.webm -vf fps=1 -s 640x480 -f image2pipe pipe:1

    It works great. The only issue is that when connection drops to the camera it just stitches together from where it reconnects.

    I would like to add blank frames in between where it disconnects. Is there an option or a way to detect it ? Then maybe i can push some data with stdin ?

    The purpose for adding blank frames is so that is has the proper length even if its "missing frames" from the actual stream itself.