Recherche avancée

Médias (0)

Mot : - Tags -/objet éditorial

Aucun média correspondant à vos critères n’est disponible sur le site.

Autres articles (108)

  • MediaSPIP 0.1 Beta version

    25 avril 2011, par

    MediaSPIP 0.1 beta is the first version of MediaSPIP proclaimed as "usable".
    The zip file provided here only contains the sources of MediaSPIP in its standalone version.
    To get a working installation, you must manually install all-software dependencies on the server.
    If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...)

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

  • HTML5 audio and video support

    13 avril 2011, par

    MediaSPIP uses HTML5 video and audio tags to play multimedia files, taking advantage of the latest W3C innovations supported by modern browsers.
    The MediaSPIP player used has been created specifically for MediaSPIP and can be easily adapted to fit in with a specific theme.
    For older browsers the Flowplayer flash fallback is used.
    MediaSPIP allows for media playback on major mobile platforms with the above (...)

Sur d’autres sites (16037)

  • Anomalie #3202 : Elimination de champs excédentaires dans la base MySQL suite à la mise à jour de ...

    10 avril 2014, par Pascal Verrier

    jluc - a écrit :

    ok mais seulement s’ils sont tous vides !!!!! car ils peuvent avoir été utilisés même si pas par spip-core

    C’est effectivement une bonne précaution. Cependant SPIP 3 n’installe plus ces champs lorsqu’il crée une base, contrairement à SPIP 2.

    Donc la question est : sur SPIP 3 est-ce que ces champs peuvent-ils être encore utilisés ? Par qui, pour quoi ?

  • avfilter/vf_convolve : unbreak non-power of 2 width&height filtering

    23 décembre 2017, par Paul B Mahol
    avfilter/vf_convolve : unbreak non-power of 2 width&height filtering
    

    Signed-off-by : Paul B Mahol <onemda@gmail.com>

    • [DH] libavfilter/vf_convolve.c
  • How to concat two videos of different format with stretching the videos

    25 juillet 2020, par Xnox

    I want to concat two videos together but in doing so, the second video is being stretched. Here is my code

    &#xA;

    $command = "ffmpeg -i ../unprocessed/{$temp_name} -vf \"[in]drawtext=fontsize=47:fontcolor=white:fontfile=&#x27;../fonts/Nunito/nunito.ttf&#x27;:text=&#x27;{$name}&#x27;:x=10:y=(h) - 120, drawtext=fontsize=35:fontcolor=white:fontfile=&#x27;../fonts/Amiri/amiri.ttf&#x27;:text=&#x27;{$second}&#x27;:x=10:y=(h) - 80, drawtext=fontsize=30:fontcolor=white:fontfile=&#x27;../fonts/Amiri/amiri.ttf&#x27;:text=&#x27;{$hospital}&#x27;:x=10:y=(h-40)[out]\" -y ../unprocessed/{$edited}";&#xA;    system($command);&#xA;    unlink("../unprocessed/{$temp_name}");&#xA;&#xA;    $video_1 = $_POST["video1"];&#xA;    $video_2 = $edited;&#xA;&#xA;    try{&#xA;&#xA;      //generating intermediate files&#xA;      $intermediate1 =  "intermediate".rand(100000, 1000000000).rand(100000, 1000000000).".mpg";&#xA;      $command = "ffmpeg -i ../unprocessed/{$edited} -qscale 0 -r 25 ../unprocessed/{$intermediate1}";&#xA;      system($command);&#xA;      unlink("../unprocessed/{$edited}");&#xA;&#xA;      $intermediate2 =  "intermediate".rand(100000, 1000000000).rand(100000, 1000000000).".mpg";&#xA;      $command = "ffmpeg -i ../admin/videos/{$video_1} -qscale 0 -r 25 ../unprocessed/{$intermediate2}";&#xA;      system($command);&#xA;&#xA;      $outputfile_temp = "upload".rand(100000, 1000000000).rand(100000, 1000000000).rand(100000, 1000000000).".mp4";&#xA;&#xA;      $command = "ffmpeg -i \"concat:../unprocessed/{$intermediate1}|../unprocessed/{$intermediate2}\" -c copy ../merged_videos/{$outputfile_temp}";&#xA;      system($command);&#xA;      unlink("../unprocessed/{$intermediate1}");&#xA;      unlink("../unprocessed/{$intermediate2}");&#xA;&#xA;      $outputfile = "upload".rand(100000, 1000000000).rand(100000, 1000000000).rand(100000, 1000000000).".mp4";&#xA;      $command = "ffmpeg -i ../merged_videos/{$outputfile_temp} ../merged_videos/{$outputfile}";&#xA;      system($command);&#xA;      unlink("../merged_videos/{$outputfile_temp}");&#xA;

    &#xA;