Recherche avancée

Médias (16)

Mot : - Tags -/mp3

Autres articles (72)

  • Organiser par catégorie

    17 mai 2013, par

    Dans MédiaSPIP, une rubrique a 2 noms : catégorie et rubrique.
    Les différents documents stockés dans MédiaSPIP peuvent être rangés dans différentes catégories. On peut créer une catégorie en cliquant sur "publier une catégorie" dans le menu publier en haut à droite ( après authentification ). Une catégorie peut être rangée dans une autre catégorie aussi ce qui fait qu’on peut construire une arborescence de catégories.
    Lors de la publication prochaine d’un document, la nouvelle catégorie créée sera proposée (...)

  • Récupération d’informations sur le site maître à l’installation d’une instance

    26 novembre 2010, par

    Utilité
    Sur le site principal, une instance de mutualisation est définie par plusieurs choses : Les données dans la table spip_mutus ; Son logo ; Son auteur principal (id_admin dans la table spip_mutus correspondant à un id_auteur de la table spip_auteurs)qui sera le seul à pouvoir créer définitivement l’instance de mutualisation ;
    Il peut donc être tout à fait judicieux de vouloir récupérer certaines de ces informations afin de compléter l’installation d’une instance pour, par exemple : récupérer le (...)

  • Encoding and processing into web-friendly formats

    13 avril 2011, par

    MediaSPIP automatically converts uploaded files to internet-compatible formats.
    Video files are encoded in MP4, Ogv and WebM (supported by HTML5) and MP4 (supported by Flash).
    Audio files are encoded in MP3 and Ogg (supported by HTML5) and MP3 (supported by Flash).
    Where possible, text is analyzed in order to retrieve the data needed for search engine detection, and then exported as a series of image files.
    All uploaded files are stored online in their original format, so you can (...)

Sur d’autres sites (5593)

  • ffmpeg : resulting video from timelapse not playable in quicktime after size change [duplicate]

    15 novembre 2016, par Tony Pitale

    This question already has an answer here :

    I can create a "timelapse" video from a series of photos using the following command :

    ffmpeg -pattern_type glob -f image2 -framerate 24 -i "*.JPG" -r 24 -s uhd2160 -pix_fmt yuv420p -vcodec libx264 disassembly-2.mp4

    And this is playable by Quicktime. However, if I change the -s option to be 4000x3000 to exactly match the size of the photos, Quicktime can no longer play the resulting video. VLC can, but not QT.

    ffmpeg -pattern_type glob -f image2 -framerate 24 -i "*.JPG" -r 24 -s 4000x3000 -pix_fmt yuv420p -vcodec libx264 disassembly-2.mp4

    Does anyone know why this change alone would break playback in QT ?

    Running Mac OS 10.12.1 on a 2013 Mac Pro. QT is version 10.4 (891). ffmpeg is :

    ffmpeg version 3.2 Copyright (c) 2000-2016 the FFmpeg developers
    built with Apple LLVM version 8.0.0 (clang-800.0.42.1)
    configuration: --prefix=/usr/local/Cellar/ffmpeg/3.2 --enable-shared --enable-pthreads --enable-gpl --enable-version3 --enable-hardcoded-tables --enable-avresample --cc=clang --host-cflags= --host-ldflags= --enable-libmp3lame --enable-libx264 --enable-libxvid --enable-opencl --disable-lzma --enable-vda
    libavutil      55. 34.100 / 55. 34.100
    libavcodec     57. 64.100 / 57. 64.100
    libavformat    57. 56.100 / 57. 56.100
    libavdevice    57.  1.100 / 57.  1.100
    libavfilter     6. 65.100 /  6. 65.100
    libavresample   3.  1.  0 /  3.  1.  0
    libswscale      4.  2.100 /  4.  2.100
    libswresample   2.  3.100 /  2.  3.100
    libpostproc    54.  1.100 / 54.  1.100

    Quicktime does not show an error message. It plays a video of the appropriate size (dimensions) and length of play that is entirely black.

  • avformat/udp : properly check for valid ttl in url

    7 février 2022, par Limin Wang
    avformat/udp : properly check for valid ttl in url
    

    Zhao Zhili added a ttl upper bound in commit 9daac85da8,
    but the check for ttl in url is missing still.

    Signed-off-by : Limin Wang <lance.lmwang@gmail.com>

    • [DH] libavformat/udp.c
  • How to show part of a frame from a 4k IP cam

    15 avril 2022, par BrP

    I'm working with andoroid.js framework to create a simple app that will show the video that is streamed from some IP cam.

    &#xA;

    I want to add the ability for the user to see only a part of the full video frame that have a resolution of 4k, so for example, if the user want to see the upper left corner of the frame, he can see it like the image is magnified. I'm not sure if this is possible.

    &#xA;

    Is there any ffmpeg or any way to accomplish this with a library for node ? Can I include ffmpeg with node_modules when I build my app ?

    &#xA;