Recherche avancée

Médias (1)

Mot : - Tags -/biomaping

Autres articles (56)

  • XMP PHP

    13 mai 2011, par

    Dixit Wikipedia, XMP signifie :
    Extensible Metadata Platform ou XMP est un format de métadonnées basé sur XML utilisé dans les applications PDF, de photographie et de graphisme. Il a été lancé par Adobe Systems en avril 2001 en étant intégré à la version 5.0 d’Adobe Acrobat.
    Étant basé sur XML, il gère un ensemble de tags dynamiques pour l’utilisation dans le cadre du Web sémantique.
    XMP permet d’enregistrer sous forme d’un document XML des informations relatives à un fichier : titre, auteur, historique (...)

  • Use, discuss, criticize

    13 avril 2011, par

    Talk to people directly involved in MediaSPIP’s development, or to people around you who could use MediaSPIP to share, enhance or develop their creative projects.
    The bigger the community, the more MediaSPIP’s potential will be explored and the faster the software will evolve.
    A discussion list is available for all exchanges between users.

  • Installation en mode ferme

    4 février 2011, par

    Le mode ferme permet d’héberger plusieurs sites de type MediaSPIP en n’installant qu’une seule fois son noyau fonctionnel.
    C’est la méthode que nous utilisons sur cette même plateforme.
    L’utilisation en mode ferme nécessite de connaïtre un peu le mécanisme de SPIP contrairement à la version standalone qui ne nécessite pas réellement de connaissances spécifique puisque l’espace privé habituel de SPIP n’est plus utilisé.
    Dans un premier temps, vous devez avoir installé les mêmes fichiers que l’installation (...)

Sur d’autres sites (5093)

  • FFMPEG | How to attach a path URL for .ts chunks in m3u8 ?

    29 mai 2019, par mendy25

    What I need to do is to add a full path address inside the m3u8 for each .ts

    How to do it please ?

    Example :

    #EXTM3U
    #EXT-X-VERSION:3
    #EXT-X-TARGETDURATION:10
    #EXT-X-MEDIA-SEQUENCE:0
    #EXTINF:10.000000,
    http://...com/tsfiles/2019-05-29_12:40:41.ts
    #EXTINF:10.000000,
    http://...com/tsfiles/2019-05-29_12:40:45.ts
    #EXTINF:10.000000,
    http://...com/tsfiles/2019-05-29_12:40:51.ts

    The result / command right now :

    ffmpeg -y -user_agent 'VLC/2.1.4 LibVLC/2.1.4' -i *** -strftime 1 -strftime_mkdir 1 -force_key_frames expr:'gte(t,n_forced*10)' -hls_time 10 -hls_segment_filename /var/www/html/tsfiles/%Y-%m-%d_%H:%M:%S.ts /var/www/html/m3u8files/stream.m3u8


    #EXTM3U
    #EXT-X-VERSION:3
    #EXT-X-TARGETDURATION:10
    #EXT-X-MEDIA-SEQUENCE:0
    #EXTINF:10.000000,
    /var/www/html/tsfiles/2019-05-29_12:40:41.ts
    #EXTINF:10.000000,
    /var/www/html/tsfiles/2019-05-29_12:40:45.ts
    #EXTINF:10.000000,
    /var/www/html/tsfiles/2019-05-29_12:40:51.ts
  • ffmpeg : fix deadlock regression in threading error handing

    27 juin 2014, par Sergey
    ffmpeg : fix deadlock regression in threading error handing
    

    Commit fc9c857c introduced deadlock regression when processing too many inputs :
    ffmpeg $(seq -f " -f lavfi -i aevalsrc=0:d=%.0f" 70) -vf concat=n=70:v=0:a=1 -f null -
    Happens for different number of inputs, depending on available memory size,
    overcommit settings, ulimits, etc. Easily noticeable for 32-bit builds,
    that exhaust address space allocating 8-10 MB stack for each thread.
    Earlier ffmpeg versions exited with unhelpful "Conversion failed !" message.

    This patch fixes both problems : it frees the queue to prevent deadlock
    and adds a meaningful error message if pthread_create() fails.

    Reviewed-by : Nicolas George <george@nsup.org>
    Signed-off-by : Michael Niedermayer <michaelni@gmx.at>

    • [DH] ffmpeg.c
  • FFmpegFrameGrabber.start() crashes when loading mp4 file

    23 septembre 2019, par Anand Jain

    I’m trying to load a mp4 video file I record somewhere else in the app, and then want to pass the image’s address to a jni native opencv code to do some processing.

    FFmpegFrameGrabber grabber;

               grabber = new FFmpegFrameGrabber(videoPath);
               grabber.start();
               grabber.getFrameNumber();
               grabber.getLengthInTime();
               grabber.getLengthInFrames();

               frameRate = grabber.getFrameRate();

               Log.d("V1", "FRAME RATE = " + frameRate);

               grabber.stop();
               grabber.release();

    It show Caused by: java.lang.UnsatisfiedLinkError: dalvik.system.PathClassLoader[DexPathList[[zip file "/data/app/com.v1.v1golf2-rWziofbEW92JsJ7hvlJj5g==/base.apk"],nativeLibraryDirectories=[/data/app/com.v1.v1golf2-rWziofbEW92JsJ7hvlJj5g==/lib/arm64, /data/app/com.v1.v1golf2-rWziofbEW92JsJ7hvlJj5g==/base.apk!/lib/arm64-v8a, /system/lib64, /system/vendor/lib64]]] couldn't find "libjniavutil.so" error.

    Dependency which I am using below :-

    implementation 'org.bytedeco.javacpp-presets:opencv-platform:3.1.0-1.3'
       implementation 'org.bytedeco.javacpp-presets:ffmpeg-platform:3.2.1-1.3'