Recherche avancée

Médias (0)

Mot : - Tags -/objet éditorial

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

Autres articles (18)

  • Creating farms of unique websites

    13 avril 2011, par

    MediaSPIP platforms can be installed as a farm, with a single "core" hosted on a dedicated server and used by multiple websites.
    This allows (among other things) : implementation costs to be shared between several different projects / individuals rapid deployment of multiple unique sites creation of groups of like-minded sites, making it possible to browse media in a more controlled and selective environment than the major "open" (...)

  • Demande de création d’un canal

    12 mars 2010, par

    En fonction de la configuration de la plateforme, l’utilisateur peu avoir à sa disposition deux méthodes différentes de demande de création de canal. La première est au moment de son inscription, la seconde, après son inscription en remplissant un formulaire de demande.
    Les deux manières demandent les mêmes choses fonctionnent à peu près de la même manière, le futur utilisateur doit remplir une série de champ de formulaire permettant tout d’abord aux administrateurs d’avoir des informations quant à (...)

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

Sur d’autres sites (5421)

  • Get ffmpeg information in friendly way

    17 décembre 2020, par JBernardo

    Every time I try to get some information about my video files with ffmpeg, it pukes a lot of useless information mixed with good things.

    



    I'm using ffmpeg -i name_of_the_video.mpg.

    



    There are any possibilities to get that in a friendly way ? I mean JSON would be great (and even ugly XML is fine).

    



    By now, I made my application parse the data with regex but there are lots of nasty corners that appear on some specific video files. I fixed all that I encountered, but there may be more.

    



    I wanted something like :

    



    {
  "Stream 0": {
     "type": "Video",
     "codec": "h264",
     "resolution": "720x480"
  },
  "Stream 1": {
     "type": "Audio",
     "bitrate": "128 kbps",
     "channels": 2
  }
}


    


  • Get ffmpeg information in friendly way

    17 septembre 2012, par JBernardo

    Every time I try to get some information about my video files with ffmpeg, it pukes a lot of useless information mixed with good things.

    I'm using ffmpeg -i name_of_the_video.mpg.

    There are any possibilities to get that in a friendly way ? I mean JSON would be great (and even ugly XML is fine).

    By now, I made my application parse the data with regex but there are lots of nasty corners that appear on some specific video files. I fixed all that I encountered, but there may be more.

    I wanted something like :

    {
     "Stream 0": {
        "type": "Video",
        "codec": "h264",
        "resolution": "720x480"
     },
     "Stream 1": {
        "type": "Audio",
        "bitrate": "128 kbps",
        "channels": 2
     }
    }
  • How do I use ffmpeg to extract frames starting at a specific number ?

    19 octobre 2020, par Gridzbi Spudvetch

    I've decided for some reason to upscale an entire 90-minute movie using AI. Problem is, I have several demo scenes that have already been upscaled, and I want to keep those frames rather than upscaling them again. Basically I want to export frames starting at a specific number, like ffmpeg -i scene1.mp4 scene1/%10d+[starting number].jpg. If the specified number were 1550, for example, the first frame it would export would be 0000001550.jpg. I still want it to start at the first frame of the input video, though ; the only things I want to change are the names of the output files. Is there a way to do this ?