Recherche avancée

Médias (1)

Mot : - Tags -/biomaping

Autres articles (24)

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

  • MediaSPIP version 0.1 Beta

    16 avril 2011, par

    MediaSPIP 0.1 beta est la première version de MediaSPIP décrétée comme "utilisable".
    Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
    Pour avoir une installation fonctionnelle, 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 (...)

Sur d’autres sites (7061)

  • Play MPEG-TS video in browser and broacast similar to UDP

    23 novembre 2022, par emil

    How can I play MPEG-TS video and broadcast it over the network ?

    


    I tried using JSMPEG butt it shows blurry video. I am planning to use ffmpeg if possible.

    


  • aac : correctly map 7.1ch-wide AAC from FDK AAC encoder

    4 juin 2015, par nu774
    aac : correctly map 7.1ch-wide AAC from FDK AAC encoder
    

    FDK AAC encoder outputs SCE(front)+CPE(front)+CPE(back)+CPE(back) on
    MODE_7_1_REAR_SURROUND configuration.
    Since decoder couldn’t properly map 4 back channels, decoding failed
    unless -request_channel_layout 0x8000000000000000 has been specified.
    Now we treat first CPE(back) as CPE(side) on channel mapping.

    Signed-off-by : Luca Barbato <lu_zero@gentoo.org>

    • [DBH] libavcodec/aacdec.c
  • How do I use FFMPEG to pipe in a video file and pipe out a converted video file

    11 avril 2014, par Ranjit Aneesh

    I have very limited knowledge of FFMPEG.
    My use case is that I have a content server with a http url from where I want to pipe in a video file (The video file can be of any format) and I have to convert them to some other format, sometime changing the resolution, and then pipe out and post the video back to the content server.

    I cannot keep a copy of the video file on the local file system where I run ffmpeg since they can be of large sizes and precious time will get wasted in doing so and then calling ffmpeg for conversion and finally writing back the file to content server. I may have to support both Linux as well as windows

    My question is

    1. Is it possbile for FFMPEG to be able to read a file from an http url
    2. Is it possbile to pipe in this data in some other way to FFMPEG if 1 is not possible
    3. Is it possbile to write the data back to a http location by making a ReST put/post call
    4. If 3 is not possbile is there some other way that ffmpeg can push the data back to the server.

    Thanks