Recherche avancée

Médias (91)

Autres articles (59)

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

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

  • MP3 stream (ytdl-core) to PCM with fluent-ffmpeg

    3 juin 2021, par Schwieriiiiig

    So basically im trying to convert a MP3 stream, coming in from an NodeJS readable, to the PCM format so i can play it back via the Speaker Package.

    


    I tried many things including : node-lame, lame, lamejs -> so i figured why not use the ffmpeg libary directly.

    


    My Attempt (doesn't work) :

    


    const args = " u r l "
[...]
const dl = ytdl(args, {
    filter: "audioonly",
});
const speaker = new Speaker();
ffmpeg(dl).audioCodec("libmp3lame").format("s16le").pipe(speaker);


    


    It is however playing something, but it's more like pink or white noise.

    


    Thanks in advance !

    


    PS : i installed FFmpeg correctly
    
PSS : i use this in the main process from electron but i don't see why this would make a difference

    


  • crop a inner video from a static image background [on hold]

    31 mars 2019, par hahahhhhhha

    Human can tell that this is a video overlaid on a static image. How to use ffmpeg or other programs to crop the rectangular video from the static image background ?

    I tried cropdetect with ffmpeg, but it seems that cropdetect is good at detecting black bars for something like cinematic videos but not good at detecting e.g. pink or sky-blue bar ?
    I also tried crop, but you need to provide parameters width, height, x, y for the crop to work. because my the video is not overlaid on the same location all the time, so I prefer to detect and crop automatically.how to crop the rectangular video from the static image background, the blue-ish portion is the background

  • Using FFMPEG for online video hosting

    20 décembre 2011, par Kyle Monti

    I've been looking around for using FFMPEG and PHP. I've noticed you can use FFMPEG with HTML5. I've read the documentation of the FFMPEG's website and it's far beyond my knowledge. I have an open source document of a 'premade' .php file that stores the information to the database and tells it to execute to the ffmpeg function. However, they use mp4box and FLVtool2.

    The array's of video size, frame rates, etc. are quite easy to understand. When designing this from scratch I really have not idea where to start.

    I've defined the variables that will be recorded once the file is uploaded, thereafter, checking to see if the file exists and recording it the database.

    The real question is using mp4box and flvtool2 to convert all videos right to .flv so you can use flowplayer or jwplayer then telling to convert.

    EDIT : Sorry to edit, I've seen many posts about the same question but they all relate to old versions of the software, will the php carry over to newer versions (probably could find out on their website if they had a more in depth HOWTO for website streaming)