Recherche avancée

Médias (1)

Mot : - Tags -/book

Autres articles (71)

  • Installation en mode ferme

    4 février 2011, par

    Le mode ferme permet d’héberger plusieurs sites de type MediaSPIP en n’installant qu’une seule fois son noyau fonctionnel.
    C’est la méthode que nous utilisons sur cette même plateforme.
    L’utilisation en mode ferme nécessite de connaïtre un peu le mécanisme de SPIP contrairement à la version standalone qui ne nécessite pas réellement de connaissances spécifique puisque l’espace privé habituel de SPIP n’est plus utilisé.
    Dans un premier temps, vous devez avoir installé les mêmes fichiers que l’installation (...)

  • Récupération d’informations sur le site maître à l’installation d’une instance

    26 novembre 2010, par

    Utilité
    Sur le site principal, une instance de mutualisation est définie par plusieurs choses : Les données dans la table spip_mutus ; Son logo ; Son auteur principal (id_admin dans la table spip_mutus correspondant à un id_auteur de la table spip_auteurs)qui sera le seul à pouvoir créer définitivement l’instance de mutualisation ;
    Il peut donc être tout à fait judicieux de vouloir récupérer certaines de ces informations afin de compléter l’installation d’une instance pour, par exemple : récupérer le (...)

  • MediaSPIP v0.2

    21 juin 2013, par

    MediaSPIP 0.2 is the first MediaSPIP stable release.
    Its official release date is June 21, 2013 and is announced here.
    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 (...)

Sur d’autres sites (4811)

  • Recorded video from iPhone rotated 180 degrees on FB, Vimeo, Youtube

    17 février 2017, par Junho

    it’s my first question.

    My question is this. I developed some app and the app records a video.

    The problem is that the recorded video on iPhone looks rotated 180 degrees in FB, Vimeo, Youtube after sharing it. But it appears normally on iMessage, Instagram. I’m using FFmpeg while recording it.

    Could you let me know the cause of the problem and the solution on the code ?

  • Why my youtube video made with ffmpeg only shows 360P and 1080P on mobile devices but works fine on desktop ?

    1er janvier 2020, par CheeseWithMe

    I am trying to create a video from an image and sound file with ffmpeg.

    This is what I use :

    ffmpeg -y -loop 1 -r 6  -i current_image.png -i current_audio.wav -shortest -c:v libx264 -preset ultrafast -tune stillimage -pix_fmt yuv420p -c:a aac out.mp4

    But uploading this on youtube will display only in 360P and 1080P on mobile devices while on Desktop I have all the resolutions up to 1080P.

    It has the same effect with the command from FFmpeg wiki on enconding from youtube

    ffmpeg -loop 1 -framerate 2 -i input.png -i audio.m4a -c:v libx264 -preset medium -tune stillimage -crf 18 -c:a copy -shortest -pix_fmt yuv420p output.mkv

    I have no idea why is this happening, I could use some guidance.

  • Youtube DASH stream through to iOS format

    29 juillet 2014, par viperfx

    I have a stream link of a DASH codec format audio file using youtube-dl. It plays fine in the browser but on iOS the DASH codec is not supported. I am wondering how I can use ffmpeg to transcode the HTTPS stream live and then resend it out an AAC encoded m4a file or something that the iOS SDK supports through streaming - mp3 also works. I think using something such as nginx as the middleware inbetween would be a good idea. I can use python app to receive the request /videoID, it would grab the stream link and transcode it live feed it to nginx which would serve the correctly transcoded format back to the iOS app.

    Does anyone have any suggestions/ideas on how to achieve this ? I am stuck on the details on the ffmpeg bit.