Recherche avancée

Médias (3)

Mot : - Tags -/image

Autres articles (27)

  • Publier sur MédiaSpip

    13 juin 2013

    Puis-je poster des contenus à partir d’une tablette Ipad ?
    Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir

  • L’espace de configuration de MediaSPIP

    29 novembre 2010, par

    L’espace de configuration de MediaSPIP est réservé aux administrateurs. Un lien de menu "administrer" est généralement affiché en haut de la page [1].
    Il permet de configurer finement votre site.
    La navigation de cet espace de configuration est divisé en trois parties : la configuration générale du site qui permet notamment de modifier : les informations principales concernant le site (...)

  • Supporting all media types

    13 avril 2011, par

    Unlike most software and media-sharing platforms, MediaSPIP aims to manage as many different media types as possible. The following are just a few examples from an ever-expanding list of supported formats : images : png, gif, jpg, bmp and more audio : MP3, Ogg, Wav and more video : AVI, MP4, OGV, mpg, mov, wmv and more text, code and other data : OpenOffice, Microsoft Office (Word, PowerPoint, Excel), web (html, CSS), LaTeX, Google Earth and (...)

Sur d’autres sites (6182)

  • ffmpeg binary installed but video play and decode error [closed]

    27 mars 2022, par irbad

    I built a website like YouTube but I have some errors that I can't solve. I upload a video with webm. Format, video uploaded successfully but not play. Ffmpeg binary already installed. Video converted to different formats (240p, 360p, 720p, 1080p, 2k) but not play. Please help me to solve this problem.

    


    Thank you 😊 in advance

    


  • Create DVD-Video Menu's with ff-mpeg

    28 février 2012, par Bat Masterson

    Is it possible to create a DVD-Video Menu with ff-mpeg only ?

    I may be misunderstanding but I don't think that ff-mpeg alone is capable of creating a dvd menu.

    I've found some examples using ff-mpeg and various other tools but nothing solely ff-mpeg. The other tools are all linux and I'm stuck in windows.

    If someone would clear that up for me that would be great. Also if you know of a library for creating dvd menus or a command line utility would also help.

    Thanks In Advance

  • FFMPEG with python : Only audio is playing when trying to replace the audio in video

    5 mai 2021, par Danny

    Hey guys I am a noob with ffmpeg and trying to replace the audio with a new audio, I have gone through some SO questions and still having trouble solving the problem. As of now, I am getting only the audio with the specified duration and only able to play it in vlc player. The video is not showing.

    


    Can someone tell me how to properly do it ?

    


    This is the command.

    


    process = subprocess.call([settings.VIDEO_ENCODING_FFMPEG_PATH, 
                "-probesize", "10M", "-i", input_file_path, "-i", input_audio_path, "-crf", "28",
                "-ss", 0, "-t", 50, "-vcodec", "libx264", "-b:v", "4M", "-preset", "medium",
                "-map", '0:v', "-map", "1:a", "-b:a", "64k", output_file_path])


    


    Thanks in advance.