Recherche avancée

Médias (91)

Autres articles (40)

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

  • Les vidéos

    21 avril 2011, par

    Comme les documents de type "audio", Mediaspip affiche dans la mesure du possible les vidéos grâce à la balise html5 .
    Un des inconvénients de cette balise est qu’elle n’est pas reconnue correctement par certains navigateurs (Internet Explorer pour ne pas le nommer) et que chaque navigateur ne gère en natif que certains formats de vidéos.
    Son avantage principal quant à lui est de bénéficier de la prise en charge native de vidéos dans les navigateur et donc de se passer de l’utilisation de Flash et (...)

  • Taille des images et des logos définissables

    9 février 2011, par

    Dans beaucoup d’endroits du site, logos et images sont redimensionnées pour correspondre aux emplacements définis par les thèmes. L’ensemble des ces tailles pouvant changer d’un thème à un autre peuvent être définies directement dans le thème et éviter ainsi à l’utilisateur de devoir les configurer manuellement après avoir changé l’apparence de son site.
    Ces tailles d’images sont également disponibles dans la configuration spécifique de MediaSPIP Core. La taille maximale du logo du site en pixels, on permet (...)

Sur d’autres sites (3966)

  • http: Add the trailing endlines if they are missing

    23 juillet 2015, par Luca Barbato
    http: Add the trailing endlines if they are missing
    

    Makes slightly easier the life of those want to use the option
    from the command line

    • [DBH] libavformat/http.c
  • Access two different webcams with same name ffmpeg dshow

    14 juin 2016, par Luke E

    I’m using ffmpeg to stream video from two webcams of the same type, and thus the same device name when selecting a dshow device with
    ’video="device name"’
    I would like to access both of them at the same time, but they seem to be indistinguishable using this approach. On https://www.ffmpeg.org/ffmpeg-devices.html#dshow I managed to find the following example code, which appears to be using some hardware id to reassign it a pin number, but for the life of me I can’t figure out how I would identify the hardware id of my webcams such as to use this example.

    ffmpeg -f dshow -audio_pin_name "Audio Out" -video_pin_name 2 -i video=video="@device_pnp_\\?\pci#ven_1a0a&dev_6200&subsys_62021461&rev_01#4&e2c7dd6&0&00e1#{65e8773d-8f56-11d0-a3b9-00a0c9223196}\{ca465100-deb0-4d59-818f-8c477184adf6}":audio="Microphone"

    Any help is very much appreciated.

  • How do I preserve side data when concatenating files in ffmpeg ?

    28 mai 2020, par Mark Kahn

    I have multiple 360 videos that I'm trying to concatenate in ffmpeg. The command it self is pretty straightforward :

    



    ffmpeg -f concat -i 0036_concat.txt -c copy -strict unofficial 36.mp4


    



    where 0036_concat.txt is just a list of the individual files. The issue I'm having is that I can't get ffmpeg to preserve side data. Very simply put, ffprobe on any of the source files includes this :

    



    Side data:
  spherical: equirectangular (0.000000/0.000000/0.000000)


    



    And I can't, for the life of me, get that to propagate to the output file.

    



    this question has a solution that works for single files, but it doesn't work when concatenating multiple files.

    



    I'd be perfectly fine injecting that entire string if anyone knows how.