Recherche avancée

Médias (1)

Mot : - Tags -/iphone

Autres articles (111)

  • 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

  • Script d’installation automatique de MediaSPIP

    25 avril 2011, par

    Afin de palier aux difficultés d’installation dues principalement aux dépendances logicielles coté serveur, un script d’installation "tout en un" en bash a été créé afin de faciliter cette étape sur un serveur doté d’une distribution Linux compatible.
    Vous devez bénéficier d’un accès SSH à votre serveur et d’un compte "root" afin de l’utiliser, ce qui permettra d’installer les dépendances. Contactez votre hébergeur si vous ne disposez pas de cela.
    La documentation de l’utilisation du script d’installation (...)

  • Les formats acceptés

    28 janvier 2010, par

    Les commandes suivantes permettent d’avoir des informations sur les formats et codecs gérés par l’installation local de ffmpeg :
    ffmpeg -codecs ffmpeg -formats
    Les format videos acceptés en entrée
    Cette liste est non exhaustive, elle met en exergue les principaux formats utilisés : h264 : H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10 m4v : raw MPEG-4 video format flv : Flash Video (FLV) / Sorenson Spark / Sorenson H.263 Theora wmv :
    Les formats vidéos de sortie possibles
    Dans un premier temps on (...)

Sur d’autres sites (7135)

  • FFmpeg save HLS stream to MP4 audio out of sync

    5 octobre 2017, par Alessandro

    I’m trying to save an HLS stream to an MP4 on Android.

    First tried this command

    "-y -i " + url + " -to " + duration + " " + filePath

    but video quality result is very very low...

    Then someone suggested to try this command

    "-y -i " + url + " -c copy -bsf:a aac_adtstoasc -to " + duration + " " + filePath

    and quality is very high but audio is many seconds out of sync.

    Any idea on how to get audio in sync and good output quality ?

  • Save metadata while converting video to images FFmpeg

    17 février 2020, par e480582

    When I convert a video to its constituent images (ffmpeg -i video.MOV img1%03d.png), ffmpeg drops all the metadata. How would I save the metadata while converting ? Is there any way to have it also increment the timestamp for each frame ?

  • Can't save metadata when convert video files using python ffmpeg

    24 novembre 2018, par Oliver King

    I tried to us ffmpy library to convert .MOV files into .MP4.
    Converting works well, but I can’t save metadata like title and artist.

    ff = ffmpy.FFmpeg(
       inputs={'input.mov': None},
       outputs={'output.mp4': None},
       global_options=[
           '-metadata name=james',
           '-metadata artist=Beauty and Beast'
       ]
    )

    ff.run()