Recherche avancée

Médias (0)

Mot : - Tags -/metadatas

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

Autres articles (69)

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

  • MediaSPIP version 0.1 Beta

    16 avril 2011, par

    MediaSPIP 0.1 beta est la première version de MediaSPIP décrétée comme "utilisable".
    Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
    Pour avoir une installation fonctionnelle, 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 (...)

  • Les autorisations surchargées par les plugins

    27 avril 2010, par

    Mediaspip core
    autoriser_auteur_modifier() afin que les visiteurs soient capables de modifier leurs informations sur la page d’auteurs

Sur d’autres sites (7838)

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