Recherche avancée

Médias (91)

Autres articles (97)

  • MediaSPIP 0.1 Beta version

    25 avril 2011, par

    MediaSPIP 0.1 beta is the first version of MediaSPIP proclaimed as "usable".
    The zip file provided here only contains the sources of MediaSPIP in its standalone version.
    To get a working installation, you must manually install all-software dependencies on the server.
    If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...)

  • Multilang : améliorer l’interface pour les blocs multilingues

    18 février 2011, par

    Multilang est un plugin supplémentaire qui n’est pas activé par défaut lors de l’initialisation de MediaSPIP.
    Après son activation, une préconfiguration est mise en place automatiquement par MediaSPIP init permettant à la nouvelle fonctionnalité d’être automatiquement opérationnelle. Il n’est donc pas obligatoire de passer par une étape de configuration pour cela.

  • Gestion générale des documents

    13 mai 2011, par

    MédiaSPIP ne modifie jamais le document original mis en ligne.
    Pour chaque document mis en ligne il effectue deux opérations successives : la création d’une version supplémentaire qui peut être facilement consultée en ligne tout en laissant l’original téléchargeable dans le cas où le document original ne peut être lu dans un navigateur Internet ; la récupération des métadonnées du document original pour illustrer textuellement le fichier ;
    Les tableaux ci-dessous expliquent ce que peut faire MédiaSPIP (...)

Sur d’autres sites (10389)

  • ffmpeg result to a tempfile

    26 septembre 2012, par user1165201

    I am new to python and ffmpeg. I have a following question to ask.

    If I run the following command from command-line and it works.

    ffmpeg -i  1.flv  temp_filename

    If I put it in a program

      temp_file_handle, temp_filename = tempfile.mkstemp('.flv')

      command = "ffmpeg -i " + newvideo.location + " "+ temp_filename

      out = subprocess.Popen(command, stdout=subprocess.PIPE, stderr=subprocess.PIPE, shell=True)
      res = out.communicate()

    The generated video didn't write to the tem_filename. Why ?

  • ffmpeg merge video and audio result empty file [on hold]

    10 février 2015, par ahmed-ibrahem

    I have empty file when try to merge mp4 & mp3 to mp4

    Code : ( not working )

    ffmpeg -i video.mp4 -i audio.mp3 output.mp4

    Code : ( working )

    ffmpeg -i video.mp4 -i audio.mp3 -vcodec copy -acodec copy output.mp4

    but using above working command instead of mp3 when i try wav result empty file only

    Note : This is where i got the <a href="https://github.com/JayH5/android-ffmpeg-cmdline" rel="nofollow">ffmpeg for android</a>

    Can any one help me to make it merge the audio.wav with the video.mp4 ?

  • How to check result mp4's integrity ?

    11 juin 2018, par Al.T.Os

    There are 4 categories, each Categories has 10 mp4 files.

    I used ffmpeg to concatenate 4 categories, such as cat1 | cat2 | cat3 | cat4.

    With simple calculation, I get 10000 concatenated mp4 files.

    Here is the problem. There are some mp4 files among the 10000 files that are wrongly encoded. So I can’t play the files. I found 100 files so far.

    Is there any options that I can check the concatenated mp4 is correctly encoded ? Or can I verify all of them without playing ?

    I’ve searched Stack Overflow and seen ffmpeg’s options but I’m not used to ffmpeg and it looks it’d take super long but I got no much time.