Recherche avancée

Médias (0)

Mot : - Tags -/formulaire

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

Autres articles (108)

  • Le profil des utilisateurs

    12 avril 2011, par

    Chaque utilisateur dispose d’une page de profil lui permettant de modifier ses informations personnelle. Dans le menu de haut de page par défaut, un élément de menu est automatiquement créé à l’initialisation de MediaSPIP, visible uniquement si le visiteur est identifié sur le site.
    L’utilisateur a accès à la modification de profil depuis sa page auteur, un lien dans la navigation "Modifier votre profil" est (...)

  • Websites made ​​with MediaSPIP

    2 mai 2011, par

    This page lists some websites based on MediaSPIP.

  • Ajouter des informations spécifiques aux utilisateurs et autres modifications de comportement liées aux auteurs

    12 avril 2011, par

    La manière la plus simple d’ajouter des informations aux auteurs est d’installer le plugin Inscription3. Il permet également de modifier certains comportements liés aux utilisateurs (référez-vous à sa documentation pour plus d’informations).
    Il est également possible d’ajouter des champs aux auteurs en installant les plugins champs extras 2 et Interface pour champs extras.

Sur d’autres sites (13487)

  • I can't find a good C# Media Transcoding Library [closed]

    11 mai 2021, par TheYoungSeth

    I am trying to find a good c# library for media transcoding, primarily video, and I don't seem to find anything good and actually usable. I do not want to use FFMpeg wrappers because I want my program to be user friendly and for public use which I can't do with FFMpeg because of the harsh usage rules that come with it.

    


    Help would be appreciated,
thanks

    


  • buffersink : introduce FIFO_INIT_ELEMENT_SIZE to complement FIFO_INIT_SIZE

    16 août 2015, par Andreas Cadhalpun
    buffersink : introduce FIFO_INIT_ELEMENT_SIZE to complement FIFO_INIT_SIZE
    

    Use sizeof(void *) as its value, because AVFilterBufferRef is deprecated.

    Reviewed-by : Michael Niedermayer <michael@niedermayer.cc>
    Signed-off-by : Andreas Cadhalpun <Andreas.Cadhalpun@googlemail.com>

    • [DH] libavfilter/buffersink.c
  • Combining find -execdir with grep

    31 mai 2021, par pasan

    I want to go through a bunch of files in various sub folders within a root directory quickly to get the video and audio format type.

    &#xA;

    I can get the information I need from a single file using :

    &#xA;

    ffprobe file.mp4 2>&amp;1 >/dev/null | grep "Stream"&#xA;

    &#xA;

    I can run ffprobe for each file inside the root folder using

    &#xA;

    find . -name "*.mp4" -execdir ffprobe "{}" \;&#xA;

    &#xA;

    What I am struggling with is to use grep with the second command to filter the output I want (as per the first command) and pipe the entire output into a file.&#xA;What is the missing link/s here ?

    &#xA;