Recherche avancée

Médias (33)

Mot : - Tags -/creative commons

Autres articles (76)

  • MediaSPIP version 0.1 Beta

    16 avril 2011, par

    MediaSPIP 0.1 beta est la première version de MediaSPIP décrétée comme "utilisable".
    Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
    Pour avoir une installation fonctionnelle, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
    Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...)

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

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

Sur d’autres sites (9984)

  • unconnected output - FFMPEG

    9 avril 2018, par Hernan Quintero

    Im trying to make my first apple Service.

    I want FFMPEG to extract 5.1 Audio from a video with this command line :

    ffmpeg -i infile \
    -filter_complex "channelsplit=channel_layout=5.1[FL][FR][FC][LFE][BL]
    [BR]" \
    -map "[FL]" front_left.wav \
    -map "[FR]" front_right.wav \
    -map "[FC]" front_center.wav \
    -map "[LFE]" lfe.wav \
    -map "[BL]" back_left.wav \
    -map "[BR]" back_right.wav

    It works very good from the Terminal, but when I try to make a Service in Automator I get the following error :

    Filter channelsplit:BR has an unconnected output

    This is the command line for the service :

    on run {input, parameters}
    tell application "Terminal"
       activate
       set filesString to ""
       repeat with file_ in input
           set filesString to filesString & " " & quoted form of (POSIX path of file_)
       end repeat
       do script "for f in" & filesString & "; do
    /usr/local/bin/ffmpeg -i \"$f\" -filter_complex
    channelsplit=channel_layout=5.1[FL][FR][FC][LFE][BL][BR]
    -map [FL] front_left.wav
    -map [FR] front_right.wav
    -map [FC] front_center.wav
    -map [LFE] lfe.wav
    -map [BL] back_left.wav
    -map [BR] back_right.wav
    done"
    end tell
    return input
    end run

    Could you guys help me to figure out what I’m doing wrong ?

    Thank you very much.

  • MPG to MP4 Video Conversion after Azure Media Services Retirement [closed]

    30 juillet 2024, par Yousef

    I'm hosting a C# Blazor Application in Azure App Service and was leveraging Azure Media Services to transcode mpg videos to mp4 in Jobs. However, Azure Media Services was retired last month and the services are going to stop next week so I have to find an alternative.
I have looked at multiple alternatives but couldn't find a simple conversion tool.
In Azure Media Services I was using the following configuration
enter image description here

    


    I can't seem to find the same configuration in the tools I have looked at. I tried Bitmovin but the encoding takes 5 - 10 Minutes (unlike Azure Media Services which takes 2 minutes) and the result of the encoding is a folder with 4 mp4 segments that are not part of the original mpg video.

    


    I tried ffmpeg locally but I can't get it to work in an Azure App Service.

    


    Does anyone have any suggestion of an alternative to Azure Media Service when it comes to Transcoding mpg videos to mp4 in a background task ?

    


  • Compiling FFMPEG for android NDK r9d

    17 juillet 2014, par jawad bin zafar

    I am working on a project in which I need to use FFMPEG for video editing. I have a very short time and compiling takes to much time of me. I have search many tutorial on the web and but no one seem to be working. Some have missing configure file some have command which are broken etc.

    My Question is weather it is necessary to compile FFMPEG with you NDK or we can use a precompile library or we can sign a compile library with our NDK signature.

    Any one knows a working step by step guide to compile and use the compile library into your project.

    Thanks