Recherche avancée

Médias (16)

Mot : - Tags -/mp3

Autres articles (81)

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

  • La sauvegarde automatique de canaux SPIP

    1er avril 2010, par

    Dans le cadre de la mise en place d’une plateforme ouverte, il est important pour les hébergeurs de pouvoir disposer de sauvegardes assez régulières pour parer à tout problème éventuel.
    Pour réaliser cette tâche on se base sur deux plugins SPIP : Saveauto qui permet une sauvegarde régulière de la base de donnée sous la forme d’un dump mysql (utilisable dans phpmyadmin) mes_fichiers_2 qui permet de réaliser une archive au format zip des données importantes du site (les documents, les éléments (...)

  • Contribute to documentation

    13 avril 2011

    Documentation is vital to the development of improved technical capabilities.
    MediaSPIP welcomes documentation by users as well as developers - including : critique of existing features and functions articles contributed by developers, administrators, content producers and editors screenshots to illustrate the above translations of existing documentation into other languages
    To contribute, register to the project users’ mailing (...)

Sur d’autres sites (7532)

  • while uploading video get screen shots with ffmpeg tool & php [on hold]

    4 décembre 2014, par ilinkthreesixty

    Can you tell me what is ffmpeg and for which purposes it is used in or with PHP ... ?

    I wanna learn it to create thumbnails while uploading a video to rotate them when mouse is over the video when it is done, It’s an effect which is used on dailymotion and even facebook is using it on it’s Album when mouse is hover over a user Album it rotate the thumbnails so i want to learn how to get thumbnail screen shots on the flying while video is uploading ... Hope you have got me.

  • Android : How to overlay video and audio by using ffmpeg ?

    23 août 2014, par Chau Sin Ting

    I wanna make a android app which can overlay a audio to a video by clicking a button and I am using ffmpeg. The format of my video and audio are mp4 and mp3. I want the output video format is mp4. I have searched for many solutions but none of them give me a satisfied result. All of them are just replaced the original audio of my video to the audio of the audio file. What I want is to overlay my aduio file to the video file and keep the sound of the video at the same time. Does anyone have any idea to do this ? Thank you !

  • How to extract frame size and length from ffmpeg, in php ?

    9 janvier 2014, par user15063

    I usually use midentify, which spits out a nicely formatted string, that is easy to preg_match

    It however, fails sometimes, so I wanna do a fall-back method via ffmpeg. ffmpeg -i hello.avi spits this out :

       Input #0, avi, from 'hello.avi':
     Metadata:
       encoder         : Nandub v1.0rc2
     Duration: 01:11:16.56, start: 0.000000, bitrate: 1202 kb/s
       Stream #0.0: Video: mpeg4, yuv420p, 640x336 [PAR 1:1 DAR 40:21], 25 tbr, 25 tbn, 25 tbc
       Stream #0.1: Audio: mp3, 48000 Hz, 2 channels, s16, 117 kb/s
    At least one output file must be specified

    I need the width and height of the actual frame size, as well as the duration.

    What would be the best way to extract this from here ? Im not that familiar with regex.