Recherche avancée

Médias (1)

Mot : - Tags -/3GS

Autres articles (65)

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

  • 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

  • MediaSPIP version 0.1 Beta

    16 avril 2011, par

    MediaSPIP 0.1 beta est la première version de MediaSPIP décrétée comme "utilisable".
    Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
    Pour avoir une installation fonctionnelle, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
    Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...)

Sur d’autres sites (9108)

  • how to use glob in ffmpeg [on hold]

    6 août 2013, par tainguyen

    I'm trying to use FFMpeg to create video with several png images that don't follow a sequence number. With the following command line

    ffmpeg -f image2 -r 1 -pattern_type glob -i '*.png' -c:v libx264 mov.mp4

    but it get error :

    [image2 @ 0268b600] Pattern type 'glob' was selected but globbing is
    not supported by this libavformat build '*.png' : Function not implemented

    so, how do I fix this error. I'm using windows 7 64bit

  • Restreaming video containing two languages live with ffmpeg

    9 novembre 2012, par user1810837

    I have a project where i need to restream a live stream which has two languages setup on the audio.
    Spanish on left and English on right

    The stream mapping is :

    Stream #0:0: Video: h264 ([7][0][0][0] / 0x0007), yuv420p, 512x288 [SAR 1:1 DAR 16:9], q=2-31, 1k tbn, 1k tbc
    Stream #0:1: Audio: mp3 ([2][0][0][0] / 0x0002), 44100 Hz, stereo, s16, 18 kb/s

    I need to restream this back live with just the English from the right side or just spanish from the left side, I tried looking everywhere but did not find any type of solution .

    Since this needs to be done live, I can't be using other programs to separate video and audio to get it done.

    This needs to be done through ffmpeg and I wonder if it even capable of doing so with original built or it would need some custom modification.

  • Is there a library for editing MP4 Metadata with Scala or Java ? [on hold]

    8 août 2013, par Zack Yoshyaro

    I've been using ffmpeg for the task by simply calling it from Scala. However, it's remarkably overkill to do so, as ffmpeg requires you to have an output file. So I'm creating entire copies of video files just so I can modify the ID3 tags. It's time, and CPU taxing to say the least.

    Obviously, they can be editing in place (for instance, by manually changing the tags in the property dialog in windows). Surely there's a way to do the same thing programatically ?