Recherche avancée

Médias (1)

Mot : - Tags -/net art

Autres articles (50)

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

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

Sur d’autres sites (10230)

  • What CRF matches with a JPEG compression rate

    21 janvier 2017, par Xlsx

    I have a very basic program that I wrote in python that takes a video from a webcam and saves it to an mp4 file. Each frame is saved as a jpeg file, and then I use ffmpeg to merge all the frames together. There are two different compression options - the JPEG compression quality, and the mp4 CRF. Which CRF should I use relative to the JPEG compression quality so that the mp4 file is the smallest file size it can be, while not losing data from the already lossy jpeg and not adding extra data to the mp4 ?

    For example, I save my JPEGs with a quality of 30
    When I use ffmpeg, I set the -crf parameter to 38
    When I look at the final mp4 file, I have lost quality from the JPEGs

  • Cut audio / Video using ffmpeg on the server [on hold]

    8 décembre 2016, par Mohammed Hussein

    I am rebuilding a project that I built with meteor js from scratch using asp.net mvc and c#

    the project is basically used to cut audio and video given the start time and the end time using ffmpeg on the server,

    but I am facing a problem in both projects,

    if during the process of cutting the audio / video file i lost my internet connection the operation doesn’t complete. what i want is that the operation should complete and write the changes to the database and create the new file on the server despite the fact that i am no longer connected .

    is that possible to do or not ?

  • Generate a 2-fps mp4 from images using FFMPEG

    1er juin 2018, par Kagemand Andersen

    Need to create a video from a series of images. The video needs to have a low frame rate. This is the command I use to create the video.

    ffmpeg.exe -r 2 -i images/%3d.jpg -vcodec libx264 -pix_fmt yuvj420p output.mp4

    The problem is that, while the video works just fine when played through a HTML5 video, it doesn’t really work when the file is downloaded locally and played through either the Windows 10 default video player or even VLC (weirdly, the default video player works better).

    Can anyone explain why this is happening and possibly how to fix the issue ?