Recherche avancée

Médias (1)

Mot : - Tags -/net art

Autres articles (81)

  • 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

  • Le plugin : Podcasts.

    14 juillet 2010, par

    Le problème du podcasting est à nouveau un problème révélateur de la normalisation des transports de données sur Internet.
    Deux formats intéressants existent : Celui développé par Apple, très axé sur l’utilisation d’iTunes dont la SPEC est ici ; Le format "Media RSS Module" qui est plus "libre" notamment soutenu par Yahoo et le logiciel Miro ;
    Types de fichiers supportés dans les flux
    Le format d’Apple n’autorise que les formats suivants dans ses flux : .mp3 audio/mpeg .m4a audio/x-m4a .mp4 (...)

  • ANNEXE : Les plugins utilisés spécifiquement pour la ferme

    5 mars 2010, par

    Le site central/maître de la ferme a besoin d’utiliser plusieurs plugins supplémentaires vis à vis des canaux pour son bon fonctionnement. le plugin Gestion de la mutualisation ; le plugin inscription3 pour gérer les inscriptions et les demandes de création d’instance de mutualisation dès l’inscription des utilisateurs ; le plugin verifier qui fournit une API de vérification des champs (utilisé par inscription3) ; le plugin champs extras v2 nécessité par inscription3 (...)

Sur d’autres sites (11381)

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

    


  • ffmpeg, libav : Recording RTSP at reduced frame rate without re-encoding

    6 janvier 2021, par synchronice

    I'm trying to record a chunk of an RTSP video stream (say 5 minutes) to an mp4 file. The RTSP video stream is H.264 encoded and at 30 FPS. I'd like to record it at 10 FPS by dropping frames, without re-encoding (benefit : uses less CPU, lossless).

    


      

    • Is this possible ?
    • 


    • How do I do this ? Examples using the libav libraries are most useful since I'm writing an application, but an ffmpeg command is also helpful.
    • 


    


    Thanks in advance.