Recherche avancée

Médias (1)

Mot : - Tags -/copyleft

Autres articles (83)

  • MediaSPIP version 0.1 Beta

    16 avril 2011, par

    MediaSPIP 0.1 beta est la première version de MediaSPIP décrétée comme "utilisable".
    Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
    Pour avoir une installation fonctionnelle, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
    Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...)

  • Amélioration de la version de base

    13 septembre 2013

    Jolie sélection multiple
    Le plugin Chosen permet d’améliorer l’ergonomie des champs de sélection multiple. Voir les deux images suivantes pour comparer.
    Il suffit pour cela d’activer le plugin Chosen (Configuration générale du site > Gestion des plugins), puis de configurer le plugin (Les squelettes > Chosen) en activant l’utilisation de Chosen dans le site public et en spécifiant les éléments de formulaires à améliorer, par exemple select[multiple] pour les listes à sélection multiple (...)

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

Sur d’autres sites (12962)

  • Jwplayer function snapshot using ffmpeg and php

    5 janvier 2021, par Offboard

    before anything I'm using version 6, then the Snapshot plugin does not work.

    



    I'm finally with 2 questions, take a sequence of photos of a percentage of the video, so googled it and got this code from ffmpeg :

    



    ffmpeg -i video.mp4 -r 0.5 -f image2 output-%05d.jpeg


    



    so far so good, but I do not know how to take a screen shot of the video by setting the time, if I'm right this code is per frame.

    



    I searched again to get the function that calls the images, to generate good is quite simple, but the problem is that I found the pictures looks is all in one look.

    



    if anyone has any function or know how to do please tell me : D
My English sucks, so do not call if I messed up.

    


  • Aforge.video.ffmpeg write to memory stream

    31 août 2018, par Pavel Rembrant

    The Aforge framework contains the ffmpeg lib which contains the VideoFileWriter class, which can draw video from a set of frames (pictures) and write to a file passing through the selected codec. This is exactly what I need, except for writing to a file .. This stream of encoded video I need to send over the network in real time and not write to a file. It would be nice to write the final video in memory stresam, and from it to send where it is required. Is it possible to write with the help of Aforge not in a file but in memory ? if not, then advise the analogue who can do what I want. Thank you.

  • How to use ffmpeg to encode multi-channel video ?

    13 juillet 2018, par Leo

    Like nomral video have RGB/YUV, 3 channels.
    Is it possible use the existing video convertor to encode more than 3 channel video ? (e.g. given 5 folders of the same number and resolution pictures, generate a 5-channel video from them)
    I not need to playback the 5-channel video, which is impossible for 3-channel display. I just need to encode it and then decode it back to images. Actually what I am looking for is not a playable video format, I am trying to compressing several similar video content into one file, so that hopefully they can share the motion vectors and save more space.

    Dose any existing video codec support this manipulation ? Or how should I rewrite some part of the exsiting video codec(some light weight implementation of H264) to support it ?