Recherche avancée

Médias (0)

Mot : - Tags -/masques

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

Autres articles (34)

  • La file d’attente de SPIPmotion

    28 novembre 2010, par

    Une file d’attente stockée dans la base de donnée
    Lors de son installation, SPIPmotion crée une nouvelle table dans la base de donnée intitulée spip_spipmotion_attentes.
    Cette nouvelle table est constituée des champs suivants : id_spipmotion_attente, l’identifiant numérique unique de la tâche à traiter ; id_document, l’identifiant numérique du document original à encoder ; id_objet l’identifiant unique de l’objet auquel le document encodé devra être attaché automatiquement ; objet, le type d’objet auquel (...)

  • Les formats acceptés

    28 janvier 2010, par

    Les commandes suivantes permettent d’avoir des informations sur les formats et codecs gérés par l’installation local de ffmpeg :
    ffmpeg -codecs ffmpeg -formats
    Les format videos acceptés en entrée
    Cette liste est non exhaustive, elle met en exergue les principaux formats utilisés : h264 : H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10 m4v : raw MPEG-4 video format flv : Flash Video (FLV) / Sorenson Spark / Sorenson H.263 Theora wmv :
    Les formats vidéos de sortie possibles
    Dans un premier temps on (...)

  • Supporting all media types

    13 avril 2011, par

    Unlike most software and media-sharing platforms, MediaSPIP aims to manage as many different media types as possible. The following are just a few examples from an ever-expanding list of supported formats : images : png, gif, jpg, bmp and more audio : MP3, Ogg, Wav and more video : AVI, MP4, OGV, mpg, mov, wmv and more text, code and other data : OpenOffice, Microsoft Office (Word, PowerPoint, Excel), web (html, CSS), LaTeX, Google Earth and (...)

Sur d’autres sites (3880)

  • How to extract Programme service data from radio stream

    12 janvier 2017, par NathanK

    I’m using ffmpeg to save a publicly available radio stream to mp3 files. I would like to know what the schedule is for the radio station before I begin downloading the stream. In other words, I’d like to know if a radio stream contains something akin to the electronic program guide and, if so, is there a library/api available on linux that will allow me to extract this data. I know already that a radio signal can contain a program associated data field (I’m not sure how to extract this either).

    I’ve searched on stackoverflow, I wasn’t able to find anything similar. After searching for 2 hours on google to no avail, I’m choosing to post this question here. Any help is greatly appreciated.

  • video streaming server ffserver, can i use it in live env

    25 décembre 2019, par shrw

    I was looking for video streaming server accept videos and stream it.

    Saw ffserver was
    https://trac.ffmpeg.org/wiki/ffserver

    Warning : ffserver has been removed on 2018-01-06. If you still need it checkout commit 2ca65fc or use the 3.4 release branch.

    It also suggested https://github.com/klaxa/mkvserver_mk2

    Can i still use ffserver.

  • How to join 2 audio files into one using either ffmpeg or eac3to ?

    18 janvier 2017, par user3108268

    Not merge or mux into each other, because this is what I found so far, but take 2 .mp3 files e.g. 1 hour long each and join them and it becomes 1 .mp3 file with total of 2 hour long ?

    I did this :

    ffmpeg -i audio.mp3 -i 1.mp3  -filter_complex amerge -c:a libmp3lame -q:a 4 audiofinal.mp3

    But I think it encode both files into each other or something.

    And there’s nothing about this at https://en.wikibooks.org/wiki/Eac3to/How_to_Use

    I’d like to prefer command line solution and not Audacity or mp3DirectCut.

    edit : i tried eac3to m1.mp3+m2.mp3 1.mp3 but it doesn’t join them, output audio is the length of first file.