Recherche avancée

Médias (1)

Mot : - Tags -/ogg

Autres articles (103)

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

  • Ecrire une actualité

    21 juin 2013, par

    Présentez les changements dans votre MédiaSPIP ou les actualités de vos projets sur votre MédiaSPIP grâce à la rubrique actualités.
    Dans le thème par défaut spipeo de MédiaSPIP, les actualités sont affichées en bas de la page principale sous les éditoriaux.
    Vous pouvez personnaliser le formulaire de création d’une actualité.
    Formulaire de création d’une actualité Dans le cas d’un document de type actualité, les champs proposés par défaut sont : Date de publication ( personnaliser la date de publication ) (...)

  • Organiser par catégorie

    17 mai 2013, par

    Dans MédiaSPIP, une rubrique a 2 noms : catégorie et rubrique.
    Les différents documents stockés dans MédiaSPIP peuvent être rangés dans différentes catégories. On peut créer une catégorie en cliquant sur "publier une catégorie" dans le menu publier en haut à droite ( après authentification ). Une catégorie peut être rangée dans une autre catégorie aussi ce qui fait qu’on peut construire une arborescence de catégories.
    Lors de la publication prochaine d’un document, la nouvelle catégorie créée sera proposée (...)

Sur d’autres sites (7368)

  • Extracting image frames from mjpeg given 'frame byte offset' and 'frame size' [on hold]

    2 septembre 2015, par Sonia

    I’m looking for code or pointers to funtions or library that I can use to extract image frames from motion jpeg file. In my case, for each image frame, I know the starting byte offset and the size of the frame (size is not always equal for each frame). Given these data, how can I extract each image frames from mjpeg file.

    I have checked the OpenCV library, I can’t find the detail about giving these two inputs to extract frames. Also, I can’t find it in FFmpeg as well. But, I’m not an expert in these two. I hope anyone could give me pointers to this. It can be just a tool or sourcecode (I use C/C++ and MATLAB but I’m open to other language - just to learn how to do it)

    Thank you very much.

  • ffmpeg concatenate with dynamic chunks

    28 octobre 2015, par vongolashu

    The ffmpeg docs for concat lists the following way
    ffmpeg -f concat -i mylist.txt -c copy output

    The mylist.txt file contains file like
    file ’/path/to/file1’
    file ’/path/to/file2’
    file ’/path/to/file3’

    What I am looking is for a way to do this concat in a persistent way where the number of files can keep increasing, for example in livestreaming
    I will be sending chunks of video (mp4 files) of 10 seconds each to my server and want to concat/stitch them together to output to a RTMP stream (for livestreaming)

    If concat is not the proper way to do this, please suggest alternatives.

    Really interested to know how people use the above concept (I hope its how it works) to send video chunks from mobile device for livestreaming

  • H.264 / H.265 Compression of a single Bitmap-Image

    3 septembre 2015, par kevf

    I hope someone can help me.

    I started researching different compression methods to compress Bitmap-Images lossless and lossy. The first methods i used were JPEG, JPEG-2000 and JPEG-XR. Now i want to compare these "standard" ones with H.264 and H.265, maybe they perform as well as they do for video compression.

    I tried using ffmpeg, but i can’t find out which parameters i need, there are plenty... So maybe someone can help me or link me to an Article/Howto or something else ?!

    Thanks a lot !

    EDIT :

    I used the following command :
    ffmpeg -i 01.bmp -c:v libx264 -preset veryslow -crf 40 test.avi

    but this created an 7kb file from an 76,8 kb input file... not very good compression ratio... is there any possibility to achieve more ?