Recherche avancée

Médias (91)

Autres articles (41)

  • La sauvegarde automatique de canaux SPIP

    1er avril 2010, par

    Dans le cadre de la mise en place d’une plateforme ouverte, il est important pour les hébergeurs de pouvoir disposer de sauvegardes assez régulières pour parer à tout problème éventuel.
    Pour réaliser cette tâche on se base sur deux plugins SPIP : Saveauto qui permet une sauvegarde régulière de la base de donnée sous la forme d’un dump mysql (utilisable dans phpmyadmin) mes_fichiers_2 qui permet de réaliser une archive au format zip des données importantes du site (les documents, les éléments (...)

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

  • Mise à disposition des fichiers

    14 avril 2011, par

    Par défaut, lors de son initialisation, MediaSPIP ne permet pas aux visiteurs de télécharger les fichiers qu’ils soient originaux ou le résultat de leur transformation ou encodage. Il permet uniquement de les visualiser.
    Cependant, il est possible et facile d’autoriser les visiteurs à avoir accès à ces documents et ce sous différentes formes.
    Tout cela se passe dans la page de configuration du squelette. Il vous faut aller dans l’espace d’administration du canal, et choisir dans la navigation (...)

Sur d’autres sites (4346)

  • {v,a}f_showinfo : print frame side data

    19 février 2014, par Anton Khirnov
    v,af_showinfo : print frame side data
    
    • [DBH] libavfilter/af_ashowinfo.c
    • [DBH] libavfilter/vf_showinfo.c
  • Server side video mixing

    16 mars 2014, par Nicolas Goy

    I have a serie of video files encoded in mpeg2 (I can change this encoding), and I have to produce a movie in flash flv (this is a requirement, I can't change that encoding).

    One destination movie is a compilation of different source video files.

    I have a playlist defining the destination movie. For example :

    Video file        Position        Offset       Length
    little_gnomes     0               0            8.5
    fairies           5.23            0.12         12.234
    pixies            14              0            9.2

    Video file is the name of the file, position is when the file should be started (in the master timeline), offset is the offset within the video file, and length is the length of the video to play. The numbers are seconds (in double).

    This would result in something like that (final movie timeline) :

                  0--5.23|--8.5|--14|--17.464|--23.2|
    little_nomes   **************
    fairies               *********************
    pixies                           *****************

    Where video overlaps, the last video to be added override the last one, the audio should be mixed.

    The resulting video track would be :

                  0--5.23|--8.5|--14|--17.464|--23.2|
    little_nomes   *******
    fairies               ***********
    pixies                           *****************

    While the resulting audio would be :

                  0--5.23|--8.5|--14|--17.464|--23.2|
    little_nomes   11111112222222
    fairies               222222211112222222222
    pixies                           22222222221111111

    Where 1 or 2 is the number of mixed audio tracks.

    There can be a maximum of 3 audio tracks.

    I need to write a program which takes the playlist as input and produce the flv file. I'm open to any solution (must be free/open source).

    An existing tool that can do that would be the simplest, but I found none. As for making my own solution, I found only ffmpeg, I was able to do basic things with it, but the documentation is terribly lacking.

    It can be any language, it doesn't have to be super fast (if it takes 30 minutes to build a 1h movie it's fine).

    The solution will run on opensolaris based x64 servers. If I have to use linux, this would work too. But windows is out of the question.

  • Add filters and effects by FFMPEG on a live program

    2 mars 2014, par M.Yazdian

    Add filters and effects by FFMPEG on a live program.
    I need to add some effects such as writing at the bottom of a live program and impose the Images of other live cameras on the main camera image through FFMPEG but when I want to add these effects and filters I have to stop FFMPEG, edit command and run FFMPEG again which is not professional.

    All other broadcasting software such as wirecast , vidblaster and others work very well while the main event is going on LIVE, you can add filters and effects without any stop start, just apply the effect and the viewer can see every think live without any interruption

    can you advice me how can I use FFMPEG and add filters and effects without any stop start, I need to just apply the effects and the viewer should see every think live without any interruption.

    Thanks