Recherche avancée

Médias (91)

Autres articles (34)

  • Personnaliser en ajoutant son logo, sa bannière ou son image de fond

    5 septembre 2013, par

    Certains thèmes prennent en compte trois éléments de personnalisation : l’ajout d’un logo ; l’ajout d’une bannière l’ajout d’une image de fond ;

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

  • 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

Sur d’autres sites (8018)

  • How to do filter twice at different time ffmpeg

    29 décembre 2022, par Мохамед Русланович

    Am trying to implement overlay twice but at different position and different time
Here is what am trying to do :
i just duplicate the filter

    


    ffmpeg -t 50 -y -i film.mp4 -stream_loop -1 -i gif.gif -filter_complex "


[1]colorchannelmixer=aa=1,scale=iw*2:-1[a];[0][a]overlay=x='200':y='300':shortest=1:enable='between(t,0,10)';

[1]colorchannelmixer=aa=1,scale=iw*2:-1[b];[0][b]overlay=x='200':y='300':shortest=1:enable='between(t,15,20)'"  

-acodec copy output_task_3.mp4


    


    But only the first overlay is been implemented, the seconds is not !

    


    how to archive this ?

    


    Now i wrote a PHP script that dose this filter once each time, and repeat proccess then merge all videos, but this is taking so long.

    


  • ffmpeg memery leak with av_read_frame

    31 mai 2016, par Link

    I use av_read_frame in two ways below :

    1.

    for(;;){
           if (av_read_frame(pFormatCtx, packet) >= 0){
               av_packet_unref(packet);
           }
       }

    2.

      for(;;){
           packet = av_packet_alloc();
           if (av_read_frame(pFormatCtx, packet) >= 0){
               av_packet_free(&packet);
           }
       }

    Noting to do but read file and call free methods with FFMPEG APIs.
    Both have a memery leak problem.(1.72GB film file got 300MB memory increment)
    Anyone got rosulation ?

  • PHP NetSSH2 command dropped after few minutes

    1er février 2020, par Hamed

    I have an Ubuntu 18.04 server,
    I want to run a ffmpeg command via remote SSH with PHP.
    After around 5 minutes process dropped,
    but it wasn’t returned any error.
    I’ve tested it directly from ssh and there wasn’t any problem.
    Also I’ve increased SSH Connection timeout but my problem is still.

    $ssh = new Net_SSH2('IP_ADDRESS');
    $ssh->login('root', 'PASSWORD') or die("Login failed");
    $command = "sudo ffmpeg -y -i $path/$film -vf subtitles=$path/$subtitle -vcodec h264 -crf 25 $path/$subtitled";
    $ssh->exec($command);