Recherche avancée

Médias (1)

Mot : - Tags -/sintel

Autres articles (89)

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

  • Publier sur MédiaSpip

    13 juin 2013

    Puis-je poster des contenus à partir d’une tablette Ipad ?
    Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir

  • Support de tous types de médias

    10 avril 2011

    Contrairement à beaucoup de logiciels et autres plate-formes modernes de partage de documents, MediaSPIP a l’ambition de gérer un maximum de formats de documents différents qu’ils soient de type : images (png, gif, jpg, bmp et autres...) ; audio (MP3, Ogg, Wav et autres...) ; vidéo (Avi, MP4, Ogv, mpg, mov, wmv et autres...) ; contenu textuel, code ou autres (open office, microsoft office (tableur, présentation), web (html, css), LaTeX, Google Earth) (...)

Sur d’autres sites (9257)

  • avfilter/af_stereotools : round-up max size of buffer

    20 décembre 2023, par Paul B Mahol
    avfilter/af_stereotools : round-up max size of buffer
    

    Fixes : out of array access
    Fixes : tickets/10747/poc14ffmpeg

    Found-by : Zeng Yunxiang and Song Jiaxuan
    Signed-off-by : Michael Niedermayer <michael@niedermayer.cc>

    • [DH] libavfilter/af_stereotools.c
  • PHP FFMPEG AUDIO ARTWOARK METADATA

    12 novembre 2020, par Ali Skantmedia

    I am using laravel-ffmpeg Package and I want to put the image on the audio file.&#xA;My code is as follows :

    &#xA;

                $thumbnailUrl = Storage::disk(&#x27;thumbnail&#x27;)->path($thumbnailPath);&#xA;            $audioUploaded->filters()->addMetadata([&#xA;                "title" => $song->title_en,&#xA;                "artist" => "firs artist",&#xA;                "album" => &#x27;album name&#x27;,&#xA;                "album_artist" => &#x27;second artist&#x27;,&#xA;                "track" => 2,&#xA;                "year" => 2020,&#xA;                "genre" => &#x27;persian&#x27;,&#xA;                "comment" => &#x27;comment&#x27;,&#xA;                "artwork" => $thumbnailUrl&#xA;            ]);&#xA;

    &#xA;

    But I make a mistake. How do I insert an image of an URL or file system disk into an audio file ?

    &#xA;

    In documentation :

    &#xA;

    $audio->filters()->addMetadata(["artwork" => "/path/to/image/file.jpg"]);&#xA;

    &#xA;

  • How to Pause and Resume Screen Recording in FFmpeg on Windows ?

    24 mars, par Iman Sajadpur

    I use FFmpeg on Windows to record my screen. I want to pause and resume the recording properly.&#xA;I know that pressing Ctrl &#x2B; S, Pause key on the Keyboard, or suspending FFmpeg via Resource Monitor stops the process, but screen recording conntinues in the background.&#xA;Here is an example of the command I use for screen recording :

    &#xA;

    ffmpeg -f gdigrab -probesize 100M -i desktop -f dshow -channel_layout stereo -i audio="Microphone (2- High Definition Audio Device)" output.mp4

    &#xA;

    How can I pause recording completely so that no frames are captured during the pause and resume it seamlessly ?

    &#xA;