Recherche avancée

Médias (1)

Mot : - Tags -/biographie

Autres articles (74)

  • Participer à sa traduction

    10 avril 2011

    Vous pouvez nous aider à améliorer les locutions utilisées dans le logiciel ou à traduire celui-ci dans n’importe qu’elle nouvelle langue permettant sa diffusion à de nouvelles communautés linguistiques.
    Pour ce faire, on utilise l’interface de traduction de SPIP où l’ensemble des modules de langue de MediaSPIP sont à disposition. ll vous suffit de vous inscrire sur la liste de discussion des traducteurs pour demander plus d’informations.
    Actuellement MediaSPIP n’est disponible qu’en français et (...)

  • Configurer la prise en compte des langues

    15 novembre 2010, par

    Accéder à la configuration et ajouter des langues prises en compte
    Afin de configurer la prise en compte de nouvelles langues, il est nécessaire de se rendre dans la partie "Administrer" du site.
    De là, dans le menu de navigation, vous pouvez accéder à une partie "Gestion des langues" permettant d’activer la prise en compte de nouvelles langues.
    Chaque nouvelle langue ajoutée reste désactivable tant qu’aucun objet n’est créé dans cette langue. Dans ce cas, elle devient grisée dans la configuration et (...)

  • Le profil des utilisateurs

    12 avril 2011, par

    Chaque utilisateur dispose d’une page de profil lui permettant de modifier ses informations personnelle. Dans le menu de haut de page par défaut, un élément de menu est automatiquement créé à l’initialisation de MediaSPIP, visible uniquement si le visiteur est identifié sur le site.
    L’utilisateur a accès à la modification de profil depuis sa page auteur, un lien dans la navigation "Modifier votre profil" est (...)

Sur d’autres sites (8122)

  • Is there any ffmpeg command which could process on bytes [on hold]

    18 juillet 2017, par IPS

    I have built RTSP service using c# code and it is useful to record videos using ffmpeg commands.

    My confusion is i’m getting bytes data in my response not sure whether it has frames and packets.

    So is there any way to pass bytes data into ffmpeg command to record video ?

  • Android Stickers on Video using FFmpeg

    14 mai 2017, par 1234567

    Android Stickers on Video using FFmpeg

    Android doesnot have a native support for adding text and watermark to videos, I would like to add stickers and text to videos using ffmpeg while the command for adding text and stickers is based on ffmpeg , the UI would be dependent on the user, the user can drag, scale, rotate, the stickers, text etc, and position them where he wants

    there are many libraries to use for stickers

    like http://stackoverflow.com/a/35739505/3126760

    however the problem is to get the scale, rotation,position of the sticker on the video that we have, which can be the passed on to the ffmpeg command like

    String[] complexCommand2 = {"-y", "-i", videoFilePath, "-i", imagepath, "-filter_complex","[1:v] format=bgra, rotate=30*PI/180:c=none:ow=rotw(30*PI/180):oh=roth(30*PI/180) [rotate];[rotate]scale=50:50[scale];[0:v][scale] overlay=40:10","-codec:a","copy", outputFilePath};

    Is there a opensource project or tutorial that can help me to achieve this

    it is similar to this image

    android sticker on video ffmpeg

  • avformat/matroskaenc : Simplify writing Void elements

    12 janvier 2020, par Andreas Rheinhardt
    avformat/matroskaenc : Simplify writing Void elements
    

    Reserving space in Matroska works by writing a Void element. And until
    now this worked as follows : The current position was recorded and the
    EBML ID as well as the length field written ; then the new position was
    recorded to know how much more to write. Afterwards the actual writing
    has been performed via ffio_fill().

    But it is unnecessary to explicitly use the positions (obtained via
    avio_tell()) to find out how much still needs to be written, because the
    length of the ID and the length field are known. So rewrite the function
    to no longer use them.

    Also, given that ffio_fill() uses an int parameter and given that no
    current caller (and no sane future caller) will want to reserve several
    GB of space, make the size parameter of put_ebml_void() itself an int.

    Signed-off-by : Andreas Rheinhardt <andreas.rheinhardt@gmail.com>

    • [DH] libavformat/matroskaenc.c