Recherche avancée

Médias (1)

Mot : - Tags -/ticket

Autres articles (98)

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

  • Air and ffmpeg with NativeProcess

    16 mai 2013, par Pierre

    I´trying to create an Air application that can generate a movie file via ffmpeg. I´m using NativeProcess and it all works fine if (and only if) I add an ffmpeg that is compiled on my computer to the native installer. Whenever I try to use a precompiled build the process fails like this :

    NSTask : Task create for path 'mypathto/ffmpeg' failed : 22, "Invalid argument". Terminating temporary process.

    If I was the only user I wouldn´t have a problem. But I want other people to use my application so I really need to bundle the ffmpeg with my native installer.

    I have tried several different builds with the same result. Here is the argument string before I put in the process arguments Vector : "-y -f image2 -i seq%04d.png movie.mpg".

    Please help !

  • ffmpeg based app and VLC IPC ?

    1er avril 2012, par ronag

    I have an application that uses the ffmpeg libraries (not ffmpeg.exe) to encode video and would like to forward the encoded data directly to a VLC process.

    Right now I use udp ://localhost (i.e. avio_open("udp://localhost:5290") and vlc udp://@localhost:5290) for interprocess communication, however it seems a bit unreliable.

    ffmpeg (avio_open) doesn't seem to support named pipes, i.e. \\.\pipe\test is not accepted, and I cannot use standard output/input piping since the applications run in different processes.

    Soo my question is, how can I achieve reliable (and somewhat efficient) interprocess communication between VLC and an application using the ffmpeg libraries ?

  • Create H.264 stream from single PNG

    28 avril 2017, par Jim Rhodes

    I have an application that uses RTSP to get a video stream from an IP camera. The application extracts the H.264 data from the RTP packets and sends it to a remote process that decodes the stream (using ffmpeg) and displays it. If the video stream is interrupted for any reason, I would like to insert a static image into the stream being sent to the remote process.

    I have a PNG that is the same resolution as the camera. I thought I could use ffmpeg to encode the PNG to H.264 to get an IFrame that I could insert into the stream but I have not had any success. Using ffmpeg I created an MP4 with H.264 encoding from the PNG image and then extracted what I believed was the H.264 data from the MP4 but when I try to decode it ffmpeg returns an error.

    Anyone have any ideas on how I could accomplish this ?