Recherche avancée

Médias (91)

Autres articles (87)

  • Organiser par catégorie

    17 mai 2013, par

    Dans MédiaSPIP, une rubrique a 2 noms : catégorie et rubrique.
    Les différents documents stockés dans MédiaSPIP peuvent être rangés dans différentes catégories. On peut créer une catégorie en cliquant sur "publier une catégorie" dans le menu publier en haut à droite ( après authentification ). Une catégorie peut être rangée dans une autre catégorie aussi ce qui fait qu’on peut construire une arborescence de catégories.
    Lors de la publication prochaine d’un document, la nouvelle catégorie créée sera proposée (...)

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

  • Récupération d’informations sur le site maître à l’installation d’une instance

    26 novembre 2010, par

    Utilité
    Sur le site principal, une instance de mutualisation est définie par plusieurs choses : Les données dans la table spip_mutus ; Son logo ; Son auteur principal (id_admin dans la table spip_mutus correspondant à un id_auteur de la table spip_auteurs)qui sera le seul à pouvoir créer définitivement l’instance de mutualisation ;
    Il peut donc être tout à fait judicieux de vouloir récupérer certaines de ces informations afin de compléter l’installation d’une instance pour, par exemple : récupérer le (...)

Sur d’autres sites (4286)

  • Merge/Join images & video files together using mencoder or ffmpeg

    6 novembre 2015, par Swati

    Hi i have command to merge video files
    but i want to join an image to a video file.

    What i am doing :

    1) convert image to mp4 using ffmpeg

    2) joining this converted video to my selected video using mencoder

    but it prommpts an error :
    cannot mix video only files with audio-video files try -nosound.

    i also added -nosound but with this the resultant file does not contains any audio.

    what to do ?

    ffmpeg command :

    -y -i Garden.jpg -s 640x480 converted.mp4

    this converted .mp4 file is created properly but with no audio

    mencoder command :

    -oac mp3lame -ovc lavc -noodml -o output.mp4 converted.mp4 selected.mp4

    Please help..

  • lavc/tiff : Enable decoding of LinearRaw images

    29 août 2019, par Nick Renieris
    lavc/tiff : Enable decoding of LinearRaw images
    

    "LinearRaw" is a value that the PhotometricInterpretation tag can be set
    to on DNG images that contain color information for all channels instead
    of being bayer-encoded ("CFA" value).

    The DNG decoder is complete enough that we can enable this now.

    Sample :
    - http://www.rawsamples.ch/raws/nikon/SCANNER_NIKON_LS5000.DNG

    Signed-off-by : Nick Renieris <velocityra@gmail.com>

    • [DH] libavcodec/tiff.c
  • How to use ffmpeg and javascript for user to add input box inside of a video

    23 janvier 2016, par Donalda Donalda

    I work on my website and the problem i faces is that i cant find a working way to get the chance for a user to drag an input box and set it into video specifying duration for the item.

    so i have a video and a textbox and my problem is when i grag the box i want it to stck to the video and stay there.

    Code is here :

       
       
       
       <code class="echappe-js">&lt;script&gt;<br />
           function allowDrop(ev) {<br />
               ev.preventDefault();<br />
           }<br />
    <br />
           function drag(ev) {<br />
               ev.dataTransfer.setData(&quot;text&quot;, ev.target.id);<br />
           }<br />
    <br />
           function drop(ev) {<br />
               ev.preventDefault();<br />
               var data = ev.dataTransfer.getData(&quot;text&quot;);<br />
               ev.target.appendChild(document.getElementById(data));<br />
           }<br />
       &lt;/script&gt;