Recherche avancée

Médias (29)

Mot : - Tags -/Musique

Autres articles (61)

  • 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 ;

  • Ecrire une actualité

    21 juin 2013, par

    Présentez les changements dans votre MédiaSPIP ou les actualités de vos projets sur votre MédiaSPIP grâce à la rubrique actualités.
    Dans le thème par défaut spipeo de MédiaSPIP, les actualités sont affichées en bas de la page principale sous les éditoriaux.
    Vous pouvez personnaliser le formulaire de création d’une actualité.
    Formulaire de création d’une actualité Dans le cas d’un document de type actualité, les champs proposés par défaut sont : Date de publication ( personnaliser la date de publication ) (...)

Sur d’autres sites (8867)

  • Get audio (M4A or MP3) file links directly from YouTube

    10 mars 2018, par Alex

    I am developing a PHP script that obtains video download links from YouTube. The ones I am grabbing are MP4 (720p) and MP4 (360p) (no-DASH format).

    My script is similar to this PHP class : https://github.com/Athlon1600/youtube-downloader

    It allows me to download any YouTube video that I want, no matter if it has copyright or not. It handles everything with signature ciphering and deciphering included.

    However, apart from videos, I would like to obtain audio download links from YouTube videos as well, either in MP3 or M4A.

    (M4A files are provided by YouTube, but they are in DASH format, which means, it’s not a complete file, but a collection of files that need to be merged together)

    Is there a way to obtain MP3 audio download links directly from YouTube ?

    I would like to avoid using FFMPEG library as it requires a lot of resources.

    In the case that using a library like that is the only option, what’s the most optimal way to convert MP4 files to MP3 files ?

    Is there any more efficient alternative than FFMPEG ?

    PLEASE avoid comments regarding YouTube TOS

  • FFmpeg filter for selecting video/audio streams

    23 juin 2017, par Leif Andersen

    I am trying to create a node (a collection of nodes is fine too), that takes in many streams and an index, and outputs one stream specified by the index. Basically, I want to create a mux node, something like :

    Node : Stream ... Number -> Stream

    FFmpeg’s filter graph API seems to have two filters for doing that : streamselect (for video) and astreamselect (for audio). And for the most part, they seem to do what I want :

    [in0][in1][in2]streamselect=inputs=3:map=1[out]

    This stream will take in three video streams, and output the second one in1.

    You can use a similar filter for audio streams :

    [in0][in1]astreamselect=inputs=2:map=0[out]

    Which will take in two streams and output the first one in0.

    The question is, can I create a filter that takes in a list of both audio and video streams and outputs the stream based only on the stream index ? So something like :

    [v0][v1][a0][a1][a2]avstreamselect=inputs=5:map=3[out]

    Which maps a1 to out ?

    If it helps I am using the libavfilter C API rather than the command line interface.

  • Extract Video Meta Data from First Few MB on S3

    22 août 2016, par David Williams

    I have a large collection of video files on S3. I also have application servers running in AWS running a Java webapp. From those application servers, I would like to be able to extract metadata from each video file such as is provided by the Quicktime movie inspector :

    Source: /home/me/foo.mov
    Format: H.264, 1920x1080
    FPS: 29.97
    Data Size: 16.8 MB
    Data Rate: 6.70 Mbit/s

    Now, I can clearly get this information from ffmpeg :

    $ ffmpeg -i /home/me/foo.mov

    Input #0, mov,mp4,m4a,3gp,3g2,mj2, from '/home/me/foo.mov':
     Metadata:
       major_brand     : isom
       minor_version   : 1
       compatible_brands: isomavc1mp42
       creation_time   : 2014-06-30 22:40:08
     Duration: 00:00:20.02, start: 0.000000, bitrate: 6698 kb/s
       Stream #0:0(und): Video: h264 (High) (avc1 / 0x31637661), yuv420p, 1920x1080 [SAR 1:1 DAR 16:9], 6696 kb/s, 29.97 fps, 29.97 tbr, 30k tbn, 59.94 tbc (default)
       Metadata:
         creation_time   : 2014-06-30 22:39:09
         handler_name    : GPAC ISO Video Handler

    I could easily parse out the equivalent fields to the Quicktime output ! But, this would require I have the file locally. Is it possible to do this from the first few MB (or some other mechanism) of a file hosted on S3 without downloading the whole thing locally ? The goal here is to extract the same fields as the quicktime inspector from a file on S3. Any ideas ?