Recherche avancée

Médias (1)

Mot : - Tags -/musée

Autres articles (51)

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

  • Emballe médias : à quoi cela sert ?

    4 février 2011, par

    Ce plugin vise à gérer des sites de mise en ligne de documents de tous types.
    Il crée des "médias", à savoir : un "média" est un article au sens SPIP créé automatiquement lors du téléversement d’un document qu’il soit audio, vidéo, image ou textuel ; un seul document ne peut être lié à un article dit "média" ;

  • Menus personnalisés

    14 novembre 2010, par

    MediaSPIP utilise le plugin Menus pour gérer plusieurs menus configurables pour la navigation.
    Cela permet de laisser aux administrateurs de canaux la possibilité de configurer finement ces menus.
    Menus créés à l’initialisation du site
    Par défaut trois menus sont créés automatiquement à l’initialisation du site : Le menu principal ; Identifiant : barrenav ; Ce menu s’insère en général en haut de la page après le bloc d’entête, son identifiant le rend compatible avec les squelettes basés sur Zpip ; (...)

Sur d’autres sites (3514)

  • create max quality Frame with FFMPEG from ProRes Clip

    5 août 2021, par Josef Zugarov

    I want to extract a frame from a ProRes Clip, recorded with a Blackmagic URSA Mini Pro 4.6K Gen 2 camera with ffmpeg.
I noticed the following : When I import the ProRes Clip into Davinci I can recover some highlights, which are out of the displayed range by lowering the gain paramater.
As you can see in the waveform the thrid peak has information in all channels.

    


    After I extracted the frame with ffmpeg, I couldn't recover the highlights anymore.
Waveform : Values are clipped till the fifth peak.

    


    I used the following command :
ffmpeg  -ss 00:00:01 -i 0volt.mov -vf zscale=t=input,zscale=c=input -frames:v 1  TIFFs\0volt.tiff -v verbose

    


    Here is the output of the ffmpeg command line : https://pastebin.com/a36ML3tL

    


    Do you have any hint, how the original quality and dynanmic range by extracting a TIFF-Frame with ffmpeg can be retained ?

    


    Thank you !

    


  • How to use random name for image file generated using ffmpeg-php ?

    13 octobre 2017, par Brains Akd

    The image is generating fine with the below code

    $thumbnail = 'images/thumbnail.jpg';

    // shell command [highly simplified, please don't run it plain on your script!]

    shell_exec("ffmpeg -i $video -deinterlace -an -ss 1 -t 00:00:01 -r 1 -y -vcodec mjpeg -f mjpeg $thumbnail 2>&1");

    But it creates a file named thumbnail.jpg
    I need to have random name for images generated to save it in the images folder and database. How can i generate a random name to thumbnail in the below code
    $thumbnail = 'images/thumbnail.jpg';

  • Starting and stopping an ffmpeg pipeline in python

    25 septembre 2014, par user3147697

    I’m trying to start and stop an ffmpeg pipeline in my Python script. I can get it to start the pipeline on command, using a subprocess, but it ties up the script, so that it no longer receives commands. What do I need to change to keep this from happening ?

    I’m using :

       pipeline= "ffmpeg -f video4linux2 -video_size 640x480 -framerate 15 -input_format yuyv422 -i /dev/video7 -f alsa  -i hw:0,0 -map 0:0 -map 1:0  -b:v 120k -bufsize 120k -vcodec libx264 -preset ultrafast  -acodec aac -strict -2  -f flv -metadata streamName=myStream tcp://192.168.1.20:6666 "

       p = subprocess.Popen(pipeline, shell=True,
                            stdout=subprocess.PIPE, stderr=subprocess.STDOUT)
       output = p.communicate()[0]