Recherche avancée

Médias (1)

Mot : - Tags -/3GS

Autres articles (59)

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

  • Statically linking libswscale conflicts with libavcodec half2float.c

    18 juillet 2023, par Fr3ddyDev

    I'm trying to statically link FFmpeg's libraries to a Rust program but I'm getting linker errors after adding libswscale.

    


    The generated linker invokation is

    


    "-Wl,-Bstatic" "-Wl,--whole-archive" "-logg" \
"-Wl,--no-whole-archive" "-Wl,--whole-archive" "-lvorbis" \
"-Wl,--no-whole-archive" "-Wl,--whole-archive" "-lvorbisenc" \
"-Wl,--no-whole-archive" "-Wl,--whole-archive" "-lavdevice" \
"-Wl,--no-whole-archive" "-Wl,--whole-archive" "-lavfilter" \
"-Wl,--no-whole-archive" "-Wl,--whole-archive" "-lavformat" \
"-Wl,--no-whole-archive" "-Wl,--whole-archive" "-lavcodec" \
"-Wl,--no-whole-archive" "-Wl,--whole-archive" "-lpostproc" \
"-Wl,--no-whole-archive" "-Wl,--whole-archive" "-lswresample" \
"-Wl,--no-whole-archive" "-Wl,--whole-archive" "-lswscale" \
"-Wl,--no-whole-archive" "-Wl,--whole-archive" "-lavutil" \
... # other stuff


    


    And it errors because of half2float.c

    


    /usr/bin/ld: /build/usr/local/lib/libswscale.a(half2float.o): in function `ff_init_half2float_tables':
          /ffmpeg-6.0/./libavutil/half2float.c:40: multiple definition of `ff_init_half2float_tables'; /build/usr/local/lib/libavcodec.a(half2float.o):/ffmpeg-6.0/./libavutil/half2float.c:40: first defined here
          collect2: error: ld returned 1 exit status


    


    Is it because the Rust compiler chain is spamming --whole-archive and causing half2float.o to be duplicated ?

    


  • avdevice/decklink_dec : extract NTSC VANC

    12 février 2018, par Ray Tiley
    avdevice/decklink_dec : extract NTSC VANC
    

    This changes how NTSC VANC is extracted from the buffer. In NTSC the vanc data
    is interleaved between luma and chroma, and not just the luma as in high
    definition resolutions.

    In my testing this allows a decklink card encoding valid NTSC closed
    captions to pass the caption data to the x264 encoder.

    Updated with reviews from Devin Heitmueller and Marton Balint.

    Signed-off-by : Ray Tiley <raytiley@gmail.com>
    Signed-off-by : Marton Balint <cus@passwd.hu>

    • [DH] libavdevice/decklink_dec.cpp
  • ffmpeg and iis smooth streaming

    19 février 2015, par Andrey Pietrov

    I have a local iis instance with configured publishing point. The point is good I’ve tested it by Expression Encoder 4 Pro IIS smooth streaming feature.
    But when I’m trying to stream to is using ffmpeg, Silverlight player can`t play my stream - just buffering action in process. Here is my ffmpeg command

    ffmpeg -f dshow -i video="WebCam SC-13HDL11431N":audio="Microphone (Realtek High Definition Audio)" -movflags isml+frag_keyframe -threads 2 -c:a libvo_aacenc -c:v libx264 -preset fast -b:v 64k -bufsize 64k -flags +global_header -f ismv http://localhost/lf.isml/Streams(lf)

    Manifest file (http://localhost/lf.isml/manifest) is correct and available for Silverlight streaming but unfortunately player doesn’t play my stream.
    Any suggestion or help ? Maybe I’ve forgot some parameter in command ?