Recherche avancée

Médias (2)

Mot : - Tags -/doc2img

Autres articles (21)

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

  • Publier sur MédiaSpip

    13 juin 2013

    Puis-je poster des contenus à partir d’une tablette Ipad ?
    Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir

  • Encodage et transformation en formats lisibles sur Internet

    10 avril 2011

    MediaSPIP transforme et ré-encode les documents mis en ligne afin de les rendre lisibles sur Internet et automatiquement utilisables sans intervention du créateur de contenu.
    Les vidéos sont automatiquement encodées dans les formats supportés par HTML5 : MP4, Ogv et WebM. La version "MP4" est également utilisée pour le lecteur flash de secours nécessaire aux anciens navigateurs.
    Les documents audios sont également ré-encodés dans les deux formats utilisables par HTML5 :MP3 et Ogg. La version "MP3" (...)

Sur d’autres sites (4868)

  • Revision de6ecc5ac3 : Selective masking of split modes. Allow selective masking of individual split m

    4 octobre 2013, par Paul Wilkins

    Changed Paths :
     Modify /vp9/encoder/vp9_onyx_if.c


     Modify /vp9/encoder/vp9_onyx_int.h



    Selective masking of split modes.

    Allow selective masking of individual split modes rather than
    just a single on / off flag.

    For speed 2 recovers the large speed loss seen for some derf
    clips in change Ie6bdfa0a370148dd60bd800961077f7e97e67dd4
    and a small quality gain.

    For speed 1 10 % speed increase observed locally on some derf clips
    for minimal quality change.

    Change-Id : If86191087b93cbc05351c26c60c7933e2149e485

  • Calling ffmpeg kills script in background only

    14 mai 2014, par TimD

    I’ve got a python script that calls ffmpeg via subprocess to do some mp3 manipulations. It works fine in the foreground, but if I run it in the background, it gets as far as the ffmpeg command, which itself gets as far as dumping its config into stderr. At this point, everything stops and the parent task is reported as stopped, without raising an exception anywhere. I’ve tried a few other simple commands in the place of ffmpeg, they execute normally in foreground or background.

    This is the minimal example of the problem :

    import subprocess

    inf = "3HTOSD.mp3"
    outf = "out.mp3"

    args = [    "ffmpeg",
               "-y",
               "-i",   inf,
               "-ss",  "0",
               "-t",   "20",
               outf
           ]

    print "About to do"

    result = subprocess.call(args)

    print "Done"

    I really can’t work out why or how a wrapped process can cause the parent to terminate without at least raising an error, and how it only happens in so niche a circumstance. What is going on ?

    Also, I’m aware that ffmpeg isn’t the nicest of packages, but I’m interfacing with something that has using ffmpeg compiled into it, so using it again seems sensible.

  • flac_parser.c : fix case when final frame is a false positive

    28 juin 2013, par Michael Chinen
    flac_parser.c : fix case when final frame is a false positive
    

    Should fix https://ffmpeg.org/trac/ffmpeg/ticket/2552
    Only did minimal testing on a few files and fate.

    Signed-off-by : Michael Niedermayer <michaelni@gmx.at>

    • [DH] libavcodec/flac_parser.c