Recherche avancée

Médias (1)

Mot : - Tags -/belgique

Autres articles (83)

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

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

  • MediaSPIP 0.1 Beta version

    25 avril 2011, par

    MediaSPIP 0.1 beta is the first version of MediaSPIP proclaimed as "usable".
    The zip file provided here only contains the sources of MediaSPIP in its standalone version.
    To get a working installation, you must manually install all-software dependencies on the server.
    If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...)

Sur d’autres sites (11637)

  • In FFmpeg, encoding anything lower than slow preset takes video to level 5

    1er septembre 2015, par Leo Zerino

    Why whenever I use any preset lower or equal to slow, it makes my video High@L5 (profile high / level 5) ? It doesn’t make sense to me, I always tought that levels were associeted with frame size, frame rate and data rate only

    I’ve searched all over for a relation between presets and levels in x264 encoding through FFmpeg, but couldn’t find any.

    My only concern is compatibility, since anything above 4 tends to be exotic to most players.

  • FFmpeg on Android ; Convert .olleh file [closed]

    3 février 2020, par athena

    I have downloaded a video for offline viewing from a Korean app named Seezn. I was planning to transfer the video to watch on desktop but the file format is one I’ve never seen before.

    Here are the files on the same folder :

    • 020598814.olleh (2.04 GB) - most likely the video itself
    • 020598814.mpd (42 KB)
    • 20598814.license (4 KB)
    • 1 (File, 0 KB)
    • 2 (File, 0 KB)

    I tried to convert it (using FFmpeg android & desktop) to mp4 but this error showed up instead :

    Invalid data found when processing input

    I want to convert the existing file as much as possible, but if it’s not, is there a way I can just download the video stream on Android ?

    Thank you so much !

  • Convert *.hdr sequences to HDR10 videos ffmpeg

    3 mars 2021, par kmd999

    I have some *.hdr sequences, and I would like to convert them to HDR10 videos.
I have tried using FFmpeg but FFMPEG errors that it can't find videos.

    


    ffmpeg -r 60 -i %d.hdr -pix_fmt yuv444p10le -c:v libx265   \
-x265-params hdr-opt=1:repeat-headers=1:colorprim=bt2020:transfer=smpte2084:colormatrix=bt2020nc:max-cll=0,0 \
-crf 25 -preset veryfast t.mp4


    


    This is what I tried. I think this is generally the code to convert to HDR10 videos. I didn't put master-display there because I don't have information. I wonder if master-display is needed.

    


    I also wonder since this *hdr sequence is likely sRGB, what happens if I specify it to be bt2020 ?