Recherche avancée

Médias (91)

Autres articles (59)

  • Gestion des droits de création et d’édition des objets

    8 février 2011, par

    Par défaut, beaucoup de fonctionnalités sont limitées aux administrateurs mais restent configurables indépendamment pour modifier leur statut minimal d’utilisation notamment : la rédaction de contenus sur le site modifiables dans la gestion des templates de formulaires ; l’ajout de notes aux articles ; l’ajout de légendes et d’annotations sur les images ;

  • Dépôt de média et thèmes par FTP

    31 mai 2013, par

    L’outil MédiaSPIP traite aussi les média transférés par la voie FTP. Si vous préférez déposer par cette voie, récupérez les identifiants d’accès vers votre site MédiaSPIP et utilisez votre client FTP favori.
    Vous trouverez dès le départ les dossiers suivants dans votre espace FTP : config/ : dossier de configuration du site IMG/ : dossier des média déjà traités et en ligne sur le site local/ : répertoire cache du site web themes/ : les thèmes ou les feuilles de style personnalisées tmp/ : dossier de travail (...)

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

  • Code to combine multiple media files using ffmpeg

    21 mars 2013, par user2193172

    I am new to ffmpeg

    I am trying to combine multiple media files using ffmpeg, I know the ffmpeg concatenation protocol allows this through a command line arguement. I want to know if the C code for this function is available anywhere, so that I can include the same in my program. If not, I would really appreciate if someone could post any suggestions on how to do this. Basically, I want to combine multiple files without doing the decoding and encoding of files.

    I tried copying the data from one file to another, while I was able to create a new file, i couldn't play it back.

    I searched the ffmpeg library but was unable to locate the code on how the concatenation function works.

  • How to downloaded embedded videos on Instagram that have multiple media network requests ? (ffmpeg / curl)

    21 octobre 2022, par flhu

    I was wondering whether it is still possible to download the stories on Instagram that have multiple media network requests nowadays. Previously, I could simply download them using the Firefox Media Page Info View. This is still possible for some content such as reels or by using ffmpeg / curl. I have posted the network behaviour when I load a story on Instagram and a Reel on Instagram. I could not figure out which of the network requests is the relevant one (assuming it is the request with the biggest size) and when downloading it, the VLC player does not recognise the video.

    


    Instagram Reel Network Request

    


    Instagram Stories Network Request

    


    When using the Firefox Media Page Info View, it is possible to download the content from the reel directly whereas the mp4 media file is greyed out.

    


    I tried to copy the URL from the network request using :

    


    ffmpeg -i  -c copy  


    


    Copying the corresponding curl request but also only works for the Reel where the HTTP response status codes is 206 (Reel) instead of 200 (Story).

    


  • Batch processing using globs with libfdkaac and compiled libraries with media-autobuild-suite

    22 avril 2021, par Josh Vamos

    I am trying to process a folder full of media in .WAV format.
I have compiled ffmpeg with the media-autobuild-master and have the fdkaac libraries but I cannot figure out how I would do batch conversion. After compiling with the suite you have executables for fdkaac.exe which I am using directly in powershell.

    


    I have looked at the Execute "ffmpeg" command in a loop

    


    I can't wrap my head around how I would point the program to the correct file path while keeping the syntax intact.

    


    .\fdkaac.exe -m 3 'X:\PATH\file.wav' -o 'X:\PATH\file.m4a'


    


    Should I be using ffmpeg with a flag to enable fdkaac instead ?