Recherche avancée

Médias (91)

Autres articles (94)

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

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

Sur d’autres sites (12262)

  • How to compress output file using FFmpeg - Apple ProRes 422

    17 octobre 2018, par user1526912

    I am new to video encoding and trying to encode a music video for the apple itunes video store.

    I am currently using FFmpeg for encoding.

    My source file is mp4 file type and file size=650MB

    I encode the file using the Apple ProRes 422 (HQ) codec and output a mov file.

    ffmpeg -y -i busy1.mp4  -vcodec prores -profile:v 3 -r "29.97" -c:a mp2   busy2.mov

    I am trying to encode the video according to the following specs :

    ● Apple ProRes 422 (HQ)
    ● VBR expected at 220 Mbps

    Encoded PASP Converted to ProRes From
    1920 x 1080 1:1 HDCAM SR, D5, ATSC
    1280 x 720 1:1 ATSC progressive

    29.97 interlaced frames per second for video sourced

    Music Video Audio Source Profile

    ● MPEG-2 layer II stereo
    ● 384 kpbs
    ● 48Khz

    The file is encoded perfectly fine however the output is 6Gb in size.

    Why would the file be so large after encoding ?

    Am I doing something wrong here ?

  • Combining two ffmpeg commands into single command

    18 juin 2019, par 4k wallpaper

    I want to combine two ffmpeg commands to single ffmpeg command.

    exec("ffmpeg -i mimic/api/video/1560754087943.mp4 -i logo.png -filter_complex"." overlay=20:20"." topleft.mp4");



    exec('ffmpeg -i topleft.mp4 -vf drawtext="fontfile=ARIBLK.ttf: text=sonukh3921: fontcolor=white: fontsize=20: x=20: y=65" output_video.mp4');

    Is this possible to use the output from the first command for the second line, without using two separate commands ?

  • Video streaming with FFMPEG, how can I draw text on video from an updating text file ? [duplicate]

    22 mai 2020, par akouris

    Followed @matiaspl instructions to install ffmpeg-dl in order to live stream using Blackmagic's UltraStudio Mini Recorder on MacOS/OSX, with the following script :

    



    /usr/local/opt/ffmpegdecklink/bin/ffmpeg-dl -f decklink -i "UltraStudio Mini Recorder" -video_input sdi -format_code Hp25 -audio_input embedded -channels 2 -vf yadif=1 -c:v h264_videotoolbox -profile:v main -b:v 3M -pix_fmt yuv420p -color_range 1 -coder cabac -c:a aac_at -b:a 128k -threads 15 -f flv rtmp://a.rtmp.youtube.com/live2/your-streamkey


    



    My question is how can I draw text on that stream, from a text file which is being updated once every 3-4 minutes ?