Recherche avancée

Médias (1)

Mot : - Tags -/copyleft

Autres articles (48)

  • Mise à jour de la version 0.1 vers 0.2

    24 juin 2013, par

    Explications des différents changements notables lors du passage de la version 0.1 de MediaSPIP à la version 0.3. Quelles sont les nouveautés
    Au niveau des dépendances logicielles Utilisation des dernières versions de FFMpeg (>= v1.2.1) ; Installation des dépendances pour Smush ; Installation de MediaInfo et FFprobe pour la récupération des métadonnées ; On n’utilise plus ffmpeg2theora ; On n’installe plus flvtool2 au profit de flvtool++ ; On n’installe plus ffmpeg-php qui n’est plus maintenu au (...)

  • Personnaliser en ajoutant son logo, sa bannière ou son image de fond

    5 septembre 2013, par

    Certains thèmes prennent en compte trois éléments de personnalisation : l’ajout d’un logo ; l’ajout d’une bannière l’ajout d’une image de fond ;

  • 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

Sur d’autres sites (10785)

  • screen mess when change video on rtmp

    16 mars 2014, par dingyaguang117
    1. when I use "ffmpeg -i" to probe video info, the infos below will be shown (take 2 examples)

      Stream #0:0 : Video : h264 (High), yuv420p, 600x352, 281 kb/s, 29.97 tbr, 1k tbn, 59.94 tbc
      Stream #0:0(und) : Video : h264 (Main) (avc1 / 0x31637661), yuv420p, 640x480 [SAR 1:1 DAR 4:3], 532 kb/s, 25 fps, 25 tbr, 25k tbn, 50 tbc
      

      What does the "avc1" mean?why the first doesn't shown ?

      Will it be "screen mess","no sound" or "no image" when switch the video that is publishing to rtmp server if the contiguous video encode by different codec ?

    2. How to switch video publishing to rtmp smoothly ?
      I use nginx-rtmp-module,set "live on",and use "ffmpeg -re" to publish video.
      My method to switch video is to "pkill ffmpeg", and start another "ffmpeg -re" process.
      If the contiguous videos encode by different codec,it maybe "screen mess","no sound" or "no image". What can I do to solve it ?

    3. Are there any experiences(about tools,switch videos,how to choose encoding) when doing live video ?

  • Android NDK : Aborting stop ?

    30 juillet 2014, 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.

  • complex ffmpeg command line to Node fluent ffmpeg

    13 février 2017, par Faellor

    I have read the other question on command line input to Node Fluent ffmpeg but the command I am trying to execute is more complex and any ideas are appreciated.

    ffmpeg -i cut2.mp4 -c copy -an nosound2.mp4 && ffmpeg -i nosound2.mp4 -vf reverse reversednosound2.mp4 && ffmpeg -f concat -i inputs.txt -vcodec copy -acodec copy 2sec.mp4

    It is far from optimal because I am saving every video created with middle steps. I need to pipe the output of one command to the other command but I have no idea on how to do that with Node fluent-ffmpeg module.

    Any attempts to write this command with Node fluent-ffmpeg is greatly appreciated