Recherche avancée

Médias (1)

Mot : - Tags -/iphone

Autres articles (96)

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

  • Ecrire une actualité

    21 juin 2013, par

    Présentez les changements dans votre MédiaSPIP ou les actualités de vos projets sur votre MédiaSPIP grâce à la rubrique actualités.
    Dans le thème par défaut spipeo de MédiaSPIP, les actualités sont affichées en bas de la page principale sous les éditoriaux.
    Vous pouvez personnaliser le formulaire de création d’une actualité.
    Formulaire de création d’une actualité Dans le cas d’un document de type actualité, les champs proposés par défaut sont : Date de publication ( personnaliser la date de publication ) (...)

  • Publier sur MédiaSpip

    13 juin 2013

    Puis-je poster des contenus à partir d’une tablette Ipad ?
    Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir

Sur d’autres sites (13639)

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