Recherche avancée

Médias (1)

Mot : - Tags -/pirate bay

Autres articles (76)

  • 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 (...)

  • Des sites réalisés avec MediaSPIP

    2 mai 2011, par

    Cette page présente quelques-uns des sites fonctionnant sous MediaSPIP.
    Vous pouvez bien entendu ajouter le votre grâce au formulaire en bas de page.

  • 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 (...)

Sur d’autres sites (8362)

  • avformat/matroskaenc : Don't check twice whether to write tags

    15 juin 2022, par Andreas Rheinhardt
    avformat/matroskaenc : Don't check twice whether to write tags
    

    Because not all metadata is written as tags, the Matroska muxer
    filters out the tags that are not written as tags.
    Therefore the code first checks whether a Tag master element
    needs to be opened for a given stream/chapter/attachment/global
    metadata. If the answer turns out to be yes, it is checked again
    whether a given AVDictionaryEntry is written as a tag.
    This commit changes this : The Tag element is opened unconditionally
    and in case it turns out that it was unneeded, it is discarded again.
    This is possible because the Tag element is written into its own
    dynamic buffer.

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

    • [DH] libavformat/matroskaenc.c
  • How to convert image sequence to video using C ? [closed]

    29 mars 2021, par user13899543

    I would like to know a way(s) to convert an image sequence (.bmp) to a video file using C. The video may be compressed or not. The code is to be included in a cross-platform commercial app, so the suggestions need to have permissive licenses.

    &#xA;

    What I have tried :

    &#xA;

    I tried openCV (apache license), but this library seems to be C++ only and should not be used from C.

    &#xA;

    I tried using systems calls from inside the C app to ffmpeg and python-openCV, but of course, this is inconvenient as it forces the client to install extra software.

    &#xA;

    I cannot do dynamic linking to ffmpeg (LGPL) because we cannot fullfill all the EULA requirements (the reverse engineer one, for example).

    &#xA;

    ...

    &#xA;

    So any suggestions ?

    &#xA;

    Thanks !

    &#xA;

  • FFMPEG : Video has same Dimensions even after Crop

    8 juin 2021, par Raj Dhakad

    I am using FFMPEG to do dynamic crop in a video.

    &#xA;

    The problem is, If I crop a 1920x1080 video to 100x100 am still getting a 1920x1080 video with only 100x100 part visible and other part tuned to green.

    &#xA;

    _flutterFFmpeg.execute(&#x27;-y -i $input -filter_complex "[0:v]sendcmd=f=$txtFile,crop" $output&#x27;); &#xA;

    &#xA;

    txtFile :

    &#xA;

    0 crop w 100, crop h 100, crop x 10, crop y 10;&#xA;1 crop w 100, crop h 100, crop x 10, crop y 10;&#xA;2 crop w 100, crop h 100, crop x 10, crop y 10;&#xA;3 crop w 100, crop h 100, crop x 10, crop y 10;&#xA;4 crop w 100, crop h 100, crop x 10, crop y 10;&#xA;5 crop w 100, crop h 100, crop x 10, crop y 10;&#xA;6 crop w 100, crop h 100, crop x 0, crop y 0;&#xA;7 crop w 100, crop h 100, crop x 0, crop y 0;&#xA;8 crop w 100, crop h 100, crop x 0, crop y 0;&#xA;9 crop w 100, crop h 100, crop x 0, crop y 0;&#xA;10 crop w 100, crop h 100, crop x 0, crop y 0;&#xA;11 crop w 100, crop h 100, crop x 0, crop y 0;&#xA;

    &#xA;

    The output Video File :&#xA;https://drive.google.com/file/d/10mjY9toRoMmlvazD6m57gIiuJa8Sqjki/view?usp=sharing

    &#xA;

    As you see, the Output contains Green Sides for the first 5 seconds and the rest of the video is not cropped at all.

    &#xA;