Recherche avancée

Médias (0)

Mot : - Tags -/médias

Aucun média correspondant à vos critères n’est disponible sur le site.

Autres articles (109)

  • List of compatible distributions

    26 avril 2011, par

    The table below is the list of Linux distributions compatible with the automated installation script of MediaSPIP. Distribution nameVersion nameVersion number Debian Squeeze 6.x.x Debian Weezy 7.x.x Debian Jessie 8.x.x Ubuntu The Precise Pangolin 12.04 LTS Ubuntu The Trusty Tahr 14.04
    If you want to help us improve this list, you can provide us access to a machine whose distribution is not mentioned above or send the necessary fixes to add (...)

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

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

  • Ffmpeg : Concat multiple videos and an audio file. Videos may or may not have audio and I cant know it before runnign the command

    28 juillet 2023, par AtActionPark

    I have a list of mp4 and an aac audio file. I have a concat.txt file with all the mp4s that need to be concatenated.
I need to concat all the mp4s and merge the aac on top.

    


    As said in the title, the mp4s individually may or may not have an audio track, and I can not check the mp4s with no audio, add a dummy sound track as it will be an automated process with thousands of commands executed daily.

    


    The sound of the mp4, if present, must be preserved and merged with the aac

    


    Here is a working command for the case where at least the first of my mp4s has an audiotrack :

    


    ffmpeg -f concat -safe 0 -i concat.txt -i audio.aac  -c:v copy -filter_complex "[0:a][1:a] amix=inputs=2:duration=shortest [audio_out]" -map 0:v -map "[audio_out]" -y result.mp4


    


    However that breaks if my mp4s dont have audio

    


    


    Stream specifier ':a' in filtergraph description [0:a][1:a]
amix=inputs=2:duration=shortest [audio_out] matches no streams.

    


    


    I've been reading about anullsrc, and would like to take [0:a] if it exists, or a generated empty audio channel, and merge it with my aac, but I'm not getting there.

    


    Any help would be appreciated

    


    Thanks

    


  • Evolution #4699 (Nouveau) : CVT multi-étapes : un moyen de forcer la validation finale (passer à t...

    22 mars 2021, par RastaPopoulos ♥

    Une personne sur IRC demandait comment faire un bouton pour aller à une étape précise. Ça c’est bien indiqué dans la doc :
    https://www.spip.net/fr_article5386.html#Les-squelettes-de-chaque-page

    name="_retour_etape_X"

    Mais en fait le but c’est pas d’aller à une des étapes qui est numérotée, mais bien de valider la toute fin, donc de passer à traiter(), en pouvant sauter certaines étapes qui sont facultatives !

    Si on fait un bouton submit basique : ça va uniquement passer à l’étape suivante (si on est à l’étape 2, ça va à l’étape 3).

    Mais donc comment faire si je suis à l’étape 2, pour valider complètement ?

    Est-ce qu’il y a un manque ? ou bien ça existe et faut compléter la doc ?

  • How to translate bgr data to CVPixelBufferRef ?or how to play just bgr data in iOS

    4 décembre 2016, par warlock

    I have got some RGB data used live555 & FFmpeg, but how can I play it as a video ?

    I Google a lot and found that avplayer maybe help. Others I searched link me to UIImage translate to rgb...or your search returned no matches.

    This is one I searched, but it is "Create ", not "Play ".

    possible to create a video file from RGB frames using AV Foundation

    I try to use AVsampleBufferDisplayLayer, but I don’t know how to translate.

    Anyone can help ?