Recherche avancée

Médias (91)

Autres articles (73)

  • Le profil des utilisateurs

    12 avril 2011, par

    Chaque utilisateur dispose d’une page de profil lui permettant de modifier ses informations personnelle. Dans le menu de haut de page par défaut, un élément de menu est automatiquement créé à l’initialisation de MediaSPIP, visible uniquement si le visiteur est identifié sur le site.
    L’utilisateur a accès à la modification de profil depuis sa page auteur, un lien dans la navigation "Modifier votre profil" est (...)

  • Configurer la prise en compte des langues

    15 novembre 2010, par

    Accéder à la configuration et ajouter des langues prises en compte
    Afin de configurer la prise en compte de nouvelles langues, il est nécessaire de se rendre dans la partie "Administrer" du site.
    De là, dans le menu de navigation, vous pouvez accéder à une partie "Gestion des langues" permettant d’activer la prise en compte de nouvelles langues.
    Chaque nouvelle langue ajoutée reste désactivable tant qu’aucun objet n’est créé dans cette langue. Dans ce cas, elle devient grisée dans la configuration et (...)

  • Sélection de projets utilisant MediaSPIP

    29 avril 2011, par

    Les exemples cités ci-dessous sont des éléments représentatifs d’usages spécifiques de MediaSPIP pour certains projets.
    Vous pensez avoir un site "remarquable" réalisé avec MediaSPIP ? Faites le nous savoir ici.
    Ferme MediaSPIP @ Infini
    L’Association Infini développe des activités d’accueil, de point d’accès internet, de formation, de conduite de projets innovants dans le domaine des Technologies de l’Information et de la Communication, et l’hébergement de sites. Elle joue en la matière un rôle unique (...)

Sur d’autres sites (9919)

  • Transloadit : How can I replace audio track of a given video ?

    1er septembre 2014, par Stan Wiechers

    I am having trouble forming the steps that would replace/set the audio track of an mp4. Here is my code :

    require "open-uri"
    transloadit = Transloadit.new(:key => ENV['TRANSLOADIT_AUTH_KEY'],:secret => ENV['TRANSLOADIT_AUTH_SECRET'])
    video_encode = transloadit.step('video_encode', '/video/encode', use: ":original",ffmpeg_stack: "v2.0.0", ffmpeg: { i: "http://www.stephaniequinn.com/Music/Allegro%20from%20Duet%20in%20C%...;", map:"1:0", vcodec:"copy", acodec:"copy"})
    store = transloadit.step('store', '/s3/store', :key => ENV['S3_ACCESS_KEY'], :secret => ENV['S3_SECRET_ACCESS_KEY'], :bucket => ENV['S3_BUCKET'])
    assembly = transloadit.assembly(:steps => [ video_encode, store ] )
    response = assembly.submit! open('http://techslides.com/demos/sample-videos/small.mp4')

    I am getting this message :

    'Unable to find a suitable output format'

    Could someone tell me how parametrize ffmpeg and transloadit to set the audio track of a given mp4 ? I tried many variations without any luck.

  • FFMPEG for APACHE 2.4.6 (x64), PHP 5.5 (x64), MYSQL 5.6 (x64) on WINDOWS 8 (x64) MACHINE

    8 mai 2014, par user2662327

    FFMPEG for APACHE 2.4.6 (x64), PHP 5.5 (x64), MYSQL 5.6 (x64) on WINDOWS 8 (x64) MACHINE

    I need to install FFMPEG on my windows 8 machine running DRUPAL ZEN custom theme. Can someone tell me where I can get the right dll files for this purpose ? If I have to compile them myself, can someone please give me step by step instructions for how to do so ? I have searched endlessly for these dlls for days now and I have no instructions for creating what i need manually. I have a windows machine running minGW.

    I already tried using the FFMPEG dlls that are out there on teh internet but my PHP-APACHE installations seem to be unable to properly detect the FFMPEG libraries (i added php_ffmpeg.dll to EXT folder, and the rest of hte DLLs to the WINDOWS/SYSTEM32 folder).

    I am running the following versions of PHP and APACHE. Thank you very much in advance for any help you can offer me.

    PHP Version 5.5.1
    System Windows NT 6.2 build 9200 (Windows 8 Business Edition) AMD64
    Build Date Jul 18 2013 11:04:03
    Compiler MSVC11 (Visual C++ 2012)
    Architecture x64

    APACHE VERSION
    Server version : Apache/2.4.6 (Win64)
    Apache Lounge VC10 Server built : Jul 16 2013 11:31:50

  • Cannot use FFmpeg in Xcode iOS Project (file .h not found)

    19 mars 2016, par BlackBox

    I followed almost step by step this guide.

    Almost because I downloaded, as a user suggested, ffmpeg ios library already built from here

    I followed from "Linking static libraries in Xcode" but I cannot import anyway the header files of ffmpeg. (So I got the .a files)

    For example

    #include "avformat.h"
    // or
    #import "libavformat/avformat.h"
    // or
    #import <libavformat></libavformat>avformat.h>

    Everything that I use does not work.

    I specify that those .a files are currently in my project directory, indeed, if I import the .a file, it doesn’t complain that it isn’t found, but when compiling, it complains about UTF-8 stuff because .a files are object libraries and cannot be imported that way.

    I put also the Header Search Paths for the project as it was suggested and the config.log file but nothing.

    Also I see libraries are missing from every project example of FFmpeg I was able to find on GitHub.

    Any ideas ?