Recherche avancée

Médias (91)

Autres articles (52)

  • Use, discuss, criticize

    13 avril 2011, par

    Talk to people directly involved in MediaSPIP’s development, or to people around you who could use MediaSPIP to share, enhance or develop their creative projects.
    The bigger the community, the more MediaSPIP’s potential will be explored and the faster the software will evolve.
    A discussion list is available for all exchanges between users.

  • Des sites réalisés avec MediaSPIP

    2 mai 2011, par

    Cette page présente quelques-uns des sites fonctionnant sous MediaSPIP.
    Vous pouvez bien entendu ajouter le votre grâce au formulaire en bas de page.

  • Personnaliser en ajoutant son logo, sa bannière ou son image de fond

    5 septembre 2013, par

    Certains thèmes prennent en compte trois éléments de personnalisation : l’ajout d’un logo ; l’ajout d’une bannière l’ajout d’une image de fond ;

Sur d’autres sites (13926)

  • How to livestream on Youtube from a video in Google Drive without download ? [closed]

    6 septembre 2023, par Ngọc Hoa Dương

    I have a bunch of video in Google Drive with large size of each video. Instead of download it to local and livesream, Have any solutions that I can livestream from Google Drive on Youtube ?

    


    I try to use ffmpeg but seems no support for google drive

    


  • avformat/dashenc : write a capture time Producer Reference Time element when none...

    18 février 2020, par James Almer
    avformat/dashenc : write a capture time Producer Reference Time element when none is provided by the encoder
    

    This way, the element will be present in any scenario when the write_prft option is used.

    Signed-off-by : James Almer <jamrial@gmail.com>

    • [DH] libavformat/dashenc.c
  • How to reduce compression time and maintain quality of video at same time, FFMPEG library android

    14 septembre 2021, par Ankit Ostwal

    i am using FFMPEG library to compress video and able to achieve a normal quality also. But if i try improving the resolution, compression time increases. The output should be such where a standard video output is achieved, along with very high quality video, maintaining the aspect ratio as well. Below is the code i am using, please suggest me ways to improvise this. Help is appreciated. Thanks

    &#xA;

                    MediaModifierTypes.VIDEO_COMPRESS -> return arrayOf(&#xA;                    "-y",&#xA;                    "-i",&#xA;                    videoPath,&#xA;                    "-vf",&#xA;                    "scale=1280:-1",&#xA;                    "-vcodec",&#xA;                    "mpeg4",&#xA;                    "-b:v",&#xA;                    "2M",&#xA;                    "-b:a",&#xA;                    "48000",&#xA;                    outputFilePath&#xA;                )&#xA;

    &#xA;