Recherche avancée

Médias (0)

Mot : - Tags -/diogene

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

Autres articles (100)

  • MediaSPIP 0.1 Beta version

    25 avril 2011, par

    MediaSPIP 0.1 beta is the first version of MediaSPIP proclaimed as "usable".
    The zip file provided here only contains the sources of MediaSPIP in its standalone version.
    To get a working installation, you must manually install all-software dependencies on the server.
    If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...)

  • MediaSPIP v0.2

    21 juin 2013, par

    MediaSPIP 0.2 est la première version de MediaSPIP stable.
    Sa date de sortie officielle est le 21 juin 2013 et est annoncée ici.
    Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
    Comme pour la version précédente, 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 (...)

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

Sur d’autres sites (12111)

  • Use fluent-ffmpeg to tell if a file is a video or audio

    11 août 2016, par afterglowlee

    I am using node-fluent-ffmpeg module in NodeJS. It is very good that fluent-ffmpeg provides functions to get the metadata of a video and audio file.

    https://github.com/schaermu/node-fluent-ffmpeg#reading-video-metadata

    I have tried on Mac OS to use the "resolution" attribute in the metadata to tell if a file is audio only or video, i.e. if both resolution.w and resolution.h are 0, then this file is an audio. This work fine on Mac OS. But some strange things happened that this doesn’t work on Windows platform (I have tried Windows 7 64bit and Windows 2008) using the latest ffmpeg. Even though I put a .mp3 file through fluent-ffmpeg,the result looks something like this :

    video:
    {
     container:'mp3',
     ...
     resolution: {w:300,h:300},
     resolutionSquare: {w:300,h:300},
     aspectString: '1:1',
     ...
    }
    audio:
    {
     codec:'mp3',
     bitrate:64,
     sample_rate:44100,
     stream:0,
     channels:1
    }

    I am not why there is a "resolution" since it is a pure audio file. So is there any solid way to find out if the file is audio only or video from the metadata ? Or should I use ffmpeg commandline to find it out ?

  • How to extract frame from video and save it into memory ?

    11 septembre 2012, par Alrick

    I tried extract frame and save it as output.jpg On server side :

    f = "ffmpeg -vframes 1 -y -ss "+time+" -i ./media/somemov.mp4 ./media/output.jpg"
    subprocess.call(f, shell=True)

    And on client side used :

    getImage(noOfFrame);  //send the request for call the ffmpeg function from views.py

    document.getElementById("main").style.backgroundImage="url(http://localhost:8000/media/output.jpg#"+ new Date().getTime();+")";

    But its too slow. DIV displays always the old image becose creates image takes a long time.
    for example i want image no 3 and DIV has no 2, i want image no 4, and div has no 3.

    Is there any way how to extract frame from video (by ffmpeg) and send it into Python without creation the output.jpg file ?

    I want get the image data and send it from server (django) to webpage and set it as background-image of any DIV.

    Is the "pure data sending" solution better then mine ?

    Thanks for help.

  • OpenCv VideoWriter does no write. ffmpeg library h264 errors

    22 juillet 2012, par ar ar ar

    Hi I am using OpenCv and trying to use the VideoWriter Class.

    But I get an error.

    The error is Could not find encoder for codec id 28 : Encoder not found

    Normally it must be a ffmpeg problem. How can I check which codec is with id 28 and how can I install it ?

    I think it is causing problems to my program and I cannot get the number of frames in videos right.

    update 2: :

    I installed libavcodec-extra-53 ubuntu package and now it gives other errors.

    Any ideas why ??It seems to be pure ffmpeg problem and not OpenCv problem

    libx264 @ 0x1d9bd80] broken ffmpeg default settings detected
    [libx264 @ 0x1d9bd80] use an encoding preset (e.g. -vpre medium)                                                                                                                              
    [libx264 @ 0x1d9bd80] preset usage: -vpre <speed> -vpre <profile>                                                                                                                              
    [libx264 @ 0x1d9bd80] speed presets are listed in x264 --help                                                                                                                                  
    [libx264 @ 0x1d9bd80] profile is optional; x264 defaults to high
    </profile></speed>