Recherche avancée

Médias (1)

Mot : - Tags -/ogg

Autres articles (28)

  • Emballe Médias : Mettre en ligne simplement des documents

    29 octobre 2010, par

    Le plugin emballe médias a été développé principalement pour la distribution mediaSPIP mais est également utilisé dans d’autres projets proches comme géodiversité par exemple. Plugins nécessaires et compatibles
    Pour fonctionner ce plugin nécessite que d’autres plugins soient installés : CFG Saisies SPIP Bonux Diogène swfupload jqueryui
    D’autres plugins peuvent être utilisés en complément afin d’améliorer ses capacités : Ancres douces Légendes photo_infos spipmotion (...)

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

  • Gestion générale des documents

    13 mai 2011, par

    MédiaSPIP ne modifie jamais le document original mis en ligne.
    Pour chaque document mis en ligne il effectue deux opérations successives : la création d’une version supplémentaire qui peut être facilement consultée en ligne tout en laissant l’original téléchargeable dans le cas où le document original ne peut être lu dans un navigateur Internet ; la récupération des métadonnées du document original pour illustrer textuellement le fichier ;
    Les tableaux ci-dessous expliquent ce que peut faire MédiaSPIP (...)

Sur d’autres sites (6394)

  • FFMPEG record sound stop always at the same size

    12 mai 2022, par gildas

    I try to record live sounds catch by a device (raspberry Pi with microphones) in my computer (linux).
I use this command on the device :

    


    arecord -D dmic_sv -c2 -r 48000 -f S32_LE -t wav | \
ffmpeg -re -f wav -i pipe: \
       -f s16le -acodec pcm_s16le -ac 1 -ar 48000 -af "volume=16dB" 
       tcp://ipPC:55000


    


    I use this command on my PC :

    


    FFREPORT=file=ffreport.log:level=32 \
ffmpeg -f s16le -acodec pcm_s16le -ac 1 -ar 48000 \
       -i tcp://ipPC:55000?listen -f wav fichiercible.wav


    


    It is working but the record always stops when fichiercible.wav reach 536.9Mo.

    


    I tried to put this option -fs 2000000000 on the command on my PC :

    


    FFREPORT=file=ffreport.log:level=32 \
  ffmpeg -f s16le -acodec pcm_s16le -ac 1 -ar 48000 \
         -i tcp://ipPC:55000?listen \
         -f wav -fs 2000000000 fichiercible.wav


    


    But the result was the same, the record stop when the file is 536.9Mo

    


    Is it possible to record bigger size file with ffmpeg ?

    


  • how can i stop ffmpeg when no new frame come to /dev/video0

    17 mai 2022, par itirou tarou

    I am now modifying stream from camera with our program(programA) and output as .ts files like below.

    


    camera => programA => /dev/video0 => ffmpeg => .ts files

    


    When camera stopped, programA stop automatically and no new frame arrive to /dev/video0.
I want ffmpeg stop automatically in such situation.
What ffmpeg option should I use ?
Currently I'm using option below, but ffmpeg doesn't stop.

    


    ffmpeg -f video4linux2 -i /dev/video0 -vsync vfr -f hls -c:v h264_nvenc out.m3u8


    


    Edited :
    
I tried to invalidate /dev/video0 but it failed like below.

    


    # modprobe -r v4l2loopback
modprobe: FATAL: Module v4l2loopback is in use.


    


    After I stopped programA and ffmpeg, the command success.
    
ProgramA is kicked by systemd service and restart automatically when it stopped.
    
ffmpeg is kicked by programB, but programB doesn't control programA.
    
But it sounds like good idea to inform B so B can kill ffmpeg.
    
I'll try that way. Thank you.

    


  • Android NDK : Aborting stop ?

    19 mai 2022, par Sandeep Tiwari

    I am working on ffmpeg for android. I have successfully compile ffmpeg-2.0.1 
 after that I make Android.mk file in my NDK's sources/ffmpeg-2.0.1/android/arm as

    



          LOCAL_PATH:= $(call my-dir)

      include $(CLEAR_VARS)

      LOCAL_MODULE:= libavcodec

      LOCAL_SRC_FILES:= lib/libavcodec-55.so

       LOCAL_EXPORT_C_INCLUDES := $(LOCAL_PATH)/include

      include $(PREBUILT_SHARED_LIBRARY)


    



    After that make android project and in android project Android.mk file is as

    



      LOCAL_PATH := $(call my-dir)

    include $(CLEAR_VARS)

   LOCAL_MODULE    := tutorial01
   LOCAL_SRC_FILES := tutorial01.c
   LOCAL_LDLIBS := -llog -ljnigraphics -lz 
   LOCAL_SHARED_LIBRARIES := libavformat libavcodec libswscale libavutil

   include $(BUILD_SHARED_LIBRARY)
    $(call import-module,ffmpeg-2.0.1/android/arm)


    



    but showing a problem

    



     *** Android NDK: Aborting    .  Stop.
   android-ffmpeg-tutorial01line 45, external location: 
   /home/tech/Documents/roman10/ndk/android-ndk-r9c/build/core/prebuilt-library.mk
   C/C++ Problem


    



    My NDK is android-ndk-r9c,system is ubuntu-13.04,please anyone guide me.

    



    thanks in advance.