Recherche avancée

Médias (91)

Autres articles (3)

  • Pas question de marché, de cloud etc...

    10 avril 2011

    Le vocabulaire utilisé sur ce site essaie d’éviter toute référence à la mode qui fleurit allègrement
    sur le web 2.0 et dans les entreprises qui en vivent.
    Vous êtes donc invité à bannir l’utilisation des termes "Brand", "Cloud", "Marché" etc...
    Notre motivation est avant tout de créer un outil simple, accessible à pour tout le monde, favorisant
    le partage de créations sur Internet et permettant aux auteurs de garder une autonomie optimale.
    Aucun "contrat Gold ou Premium" n’est donc prévu, aucun (...)

  • Selection of projects using MediaSPIP

    2 mai 2011, par

    The examples below are representative elements of MediaSPIP specific uses for specific projects.
    MediaSPIP farm @ Infini
    The non profit organizationInfini develops hospitality activities, internet access point, training, realizing innovative projects in the field of information and communication technologies and Communication, and hosting of websites. It plays a unique and prominent role in the Brest (France) area, at the national level, among the half-dozen such association. Its members (...)

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

  • Merge mp3 files using FFmpeg on Android

    13 mai 2017, par Ali

    I am trying to merge two mp3 files using this command :

    ffmpeg -i "concat:/storage/emulated/0/Recordings/oneone.mp3|/storage/emulated/0/Recordings/twone.mp3" -c copy /storage/emulated/0/Recordings/concated.mp3

    but get this error :

    "concat:/storage/emulated/0/Recordings/oneone.mp3|/storage/emulated/0/Recordings/twone.mp3": No such file or directory

    Even though the both files exist in the directory. I have written this command according to the documentation : https://trac.ffmpeg.org/wiki/Concatenate#protocol

    How do I fix this ? Please help me.

  • FFMPEG image to video with transition effects

    26 avril 2017, par Ravi Rupareliya

    I have used this command to concate multiple images with transition effects to create video.

    "-y -f concat -safe 0 -i <txt file="file" path="path"> -filter_complex [0:0][1:0]concat=n=2:v=0:a=1[out] -map [v] -shortest -vf fps=40 -pix_fmt yuv420p <video path="path">"
    </video></txt>

    But it is showing error :

    Stream specifier ':0' in filtergraph description [0:0][1:0]concat=n=2:v=0:a=1[out] matches no streams.

    Here is my txt file

    file '/storage/emulated/0/image1.jpg'
    duration 5
    file '/storage/emulated/0/image2.jpg'
    duration 5
    file '/storage/emulated/0/image3.jpg'

    However if i am not applying any filter effect, it is successfully creating a video.

  • How to convert mpd file to mp4 ? [on hold]

    18 avril 2017, par Aminie

    I have a MPD file, and i want to convert it to a MP4 file using node.js so it could be saved into an object storage.
    Is there a simple way of doing so ?
    I used mpeg-dash player to play the video, but couldn’t find a way of saving the file through my code.