Recherche avancée

Médias (21)

Mot : - Tags -/Nine Inch Nails

Autres articles (79)

  • Amélioration de la version de base

    13 septembre 2013

    Jolie sélection multiple
    Le plugin Chosen permet d’améliorer l’ergonomie des champs de sélection multiple. Voir les deux images suivantes pour comparer.
    Il suffit pour cela d’activer le plugin Chosen (Configuration générale du site > Gestion des plugins), puis de configurer le plugin (Les squelettes > Chosen) en activant l’utilisation de Chosen dans le site public et en spécifiant les éléments de formulaires à améliorer, par exemple select[multiple] pour les listes à sélection multiple (...)

  • 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 v0.2

    21 juin 2013, par

    MediaSPIP 0.2 est la première version de MediaSPIP stable.
    Sa date de sortie officielle est le 21 juin 2013 et est annoncée ici.
    Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
    Comme pour la version précédente, 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 (...)

Sur d’autres sites (9807)

  • FFMPEG - Option to add or omit profiles if input is not conditional when encoding to HLS ?

    20 août 2022, par bui the vuong

    I want my ffmpeg statement to look like this :

    


    ffmpeg -i rtmp://localhost:1935/$app/$name -async 1 -vsync -1
                    if(gte(ih,240),'-c:v libx264 -c:a aac -b:v 256k -b:a 64k -g 2 -vf "scale=426:trunc(ow/a/2)*2" -tune zerolatency -preset superfast -f flv rtmp://localhost:1935/show/$name_240','')
                    if(gte(ih,360),'-c:v libx264 -c:a aac -b:v 768k -b:a 128k -g 2 -vf "scale=720:trunc(ow/a/2)*2" -tune zerolatency -preset superfast -f flv rtmp://localhost:1935/show/$name_360','')
                    if(gte(ih,480),'-c:v libx264 -c:a aac -b:v 1024k -b:a 128k -g 2 -vf "scale=960:trunc(ow/a/2)*2" -tune zerolatency -preset superfast -f flv rtmp://localhost:1935/show/$name_480','')
                    if(gte(ih,720),'-c:v libx264 -c:a aac -b:v 1920k -b:a 128k -g 2 -vf "scale=1280:trunc(ow/a/2)*2" -tune zerolatency -preset superfast -f flv rtmp://localhost:1935/show/$name_720','')
                    -c copy -f flv rtmp://localhost:1935/show/$name_src;


    


    Can I do the same with ffmpeg ?

    


  • Converting DPX to JPEG2k in RGB using FFMPEG

    28 juin 2017, par Alarmguy66

    I am attempting to use FFMPEG to convert a 2k DPX sequence that is 10 bit RGB into a Lossless JPEG2k wrapped in MXF, 10 bit with RGB colorspace, wrapped in MXF, Op1a. The following is my code -

    ffmpeg -y -i \PATH\test\0%05d.dpx -r 24 -c:v libopenjpeg -pred 1 c :\temp\123.mxf

    The conversion works in almost every fashion, the exception being the JPEG file is output as YUV with every conversion attempt. I have tried using the jpeg2000 library as well, that always gives an 8 bit output, YUV.

    FFMPEG -version responds - N-85179-gdc1a1b8

    There is no audio accompanying the video.

  • Audio Video Editing in Python : How to do it ? [on hold]

    12 mai 2019, par DoakCode

    Does anyone know how to do it ? It’s a bit more complex then then the usual docs I’ve read, so I don’t know where to start and I’d appreciate someone leading me to the right docs or the right path.

    The software should be doing following :

    1. Taking a background picture and making it blurred -> The background
    2. In the front should be :
      1. A picture
      2. Text
      3. A progressing timer (which displays the current status of the video)
    3. Last, but not least, audio should be added to the video or vice versa as the video is supposed to end when the audio ends to round things up.

    As this all is pretty complex editing for a python programme, I don’t know which library(ies) to use.. If someone has a solution / idea please reply !