Recherche avancée

Médias (9)

Mot : - Tags -/soundtrack

Autres articles (65)

  • Le profil des utilisateurs

    12 avril 2011, par

    Chaque utilisateur dispose d’une page de profil lui permettant de modifier ses informations personnelle. Dans le menu de haut de page par défaut, un élément de menu est automatiquement créé à l’initialisation de MediaSPIP, visible uniquement si le visiteur est identifié sur le site.
    L’utilisateur a accès à la modification de profil depuis sa page auteur, un lien dans la navigation "Modifier votre profil" est (...)

  • Configurer la prise en compte des langues

    15 novembre 2010, par

    Accéder à la configuration et ajouter des langues prises en compte
    Afin de configurer la prise en compte de nouvelles langues, il est nécessaire de se rendre dans la partie "Administrer" du site.
    De là, dans le menu de navigation, vous pouvez accéder à une partie "Gestion des langues" permettant d’activer la prise en compte de nouvelles langues.
    Chaque nouvelle langue ajoutée reste désactivable tant qu’aucun objet n’est créé dans cette langue. Dans ce cas, elle devient grisée dans la configuration et (...)

  • XMP PHP

    13 mai 2011, par

    Dixit Wikipedia, XMP signifie :
    Extensible Metadata Platform ou XMP est un format de métadonnées basé sur XML utilisé dans les applications PDF, de photographie et de graphisme. Il a été lancé par Adobe Systems en avril 2001 en étant intégré à la version 5.0 d’Adobe Acrobat.
    Étant basé sur XML, il gère un ensemble de tags dynamiques pour l’utilisation dans le cadre du Web sémantique.
    XMP permet d’enregistrer sous forme d’un document XML des informations relatives à un fichier : titre, auteur, historique (...)

Sur d’autres sites (5624)

  • ffmpeg - which video rate is correct ?

    7 mai 2014, par mast kalandar

    I am using ubuntu 13.04

    Version of ffmpeg is ffmpeg version N-61041-g52a2138

    Through php, I am calling ffmpeg commands to extract images and do some modification in those images and again merge those images back to video.

    While merging all images through ffmpeg command, I need to pass video bit rates.

    Command is as below

    public function mergeImagesToVideo($frame_no,$user_directory_name,$video_bit_rates,&$output,&$status){
           /* merge all of frames to create one second video */

           $user_frames_path=$GLOBALS["all_user_dir_path"].$user_directory_name."/";

           $command= $GLOBALS['ffmpeg'].' -f image2 -r 30 -i '.
                     $user_frames_path.'f'.$frame_no.'_%d.png -r 30 -b:v '
                     .$video_bit_rates.'k '.$user_frames_path.'f'.$frame_no.'.mp4';

           //echo $command;
           exec($command,$output,$status);
           return;
       }

    The call is made as below

    $this->mergeImagesToVideo($start_second,$user_directory,$video_bit_rates,$output,$status);

                 if($status!=0){
                   echo "some thing went wrong in merging all images to create a video <br />";
                 }

    Now When check bit rates through ffmpeg command output is like as below

    ffmpeg -i f1.mp4

    This command shows 7303 kb/s

    enter image description here

    While I right click the image and show properties, it shows 7295 kbps

    enter image description here

    Which is the correct one ?? Not getting correct line..

    Thanks in advance.

  • Is the syntax and logic of this FFmpeg Command correct ?

    25 juillet 2015, par Gopgop

    I am using ffmpeg on android, and I wanted to add audio and create a video in the same command.

    This is the command I am using :

    ffmpeg -f image2 -r duration_per_frame -i input_frame_path -i audio_path -s 640x640 -vcodec libx264 -c:a aac -strict experimental -b:a 192k -y out_video_path

    Now I am a ffmpeg noob, so sorry if I made some stupid mistake..

    BTW, The command doesn’t work, It doesn’t create the video file, when this following command works :

    ffmpeg -f image2 -r duration_per_frame -i input_frame_path -s 640x640 -vcodec libx264 -y out_video_path

    LOGCAT LOG Filter tag FFMPEG :

    04-16 14:42:11.037: D/FFMPEG(10701): [C@42f2d778
    04-16 14:42:11.037: D/FFMPEG(10701): [C@443bbaf0
    04-16 14:42:11.037: D/FFMPEG(10701): [C@42d8ce38
    04-16 14:42:11.037: D/FFMPEG(10701): [C@443a70d0
    04-16 14:42:11.037: D/FFMPEG(10701): [C@443a3c00
    04-16 14:42:11.037: D/FFMPEG(10701): [C@443822b0
    04-16 14:42:11.037: D/FFMPEG(10701): [C@443665d0
    04-16 14:42:11.042: D/FFMPEG(10701): [C@4433cab0
    04-16 14:42:11.042: D/FFMPEG(10701): [C@42fa06f8
    04-16 14:42:11.042: D/FFMPEG(10701): [C@42df9c28
    04-16 14:42:11.042: D/FFMPEG(10701): [C@42db2e60
    04-16 14:42:11.072: D/FFMPEG(10701): [C@44399300
    04-16 14:42:11.072: D/FFMPEG(10701): [C@443b0360
    04-16 14:42:11.072: D/FFMPEG(10701): [C@42fa1d08
    04-16 14:42:11.072: D/FFMPEG(10701): [C@42d8c7f0
  • Revision 12d946df89 : Restore first ref frame pointer to the correct value The joint_motion_search fu

    19 mars 2015, par Adrian Grange

    Changed Paths :
     Modify /vp9/encoder/vp9_rdopt.c



    Restore first ref frame pointer to the correct value

    The joint_motion_search function alternates prediction
    between two reference frames. In order to reuse existing
    code, a pointer to the appropriate reference frame is
    written into xd->plane[0].pre[0], that the motion
    estimation code assumes points to the reference frame.

    If this first reference frame was scaled then the
    pointer was incorrectly being reset to point to the
    unscaled reference frame rather than the scaled
    version.

    Change-Id : I76f73a8d8f4f15c1f3a5e7e08a35140cdb7886ab