Recherche avancée

Médias (0)

Mot : - Tags -/logo

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

Autres articles (56)

  • Les autorisations surchargées par les plugins

    27 avril 2010, par

    Mediaspip core
    autoriser_auteur_modifier() afin que les visiteurs soient capables de modifier leurs informations sur la page d’auteurs

  • HTML5 audio and video support

    13 avril 2011, par

    MediaSPIP uses HTML5 video and audio tags to play multimedia files, taking advantage of the latest W3C innovations supported by modern browsers.
    The MediaSPIP player used has been created specifically for MediaSPIP and can be easily adapted to fit in with a specific theme.
    For older browsers the Flowplayer flash fallback is used.
    MediaSPIP allows for media playback on major mobile platforms with the above (...)

  • Support audio et vidéo HTML5

    10 avril 2011

    MediaSPIP utilise les balises HTML5 video et audio pour la lecture de documents multimedia en profitant des dernières innovations du W3C supportées par les navigateurs modernes.
    Pour les navigateurs plus anciens, le lecteur flash Flowplayer est utilisé.
    Le lecteur HTML5 utilisé a été spécifiquement créé pour MediaSPIP : il est complètement modifiable graphiquement pour correspondre à un thème choisi.
    Ces technologies permettent de distribuer vidéo et son à la fois sur des ordinateurs conventionnels (...)

Sur d’autres sites (9020)

  • Cannot link executable NDK ffmpeg - Android 7 Nougat

    11 janvier 2017, par Basit Ali

    I am using ffmpeg in my project and it was working fine until I tried it on Android 7.

    ProcessBuilder builder = new ProcessBuilder(ffmpegCommand);
    Map env = builder.environment();
    env.put("LD_LIBRARY_PATH", "/data/data/uk.org.humanfocus.hfi:$LD_LIBRARY_PATH");

    When I read the output it return me the following error :

    CANNOT LINK EXECUTABLE "/data/data/uk.org.humanfocus.hfi/ffmpeg": /data/data/uk.org.humanfocus.hfi/ffmpeg: has text relocations

    Used targeting api 23 as well as 22, still not working.
    Is it related to NDK Apps Linking ?
    How can I fix this ?

  • lavfi/selectivecolor : add a link to algorithm explanations

    7 janvier 2017, par Clément Bœsch
    lavfi/selectivecolor : add a link to algorithm explanations
    
    • [DH] libavfilter/vf_selectivecolor.c
  • How to connect ffmpeg to broadcasted rtsp live camera link feeds to users browser ??? These camera link are dynamic so it cannot be defined initially

    9 décembre 2016, par vibhor Gupta

    The following rtsp link gives me feed :
    rtsp ://user:11111@192...***/MPEG-4ch1/main/avstreams

    The following ffmpeg command helps gets me these feed and i can store it on my server :
    ffmpeg -i rtsp ://user:11111@192...***/MPEG-4ch1/main/avstreams -vcodec copy -acodec copy -f mpegts video.mp4

    But when i use the following command broadcast starts but no streaming is received :
    ffmpeg -i rtsp ://user:11111@192...***/MPEG-4ch1/main/avstreams -vcodec copy -acodec copy -f mpegts udp ://127.0.0.1:7000

    I even checked on the server for 7000 port but nothing is running so i am cannot understand what is going.

    To Check I used vlc and in the network stream option i placed udp ://192.168.1.105:7000 as the network url. but it is not working

    So friends i would like to know where i am going and if possible what can be a better solution for this problem ??

    Thank You