Recherche avancée

Médias (2)

Mot : - Tags -/media

Autres articles (78)

  • Mise à jour de la version 0.1 vers 0.2

    24 juin 2013, par

    Explications des différents changements notables lors du passage de la version 0.1 de MediaSPIP à la version 0.3. Quelles sont les nouveautés
    Au niveau des dépendances logicielles Utilisation des dernières versions de FFMpeg (>= v1.2.1) ; Installation des dépendances pour Smush ; Installation de MediaInfo et FFprobe pour la récupération des métadonnées ; On n’utilise plus ffmpeg2theora ; On n’installe plus flvtool2 au profit de flvtool++ ; On n’installe plus ffmpeg-php qui n’est plus maintenu au (...)

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

Sur d’autres sites (10222)

  • Handling camera to stream videos live in browser ?

    27 décembre 2016, par A Sahra

    I am working to stream videos live in my browser using PHP codeigniter what are the best suggestion to handle and pass the video to ffmpeg and ffserver as input ,is there a good javascript plugin beside using HTML5 as streamer.

  • How to extract frames from all videos in a folder using ffmpeg

    28 janvier 2015, par Olihoops

    I’m currently able to extract images from a file using the following line

    ffmpeg -i inputfile.avi -r 1 image-%d.jpeg

    However, I want to apply this to all the files in a folder, and place it in an output folder.

    Suppose I have the current folder holding all videos :

    input-videos/

    ----subfolder1/

    ------video.avi

    ----subfolder2/

    ------video.avi

    I want everything in the output folder :

    output/

    ----subfolder1/

    ------video/

    ----------*.jpeg

    ----subfolder2/

    ------video/

    ----------*.jpeg

    What is the simplest way to go about this using a bash script ? (or something else better)

  • How to extract frames from all videos in a folder using ffmpeg

    11 mai 2023, par Olivier

    I'm currently able to extract images from a file using the following line

    



    ffmpeg -i inputfile.avi -r 1 image-%d.jpeg


    



    However, I want to apply this to all the files in a folder, and place it in an output folder.

    



    Suppose I have the current folder holding all videos :

    



    input-videos/

    



    ----subfolder1/

    



    ------video.avi

    



    ----subfolder2/

    



    ------video.avi

    



    I want everything in the output folder :

    



    output/

    



    ----subfolder1/

    



    ------video/

    



    ----------*.jpeg

    



    ----subfolder2/

    



    ------video/

    



    ----------*.jpeg

    



    What is the simplest way to go about this using a bash script ? (or something else better)