Recherche avancée

Médias (39)

Mot : - Tags -/audio

Autres articles (23)

  • 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

  • XMP PHP

    13 mai 2011, par

    Dixit Wikipedia, XMP signifie :
    Extensible Metadata Platform ou XMP est un format de métadonnées basé sur XML utilisé dans les applications PDF, de photographie et de graphisme. Il a été lancé par Adobe Systems en avril 2001 en étant intégré à la version 5.0 d’Adobe Acrobat.
    Étant basé sur XML, il gère un ensemble de tags dynamiques pour l’utilisation dans le cadre du Web sémantique.
    XMP permet d’enregistrer sous forme d’un document XML des informations relatives à un fichier : titre, auteur, historique (...)

  • Le plugin : Podcasts.

    14 juillet 2010, par

    Le problème du podcasting est à nouveau un problème révélateur de la normalisation des transports de données sur Internet.
    Deux formats intéressants existent : Celui développé par Apple, très axé sur l’utilisation d’iTunes dont la SPEC est ici ; Le format "Media RSS Module" qui est plus "libre" notamment soutenu par Yahoo et le logiciel Miro ;
    Types de fichiers supportés dans les flux
    Le format d’Apple n’autorise que les formats suivants dans ses flux : .mp3 audio/mpeg .m4a audio/x-m4a .mp4 (...)

Sur d’autres sites (5364)

  • avformat/mp3dec : optimize mp3_seek() for dir 0

    2 mars 2014, par Michael Niedermayer
    avformat/mp3dec : optimize mp3_seek() for dir < 0
    

    this minimizes the amount of protocol seeks and reading needed in that case

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

    • [DH] libavformat/mp3dec.c
  • RTP-Server in Android 4.0 and above

    9 juin 2013, par PowerPC

    Working on Android 4.0+ above.

    I am in process of analyzing ways to live stream my camera video to Window PC using RTP , encoding MPEG-2.

    1. Is there readily available "rtp-server" in android 4.0+ ?

    2. Is following true: : "The Android platform lacks support for
      streaming protocol, which makes it difficult to stream live audio /
      video to Android enabled devices." extracted from website

    3. Currently I analyzed used the ffserver from the ffmpeg
      libraries, but the FPS is < 5. which is far slow. Did any one
      explored other solution which has more FPS ?

    4. Did anybody tried using StageFright for same ? Capturing raw data
      from camera and sending it to stagefright framework for encoding and
      then streaming the same using RTP ??

    Many Thanks.

  • video preview from remote mp4 [h264] file

    20 novembre 2015, par sathia

    I was trying to make a video preview from a remote video (smaller size, short clip and no audio. you get the idea)

    By knowing the video duration, and bitrate (constant) is rather easy to make several byte-range requests in order to fetch chunks of it.

    Once all the needed chunks are downloaded I use the "concat" method of ffmpeg to make a single video (this is in order to avoid to download all the video locally)

    well, technically it all works perfectly the problem is that most of the chunks I download have pretty severe aberrations, and I mean, it’s usually all green and pixelated, rubbish.

    Is this a limit on the h264 protocol or I should maybe find the first keyframe and start from there (on each chunk of course) ? thanks