Recherche avancée

Médias (1)

Mot : - Tags -/copyleft

Autres articles (59)

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

  • De l’upload à la vidéo finale [version standalone]

    31 janvier 2010, par

    Le chemin d’un document audio ou vidéo dans SPIPMotion est divisé en trois étapes distinctes.
    Upload et récupération d’informations de la vidéo source
    Dans un premier temps, il est nécessaire de créer un article SPIP et de lui joindre le document vidéo "source".
    Au moment où ce document est joint à l’article, deux actions supplémentaires au comportement normal sont exécutées : La récupération des informations techniques des flux audio et video du fichier ; La génération d’une vignette : extraction d’une (...)

  • Librairies et binaires spécifiques au traitement vidéo et sonore

    31 janvier 2010, par

    Les logiciels et librairies suivantes sont utilisées par SPIPmotion d’une manière ou d’une autre.
    Binaires obligatoires FFMpeg : encodeur principal, permet de transcoder presque tous les types de fichiers vidéo et sonores dans les formats lisibles sur Internet. CF ce tutoriel pour son installation ; Oggz-tools : outils d’inspection de fichiers ogg ; Mediainfo : récupération d’informations depuis la plupart des formats vidéos et sonores ;
    Binaires complémentaires et facultatifs flvtool2 : (...)

Sur d’autres sites (5854)

  • FFMPEG to remote server : Live streaming with segments [migrated]

    10 août 2013, par Brianjs

    I have looked around and have found many good articles on how to use ffmpeg to segment live video for HLS streaming. However, I need to be able to use use an encoder from a remote location (that is receiving live video), and then somehow send these segmented files and the m3u8/ts files to a web server in a different location, in real time.

    So :
    REMOTE COMPUTER(camera->ffmpeg->segmenter) -> WEBSERVER(receives files -> users connect for "live" stream)

    My question is : Has anyone seen something similar to this ? Or is there a setting on ffmpeg/ffserver that will let me do this ?

  • Is there a library for editing MP4 Metadata with Scala or Java ? [on hold]

    8 août 2013, par Zack Yoshyaro

    I've been using ffmpeg for the task by simply calling it from Scala. However, it's remarkably overkill to do so, as ffmpeg requires you to have an output file. So I'm creating entire copies of video files just so I can modify the ID3 tags. It's time, and CPU taxing to say the least.

    Obviously, they can be editing in place (for instance, by manually changing the tags in the property dialog in windows). Surely there's a way to do the same thing programatically ?

  • Restreaming video containing two languages live with ffmpeg

    9 novembre 2012, par user1810837

    I have a project where i need to restream a live stream which has two languages setup on the audio.
    Spanish on left and English on right

    The stream mapping is :

    Stream #0:0: Video: h264 ([7][0][0][0] / 0x0007), yuv420p, 512x288 [SAR 1:1 DAR 16:9], q=2-31, 1k tbn, 1k tbc
    Stream #0:1: Audio: mp3 ([2][0][0][0] / 0x0002), 44100 Hz, stereo, s16, 18 kb/s

    I need to restream this back live with just the English from the right side or just spanish from the left side, I tried looking everywhere but did not find any type of solution .

    Since this needs to be done live, I can't be using other programs to separate video and audio to get it done.

    This needs to be done through ffmpeg and I wonder if it even capable of doing so with original built or it would need some custom modification.