Recherche avancée

Médias (9)

Mot : - Tags -/soundtrack

Autres articles (92)

  • Amélioration de la version de base

    13 septembre 2013

    Jolie sélection multiple
    Le plugin Chosen permet d’améliorer l’ergonomie des champs de sélection multiple. Voir les deux images suivantes pour comparer.
    Il suffit pour cela d’activer le plugin Chosen (Configuration générale du site > Gestion des plugins), puis de configurer le plugin (Les squelettes > Chosen) en activant l’utilisation de Chosen dans le site public et en spécifiant les éléments de formulaires à améliorer, par exemple select[multiple] pour les listes à sélection multiple (...)

  • Emballe médias : à quoi cela sert ?

    4 février 2011, par

    Ce plugin vise à gérer des sites de mise en ligne de documents de tous types.
    Il crée des "médias", à savoir : un "média" est un article au sens SPIP créé automatiquement lors du téléversement d’un document qu’il soit audio, vidéo, image ou textuel ; un seul document ne peut être lié à un article dit "média" ;

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

Sur d’autres sites (15623)

  • installing ffmpeg library using command line in android development

    30 novembre 2018, par YASHWANT

    I have tried to run a command from the application to install the ffmpeg library. This is my code :

    try {
       Process process =Runtime.getRuntime().exec("/system/bin/pm install ffmpeg");
       BufferedReader in = new BufferedReader(new InputStreamReader(process.getInputStream()));
    } catch (IOException e) {
       e.printStackTrace();
       Toast.makeText(getApplicationContext(),"failed",Toast.LENGTH_SHORT).show();
    }

    Problem :

    It doesn’t work and prints the output "failed".

  • Python FFmpeg : Unable to set audio stream language

    15 décembre 2019, par Cryptonaut

    I’m using this Python library to programmatically generate a .MOV using a single .WAV (pcm_s24le - 24 bit - 48000 Hz) as input.

    I’ve already asked a few questions relating to other aspects of my video pipeline, seen here and here.

    All I’m trying to do is assign the eng language tag to a single audio stream in the .MOV output.

    Here’s my code :

       audio = ffmpeg.input(input_audio)

       output = ffmpeg.output(audio, output_audio,
       acodec='copy',
       audio_bitrate=bitrate,
       metadata='s:a:0 language=eng')

       output.run()

    The .MOV output this generates displays the following via FFprobe :

    • Stream #0:0: Audio: pcm_s24le (in24 / 0x34326E69), 48000 Hz, stereo, s32 (24 bit), 2304 kb/s (default)

    However, when I run the same input file using the same options/parameters via command line :

    • ffmpeg -y -i input_audio.wav -c:a copy -metadata:s:a:0 language=eng output_audio.mov

    FFprobe states the stream language is eng :

    • Stream #0:0(eng): Audio: pcm_s24le (in24 / 0x34326E69), 48000 Hz, stereo, s32 (24 bit), 2304 kb/s (default)

    Why is the command line approach outputting Stream #0:0(eng) but not the programmatic approach ?

  • Python FFmpeg : Unable to set audio output language

    15 décembre 2019, par Cryptonaut

    I’m using this Python library to programmatically generate a .MOV using a single .WAV (pcm_s24le - 24 bit - 48000 Hz) as input.

    I’ve already asked a few questions relating to other aspects of my video pipeline, seen here and here.

    All I’m trying to do is assign the eng language tag to a single audio stream in the .MOV output.

    Here’s my code :

       audio = ffmpeg.input(input_audio)

       output = ffmpeg.output(audio, output_audio,
       acodec='copy',
       audio_bitrate=bitrate,
       metadata='s:a:0 language=eng')

       output.run()

    The .MOV output this generates displays the following via FFprobe :

    • Stream #0:0: Audio: pcm_s24le (in24 / 0x34326E69), 48000 Hz, stereo, s32 (24 bit), 2304 kb/s (default)

    However, when I run the same input file using the same options/parameters via command line :

    • ffmpeg -y -i input_audio.wav -c:a copy -metadata:s:a:0 language=eng output_audio.mov

    FFprobe states the stream language is eng :

    • Stream #0:0(eng): Audio: pcm_s24le (in24 / 0x34326E69), 48000 Hz, stereo, s32 (24 bit), 2304 kb/s (default)

    Why is the command line approach outputting Stream #0:0(eng) but not the programmatic approach ?