Recherche avancée

Médias (0)

Mot : - Tags -/masques

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

Autres articles (92)

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

  • How to do precise frame cut with ffmpeg ?

    25 juillet 2020, par Menglun Li

    I tried to cut multiple big videos into many small pieces. I know I can cut and export the small pieces one by one with "Premiere Elements", however that takes a lot time to export them manually. I couldn't find a way to do batch export in "Premiere Elements".

    


    I wrote down the starting and ending points of the small videos from Premiere Elements' timeline viewer, then I created a batch file to use ffmpeg for batch cutting. Below is one of the cutting command in the batch file.

    


    ffmpeg -i input.mp4 -ss 00:20:45.09 -to 00:23:01.00 -c:v libx264 -c:a aac output5.mp4 


    


    I compared the video that was cut by ffmpeg and the video was exported by Premiere Elements. I found sometime they are not starting and ending at the same frame, and it is not consistent either. Both the starting and ending frame that was cut by ffmpeg can drift forward or backward 6-9 frames from the frame number showed in Premiere Elements.

    


    How do I make sure ffmpeg has the precise frame cut ? Thanks in advance.

    


  • Nginx RTMP - restream rtmp or hls with 1h delay

    15 août 2015, par Michał Paduch

    I want to show users with 1h deley my rtmp stream. How to accomplish this task ?
    I think about solution :
    input : rtmp ://stream...
    Record input into small files, e.g such way :

    recorder chunked {
               record all;
               record_interval 15s;
               record_suffix -%Y-%m-%d-%H%M.flv;
               record_path /home/user/capture/chunked;
           }

    Then only how to stream again this small files with hls or rtmp back to end user ?

  • Seeking Guidance on Audio Development Libraries for Playing Various Music Formats on iOS [closed]

    3 décembre 2023, par FaiChou

    I am exploring audio development and am overwhelmed by the numerous libraries available :

    


      

    • AVFoundation
    • 


    • MediaPlayer
    • 


    • AVFAudio
    • 


    • Audio Engine
    • 


    • CoreAudio
    • 


    • AudioToolbox
    • 


    • Audio Unit
    • 


    


    Which of these should I use to play both network or local music files (flac/wav/mp3/aac/wma/ogg) ? What are their specific roles ?

    


    My understanding is that I should use ffmpeg for demuxing to unpackage, then decode the stream to get PCM samples, possibly using Audio Engine for playback. Is this a software decoding method ? For Apple-supported formats like mp3, can I bypass ffmpeg for decoding ? Which library would be most suitable in this case ?

    


    Additionally, how do I extract metadata (song name, artist, cover, lyrics, etc.) from music files ? Apple's own solutions seem to support only ID3 or iTunes tags. How should I handle other formats like wav/flac ?

    


    The two links below are the resources I've referenced, but they seem outdated. My search for newer, reliable explanations has been fruitless.