Recherche avancée

Médias (0)

Mot : - Tags -/publication

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

Autres articles (54)

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

  • MediaSPIP v0.2

    21 juin 2013, par

    MediaSPIP 0.2 est la première version de MediaSPIP stable.
    Sa date de sortie officielle est le 21 juin 2013 et est annoncée ici.
    Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
    Comme pour la version précédente, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
    Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...)

  • Mise à disposition des fichiers

    14 avril 2011, par

    Par défaut, lors de son initialisation, MediaSPIP ne permet pas aux visiteurs de télécharger les fichiers qu’ils soient originaux ou le résultat de leur transformation ou encodage. Il permet uniquement de les visualiser.
    Cependant, il est possible et facile d’autoriser les visiteurs à avoir accès à ces documents et ce sous différentes formes.
    Tout cela se passe dans la page de configuration du squelette. Il vous faut aller dans l’espace d’administration du canal, et choisir dans la navigation (...)

Sur d’autres sites (8147)

  • how to retrieve text file inside assets folder and pass to ffmpeg command flutter

    29 janvier 2023, par Ammara

    I have created mylist.txt file inside assets folder.
Now I want to pass this text file to ffmpeg command working with flutter.
This is my code.

    


    String commandToExecute =
      'ffmpeg -framerate 2 '
      '-f concat -i mylist.txt -i ${AUDIO_PATH} -s 1080x1620 -y ${OUTPUT_PATH}';


    


    This is my mylist.txt file

    


    file '/storage/emulated/0/Download/000.jpeg'
file '/storage/emulated/0/Download/001.jpeg'
file '/storage/emulated/0/Download/002.jpeg'
file '/storage/emulated/0/Download/003.jpeg'


    


    please help me

    


  • how to install ffmpeg on macbookpro osx 10.8.3 [closed]

    18 avril 2013, par M Irfan

    I have downloaded FFMPEG from this link http://www.ffmpeg.org/download.html under FFmpeg Mac OS X Builds section, all builds come with .7z extension i need help how to configure it on my machine.

  • Node.js merge audio and video streams and pipe it to the client

    29 mars 2023, par nick

    I am working with ytdl-core library and it cannot download high quality videos with audio included because youtube has them in sperate files. Therefore, I need to download audio and video seperately then merge them using ffmpeg. An example of this can be seen here. However, using this way I am required to download the files prior to merging them and I was wondering is there is a way to merge audio and video streams and send the result to the client directly ?

    


    If you believe there is a more efficent way to achieve this, I would like to hear your approach.

    


    Thanks in advance.