
Recherche avancée
Autres articles (36)
-
MediaSPIP Core : La Configuration
9 novembre 2010, parMediaSPIP Core fournit par défaut trois pages différentes de configuration (ces pages utilisent le plugin de configuration CFG pour fonctionner) : une page spécifique à la configuration générale du squelettes ; une page spécifique à la configuration de la page d’accueil du site ; une page spécifique à la configuration des secteurs ;
Il fournit également une page supplémentaire qui n’apparait que lorsque certains plugins sont activés permettant de contrôler l’affichage et les fonctionnalités spécifiques (...) -
Creating farms of unique websites
13 avril 2011, parMediaSPIP platforms can be installed as a farm, with a single "core" hosted on a dedicated server and used by multiple websites.
This allows (among other things) : implementation costs to be shared between several different projects / individuals rapid deployment of multiple unique sites creation of groups of like-minded sites, making it possible to browse media in a more controlled and selective environment than the major "open" (...) -
Personnaliser en ajoutant son logo, sa bannière ou son image de fond
5 septembre 2013, parCertains 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 ;
Sur d’autres sites (7207)
-
How to enable and run zoompan only after nth frame
24 novembre 2016, par RSMEENAI have to use zoompan on every input image , for different-different duration.
I don’t know how to enable every zoompan between right frame,enable='between(n,x,y)'
not working. here my code =>[0:v] zoompan=enable:z='if(lte(zoom,1.0),1+0.0009*5*30,max(1.001,zoom-0.0009))':d=205:s=800x800,
drawtext=enable:fontfile=Oswald-Regular.ttf:text=%{n}:fontcolor=white:fontsize=38:y=H-100-(38)*1:x=w/2-tw/2 [over_0],
[1:v] zoompan=enable:z='if(lte(zoom,1.0),1+0.0009*5*30,max(1.001,zoom-0.0009))':d=205:s=800x800 ,
drawtext=enable:fontfile=Oswald-Regular.ttf:text=%{n}:fontcolor=white:fontsize=38:y=H-100-(th+5)*1:x=w/2-tw/2 [over_1]—and some overlay code — " output
-
How to make video (of any format) compatible to play in android's default player ?
24 janvier 2014, par AartiI want to play video urls from server in device's video player,but unable to play all videos
Testing on HTC Desire (4.1.1), Panasonic (4.1.3), Samsung G S2(2.3.6).I've already gone through following links
Sorry, this video cannot be played - streaming mp4 to android and
How to Play Streaming Audio/Video from a url ?
but did not found working solution.I understand few imp things from above,
- Video must be baseline H264 encoded for playing successfully on all devices
- For encoding any kind of video to H264, we need to integret ffmpeg
My questions are,
- How exactly I can convert any format of video to H264 baseline support ? Examples are appreciated.
- Is there any alternate way for FFMPEG ?
- How can I check if video is baseline H.264 ?
I have tried playing videos with both Intent ACTION_VIEW & MediaController, result was same for both.
Its very urgent. Any kind of help or hint appreciated. Thank You.
-
How to run ffmpeg with php in debian 10
6 août 2020, par Eloike Davidi am trying to run a ffmpeg command with my php in Debian 10, but its not working, but the command is working perfectly in windows. The command is to add a watermark and a text at the bottom of the video.
Here is the php code


<?php
 $new_file="new.mp4";
 $text="eloke";
 $video_name="video.mp4";
 echo file_exists($new_file)? "<video autoplay="autoplay" src="'$new_file'"></video>":"No file";
 
 $cmd="ffmpeg -i $video_name -i watermark.jpg -filter_complex overlay=W-w-5:H-h-15[video];[video]drawtext=\"text=$text:fontcolor=white:fontsize=12:x=(w-text_w)-5: y=(h-text_h)-5\" $new_file";
 exec("$cmd 2>&1", $output);
 var_dump($output);
?>



I am getting this in the browser


array(1) { [0]=> string(103) "sh: 1: [video]drawtext=text=eloke:fontcolor=white:fontsize=12:x=(w-text_w)-5: y=(h-text_h)-5: not found" }



Please what am i doing wrong