Recherche avancée

Médias (0)

Mot : - Tags -/objet éditorial

Aucun média correspondant à vos critères n’est disponible sur le site.

Autres articles (44)

  • Websites made ​​with MediaSPIP

    2 mai 2011, par

    This page lists some websites based on MediaSPIP.

  • Modifier la date de publication

    21 juin 2013, par

    Comment changer la date de publication d’un média ?
    Il faut au préalable rajouter un champ "Date de publication" dans le masque de formulaire adéquat :
    Administrer > Configuration des masques de formulaires > Sélectionner "Un média"
    Dans la rubrique "Champs à ajouter, cocher "Date de publication "
    Cliquer en bas de la page sur Enregistrer

  • Keeping control of your media in your hands

    13 avril 2011, par

    The vocabulary used on this site and around MediaSPIP in general, aims to avoid reference to Web 2.0 and the companies that profit from media-sharing.
    While using MediaSPIP, you are invited to avoid using words like "Brand", "Cloud" and "Market".
    MediaSPIP is designed to facilitate the sharing of creative media online, while allowing authors to retain complete control of their work.
    MediaSPIP aims to be accessible to as many people as possible and development is based on expanding the (...)

Sur d’autres sites (4563)

  • Cannot convert file format using ffmeg in php [on hold]

    8 décembre 2015, par user3653474

    I want to convert video file format, i am using ffmpeg with php but the file does not get converted into other formats with the bellow code, Check this for reference http://blog.sajithmr.me/ffmpeg-sample-code/ printing file info is working as given in the link :

    $path_to_file='D:/wamp/www/myproject/SampleVideo.mp4';
    $Destination='D:/wamp/www/myproject/SampleVideo1.flv';
    extension_loaded('ffmpeg') or die('Error in loading ffmpeg');
    exec(`ffmpeg -i `.$path_to_file.` `.$Destination);

    Please help to solve my issue.

  • Getting "Unrecognized option '1'" when using "-map_metadata -1" to erase metadata with ffmpeg [closed]

    20 novembre 2024, par Nautilus Era

    Edit :
    
As said in the header, this question is not about programing and I will ask it on the appropriate Stack.
    
My confusion came from the fact that I am using Python to make my calls to the shell, however, it has nothing to do with the problem I am trying to solve.
    
Thank you for your time and sorry for the bother.

    



    


    I was trying to erase metadata from a file using ffmpeg using the
following command :

    


    ffmpeg –i $file_path –map_metadata -1 –c copy $stripped_video_output


    


    Where $file_path and $stripped_video_output are variables containing
their respective path.

    


    ffmpeg gave the answer :

    


    Unrecognized option '1'. 
Error splitting the argument list: Option not found


    


    I am using Debian 12.

    


    I tried with both the repository's version as well as a compiled version
of ffmpeg and I tried on two different computers.

    


    If anyone can help with that, I would appreciate it.

    


    Thank you in advance and have a good one.

    


  • Crackling sound when recording audio with ffmpeg

    17 septembre 2024, par Victor Basso

    I'm trying to record from a microphone and webcam on MacOS with the following command :

    


    ffmpeg -f avfoundation -framerate 30 -i "0:0" ~/recorded.mp4

    


    My result has crackling in the audio.

    


    I'm familiar with this problem when you use a DAW : you solve it by increasing the sample buffer. The idea is that audio samples coming from your interface/mic are not coming in a consistent or fast enough rate, so the missing samples being filled with zeroes causes the crackling sound. To avoid missing samples you want the recording software to wait longer for samples accumulating in a buffer before they're processed.

    


    How can you configure such buffer for ffmpeg ?