Recherche avancée

Médias (1)

Mot : - Tags -/ogg

Autres articles (104)

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

  • Submit bugs and patches

    13 avril 2011

    Unfortunately a software is never perfect.
    If you think you have found a bug, report it using our ticket system. Please to help us to fix it by providing the following information : the browser you are using, including the exact version as precise an explanation as possible of the problem if possible, the steps taken resulting in the problem a link to the site / page in question
    If you think you have solved the bug, fill in a ticket and attach to it a corrective patch.
    You may also (...)

Sur d’autres sites (7039)

  • avutil/tests/dict : Explicitly test av_dict_iterate()

    3 décembre 2022, par Andreas Rheinhardt
    avutil/tests/dict : Explicitly test av_dict_iterate()
    

    This commit tests it in a way that automatically checks
    that using av_dict_iterate() is equivalent to using
    av_dict_get() with key "" and AV_DICT_IGNORE_SUFFIX.

    Signed-off-by : Andreas Rheinhardt <andreas.rheinhardt@outlook.com>

    • [DH] libavutil/tests/dict.c
  • Why does FFmpeg's xfade filter need the timebase and frame rate to match ?

    17 novembre 2022, par Hashim Aziz

    As I discovered not long ago, and recently had to rediscover after trying to use it again, xfade - the crossfade filter that FFmpeg introduced in 2019 - requires that both inputs have a matching timebase (TBN) and frame rate (FPS).

    &#xA;

    This is "resolved" by explicitly making them the same, by adding SETTB and a hardcoded FPS to both streams (there doesn't seem to be a constant equivalent to AVTB for FPS) prior to using xfade :

    &#xA;

    -filter_complex \&#xA;[0:v]settb=AVTB,fps=29[v0];&#xA;[1:v]settb=AVTB,fps=29[v1];&#xA;[v0][v1]xfade=transition=fade:duration=$fadeduration:offset=$fadetime,format=yuv420p[faded]; &#xA;

    &#xA;

    However, I'm confused as to why is this necessary in the first place. The concat filter works similarly in that requires all its inputs to have matching parameters, but this makes sense because the whole point of concat is to avoid re-encoding. If the xfade filter is (presumably) re-encoding anyway, why do the timebase and frame rate still need to match ?

    &#xA;

    Is there a reason the devs decided to enforce these limitations for the filter when they don't seem to be technically necessary ?

    &#xA;

  • FFmpeg : how to stream multiple http outputs

    25 octobre 2022, par Caner Demir

    I'm assigned to search for a solution to stream more than one http output in ffmpeg. I tried the code below which uses pipe, but only the last output works, other ones don't work. The solutions I tried with tee muxer also couldn't work. Any idea how can I do that ?

    &#xA;

    ffmpeg -re -i sample1.mp3 -i sample2.mp3 -filter_complex amix=inputs=2 -f mp3 pipe:1 | ffmpeg -f mp3 -re -i pipe:0 -c copy -listen 1 -f mp3 http://127.0.0.1:4000 -c copy -listen 1 -f mp3 http://127.0.0.1:4010&#xA;

    &#xA;

    The code I tried with tee muxer is below :

    &#xA;

    ffmpeg -re -i sample1.mp3 -i sample2.mp3 -filter_complex amix=inputs=2 -c:a mp3 -f tee "[listen=1:f=mp3]http://127.0.0.1:4000|[listen=1:f=mp3]http://127.0.0.1:4010"&#xA;

    &#xA;

    edit : shared the log with code.

    &#xA;

    ffmpeg -loglevel debug -hide_banner -re -i sample1.mp3 -filter_complex asplit=2 -c:a mp3 -listen 1 -f mp3 http://127.0.0.1:4000 -c:a mp3 -listen 1 -f mp3 http://127.0.0.1:4010&#xA;Splitting the commandline.&#xA;Reading option &#x27;-loglevel&#x27; ... matched as option &#x27;loglevel&#x27; (set logging level) with argument &#x27;debug&#x27;.&#xA;Reading option &#x27;-hide_banner&#x27; ... matched as option &#x27;hide_banner&#x27; (do not show program banner) with argument &#x27;1&#x27;.&#xA;Reading option &#x27;-re&#x27; ... matched as option &#x27;re&#x27; (read input at native frame rate; equivalent to -readrate 1) with argument &#x27;1&#x27;.&#xA;Reading option &#x27;-i&#x27; ... matched as input url with argument &#x27;sample1.mp3&#x27;.&#xA;Reading option &#x27;-filter_complex&#x27; ... matched as option &#x27;filter_complex&#x27; (create a complex filtergraph) with argument &#x27;asplit=2&#x27;.&#xA;Reading option &#x27;-c:a&#x27; ... matched as option &#x27;c&#x27; (codec name) with argument &#x27;mp3&#x27;.&#xA;Reading option &#x27;-listen&#x27; ... matched as AVOption &#x27;listen&#x27; with argument &#x27;1&#x27;.&#xA;Reading option &#x27;-f&#x27; ... matched as option &#x27;f&#x27; (force format) with argument &#x27;mp3&#x27;.&#xA;Reading option &#x27;http://127.0.0.1:4000&#x27; ... matched as output url.&#xA;Reading option &#x27;-c:a&#x27; ... matched as option &#x27;c&#x27; (codec name) with argument &#x27;mp3&#x27;.&#xA;Reading option &#x27;-listen&#x27; ... matched as AVOption &#x27;listen&#x27; with argument &#x27;1&#x27;.&#xA;Reading option &#x27;-f&#x27; ... matched as option &#x27;f&#x27; (force format) with argument &#x27;mp3&#x27;.&#xA;Reading option &#x27;http://127.0.0.1:4010&#x27; ... matched as output url.&#xA;Finished splitting the commandline.&#xA;Parsing a group of options: global .&#xA;Applying option loglevel (set logging level) with argument debug.&#xA;Applying option hide_banner (do not show program banner) with argument 1.&#xA;Applying option filter_complex (create a complex filtergraph) with argument asplit=2.&#xA;Successfully parsed a group of options.&#xA;Parsing a group of options: input url sample1.mp3.&#xA;Applying option re (read input at native frame rate; equivalent to -readrate 1) with argument 1.&#xA;Successfully parsed a group of options.&#xA;Opening an input file: sample1.mp3.&#xA;[NULL @ 00000216ab345b80] Opening &#x27;sample1.mp3&#x27; for reading&#xA;[file @ 00000216ab346180] Setting default whitelist &#x27;file,crypto,data&#x27;&#xA;[mp3 @ 00000216ab345b80] Format mp3 probed with size=4096 and score=51&#xA;id3v2 ver:4 flags:00 len:134&#xA;[mp3 @ 00000216ab345b80] pad 576 576&#xA;[mp3 @ 00000216ab345b80] Skipping 0 bytes of junk at 561.&#xA;[mp3 @ 00000216ab345b80] Before avformat_find_stream_info() pos: 561 bytes read:32768 seeks:0 nb_streams:1&#xA;[mp3 @ 00000216ab345b80] demuxer injecting skip 1105 / discard 0&#xA;[mp3float @ 00000216ab34f3c0] skip 1105 / discard 0 samples due to side data&#xA;[mp3float @ 00000216ab34f3c0] skip 1105/1152 samples&#xA;[mp3 @ 00000216ab345b80] All info found&#xA;[mp3 @ 00000216ab345b80] After avformat_find_stream_info() pos: 22065 bytes read:32768 seeks:0 frames:50&#xA;Input #0, mp3, from &#x27;sample1.mp3&#x27;:&#xA;  Metadata:&#xA;    major_brand     : isom&#xA;    minor_version   : 512&#xA;    compatible_brands: isomiso2mp41&#xA;    encoder         : Lavf58.45.100&#xA;  Duration: 00:12:58.48, start: 0.025057, bitrate: 128 kb/s&#xA;  Stream #0:0, 50, 1/14112000: Audio: mp3, 44100 Hz, stereo, fltp, 128 kb/s&#xA;    Metadata:&#xA;      encoder         : Lavc58.91&#xA;Successfully opened the file.&#xA;[Parsed_asplit_0 @ 00000216ab34fc80] Setting &#x27;outputs&#x27; to value &#x27;2&#x27;&#xA;Parsing a group of options: output url http://127.0.0.1:4000.&#xA;Applying option c:a (codec name) with argument mp3.&#xA;Applying option f (force format) with argument mp3.&#xA;Successfully parsed a group of options.&#xA;Opening an output file: http://127.0.0.1:4000.&#xA;Matched encoder &#x27;libmp3lame&#x27; for codec &#x27;mp3&#x27;.&#xA;    Last message repeated 1 times&#xA;[http @ 00000216ab44d980] Setting default whitelist &#x27;http,https,tls,rtp,tcp,udp,crypto,httpproxy,data&#x27;&#xA;

    &#xA;