Recherche avancée

Médias (39)

Mot : - Tags -/audio

Autres articles (101)

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

  • Les tâches Cron régulières de la ferme

    1er décembre 2010, par

    La gestion de la ferme passe par l’exécution à intervalle régulier de plusieurs tâches répétitives dites Cron.
    Le super Cron (gestion_mutu_super_cron)
    Cette tâche, planifiée chaque minute, a pour simple effet d’appeler le Cron de l’ensemble des instances de la mutualisation régulièrement. Couplée avec un Cron système sur le site central de la mutualisation, cela permet de simplement générer des visites régulières sur les différents sites et éviter que les tâches des sites peu visités soient trop (...)

  • Emballe Médias : Mettre en ligne simplement des documents

    29 octobre 2010, par

    Le plugin emballe médias a été développé principalement pour la distribution mediaSPIP mais est également utilisé dans d’autres projets proches comme géodiversité par exemple. Plugins nécessaires et compatibles
    Pour fonctionner ce plugin nécessite que d’autres plugins soient installés : CFG Saisies SPIP Bonux Diogène swfupload jqueryui
    D’autres plugins peuvent être utilisés en complément afin d’améliorer ses capacités : Ancres douces Légendes photo_infos spipmotion (...)

Sur d’autres sites (12847)

  • How to manage volume using FFMPEG

    13 mai 2015, par Somashekhar Ganjigatti

    Is there any way to set/modify/change/update volume of audio when it is playing using FFMPEG library.
    Thanks in advance.

  • ffmpeg : how to get YUV data from AVframe and draw it using opengl ?

    13 mai 2015, par Nyaruko

    How could I access the YUV data from AVframe struct ? by accessing its data[] ?
    And is there any simple way to draw YUV data using opengl instead of creating the shader and draw the Y,U,V image on their own ?

  • How to control insert position when insert video frames to pure audio file with ffmpeg

    6 mai 2014, par teddy

    Inserting video frames into pure audio flv file(may call it audio.flv) can make it seekable.I do this with ffmpeg using the following command :

    /usr/bin/ffmpeg -y -loop 1 -i /root/testimage.jpg -i /file/audio.flv -s 2x2 -t 90 -r 1 -g 0 -acodec copy /tmp/out.flv 2>&1

    The number 90 in command is specify the file duration.this can work well except one thing : The output files for several executions of the previous command is not same. After i analysed the file’s with flvparser i found that the position of the first video tag of these files were not same.

    1. For the first situation, the first video tag is the third tag, which is following script tag
    2. For the second situation, the first video tag is the fifth tag, there are three audio tags between it and script tag.
    3. For the third situation, the first video tag is the sixth tag.

    I just got these three situations for my test. But other video tags are in the same position of tag-index in output file. I have no idea why is just the first video tag has different position. I want all video tag will be at same tag-indexes. Could anyone give me some advise ? Thanks !