Recherche avancée

Médias (0)

Mot : - Tags -/protocoles

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

Autres articles (53)

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

  • FLV Streaming on iPhone with ffmpeg

    11 février 2014, par Sylter

    Good Morning,
    I am an iOS/Mac Developer.

    I am developing an application that grab flv link from a website : now I want to play this flv file in streaming.

    I find in AppStore BUZZPlayer, an application that can play flv video streaming : http://itunes.apple.com/it/app/buzz-player/id389744738?mt=8

    Searching on Google I find out that exists ffmpeg for iPhone, so, my question is how can I stream a FLV Video with ffmpeg on iPhone ?

    A sample code is very appreciated !

    Thank You.

    P.S. Sorry for my poor English...

  • FFMPEG - How to Extract Frames As Images While Removing Sequentially Duplicate Frames

    19 mars 2017, par Michael Nelson

    Is there any way (via script or preferably some parameter in calling ffmpeg that I missed) to extract frames from an avi file and ignore sequentially duplicate frames, thus being able to go through the pictures looking only at the deltas/changes ?

    I frequently have to record meetings at work and a lot of the time, the client screen that I am looking at is not changing while we are talking over the phone. After the meeting is over, I need to use these images as part of our documentation and specifications gathering.

    I know that I could just output every frame and run them through any given duplicate file remover utility, but this would remove ALL duplicate frames. So, if the frames extracted went like this :

    A, A, A, B, B, B, B, C, C, A, A, C, C, C, B, B, B ...

    Running them through a typical duplicate file remover, I would get : A, B, C

    What I would want is : A, B, C, A, C, B

    The command that I am currently using to extract the images is :

    ffmpeg.exe -i file.avi -ss 0 -sameq -f image2 -r 1 images%5d.png

    I was getting every frame beforehand (removing the -r 1 from above), but that was generating way too many frames to deal with since these online meetings can go for hours, so for now, I get one frame per second from the file.

    A Windows based solution would be preferable, however, I’m sure other people would be interested in solutions on other platforms if available.

    Any solution or point in the right direction is much appreciated.

  • FFMPEG - How to Extract Frames As Images While Removing Sequentially Duplicate Frames

    19 octobre 2018, par Michael Nelson

    Is there any way (via script or preferably some parameter in calling ffmpeg that I missed) to extract frames from an avi file and ignore sequentially duplicate frames, thus being able to go through the pictures looking only at the deltas/changes ?

    I frequently have to record meetings at work and a lot of the time, the client screen that I am looking at is not changing while we are talking over the phone. After the meeting is over, I need to use these images as part of our documentation and specifications gathering.

    I know that I could just output every frame and run them through any given duplicate file remover utility, but this would remove ALL duplicate frames. So, if the frames extracted went like this :

    A, A, A, B, B, B, B, C, C, A, A, C, C, C, B, B, B ...

    Running them through a typical duplicate file remover, I would get : A, B, C

    What I would want is : A, B, C, A, C, B

    The command that I am currently using to extract the images is :

    ffmpeg.exe -i file.avi -ss 0 -sameq -f image2 -r 1 images%5d.png

    I was getting every frame beforehand (removing the -r 1 from above), but that was generating way too many frames to deal with since these online meetings can go for hours, so for now, I get one frame per second from the file.

    A Windows based solution would be preferable, however, I’m sure other people would be interested in solutions on other platforms if available.

    Any solution or point in the right direction is much appreciated.