Recherche avancée

Médias (1)

Mot : - Tags -/ogv

Autres articles (61)

  • Mise à jour de la version 0.1 vers 0.2

    24 juin 2013, par

    Explications des différents changements notables lors du passage de la version 0.1 de MediaSPIP à la version 0.3. Quelles sont les nouveautés
    Au niveau des dépendances logicielles Utilisation des dernières versions de FFMpeg (>= v1.2.1) ; Installation des dépendances pour Smush ; Installation de MediaInfo et FFprobe pour la récupération des métadonnées ; On n’utilise plus ffmpeg2theora ; On n’installe plus flvtool2 au profit de flvtool++ ; On n’installe plus ffmpeg-php qui n’est plus maintenu au (...)

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

  • Dépôt de média et thèmes par FTP

    31 mai 2013, par

    L’outil MédiaSPIP traite aussi les média transférés par la voie FTP. Si vous préférez déposer par cette voie, récupérez les identifiants d’accès vers votre site MédiaSPIP et utilisez votre client FTP favori.
    Vous trouverez dès le départ les dossiers suivants dans votre espace FTP : config/ : dossier de configuration du site IMG/ : dossier des média déjà traités et en ligne sur le site local/ : répertoire cache du site web themes/ : les thèmes ou les feuilles de style personnalisées tmp/ : dossier de travail (...)

Sur d’autres sites (10914)

  • How to convert a UYVY video frame to different size in ffmpeg

    25 juillet 2020, par Gerry

    I need to convert a UYUY video frame between different resolution, 1080P to 720P for example

    


    I am targeting win10 and I am using visual studio,

    


    As I have learned so far that seems ffmpeg can do it, it would be really appreciate if
someone show me piece of code on how to do it

    


    Notice that I have already received the video frame data from network and hold it in memory.

    


    Thanks in advance

    


  • Selected png images to gif using ffmpeg or imagemagick

    28 avril 2021, par Ghajik

    I want to convert png to gif and i want to mention which are the frames i want to combine
eg : frame1.png and frame2.png.
I've tried using ffmpeg -i frames/%03d.png -vf fps=20 logo.gif but it is considering all the images in that directory, but i want only two images in that directory to be included in the gif i want to create. Thank you in advance.

    


  • Parsing x264 to LibAV in C

    26 mai 2018, par Stephan Pich

    For a Project in School I have to encode and mux a Yuv File to mp4 using the Libav and lib x264 explicitly. I’ve already managed to encode the File to h264 using the libx264 but now i’m stuck muxing them into mp4.

    I know that I’ve to write the NALU Packages into the file but I’ve no Idea how to turn the NALU to AVFrame or AVPacket.

    Thanks for your help in advance.