Recherche avancée

Médias (0)

Mot : - Tags -/formulaire

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

Autres articles (44)

  • 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

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

  • FFMPEG library Integration unsuccess

    1er septembre 2017, par Alok Kumar Verma

    I’m stuck with the integration of the FFMPEG file. I’m using Android Studio 2.3.3

    I’ve followed this link and hence got to know how to do this but all I’m getting is a failure.

    Links

    1. How to integrate the FFMPEG in your android
    2. Integrating android FFMPEG

    Now I"ve my ndk installed in this path : /Users/alok/Library/Android/sdk/ndk-bundle

    And I’ve downloaded the newest version of the FFMPEG i.e., 3.3.3 unzipped it in the sources folder of ndk-bundle

    Now I’ve followed this and implemented everything as said.

    • Editing the Configure File using TEXTVIEW in my mac
    • Creating a file name build_android.sh and copy pasting the given code. However I’ve changed the NDK path in my case in the code the code is here

      NDK=/Users/alok/Library/Android/sdk/ndk-bundle
      SYSROOT=$NDK/platforms/android-23/arch-arm/
      TOOLCHAIN=$NDK/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64
    • Now opening the folder through terminal and then typing this command sudo chmod +x build_android.sh followed by this sudo ./build_android.sh

    The result is : No android name folder created inside under the folder FFMPEG 3.3.3 in this root i.e., /ndk-bundle/sources/ffmpeg 3.3.3/

    and the terminal shows this output :

    ./configure: line 3341: syntax error near unexpected token `2'

    ./configure: line 3341:

    DEPCMD='$(DEP$(1)) $(DEP$(1)FLAGS) $($(1)DEP_FLAGS) $< 2>/dev/null | sed -e "/^\#.*/d" -e "s,^[[:space:]]*$(@F),$(@D)/$(@F)," > $(@:.o=.d)''
    Makefile:2: config.mak: No such file or directory
    Makefile:67: /common.mak: No such file or directory
    Makefile:114: /libavutil/Makefile: No such file or directory
    Makefile:114: /library.mak: No such file or directory
    Makefile:116: /doc/Makefile: No such file or directory
    Makefile:206: /tests/Makefile: No such file or directory
    make: *** No rule to make target /tests/Makefile'. Stop.

    Hence I’m not been able to move next due to this which creating a JNI folder and stuff. I’m a beginner with FFMPEG and want to integrate it.

    NOTE : I’ve already used this library in my gradle

    compile ‘com.writingminds:FFmpegAndroid:0.3.2’

    For easy approach and things are working fine too but due to the older version I’m getting wrong outputs, so need to update it and there is one way and this is the way to do it.

  • how to install portaudio19-dev and ffmpeg on ubuntu WSL

    28 mai 2021, par Joshua Aldrich Edbert

    I'm a windows user trying to run a command from ubuntu 20.04 LTS release on windows.

    


    sudo apt-get install gcc portaudio19-dev python3-dev ffmpeg


    


    After asking me to input a password, the terminal showed :

    


    reading package lists... Done
Building dependency tree
Reading state information... Done
E: Unable to locate package portaudio19-dev
E: Unable to locate package ffmpeg


    


    I'm not sure what happened as I'm new to this world. Any help would be appreciated !

    


  • ffmpeg not streaming properly [on hold]

    1er avril 2017, par Asad Ali

    I am using this command to capture video from my webcam and then sending it via udp :

    ffmpeg -f v4l2 -rtbufsize 500M -r 25 -i /dev/video0 -c:v libx265 -vb 1050000 -maxrate 1050000 -bufsize 0 -preset ultrafast -x265-params "fps=15" -c:a aac -b:a 128k -f mpegts udp://127.0.0.1:1234

    And then at the same time I am viewing that video in another terminal :

    ffplay -fflags nobuffer -i udp://127.0.0.1:1234

    The results are pretty bad with 4 seconds lag.

    Errors on ffmplay are following :

    • invalid NAL unit xx, skipping error parsing NAL unit

    I have read streaming documentation of ffmpeg but to no avail.
    What changes should I made in my command ?