Recherche avancée

Médias (0)

Mot : - Tags -/metadatas

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

Autres articles (105)

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

  • How to make video by uploading 1 audio file and 1 to 10 images using ffmpeg

    3 août 2015, par Hassan

    In my local environment i use ffmpeg library to make video on windows
    it works fine by command line as well as by using php exec command.
    But when testing on live server It not works fine.I configured ffmpeg on my server and test but php exec command not work and there is no error.
    Is there is any way that we use or upload ffmpeg library in live website folder and give proper path in php exec command.

  • Using FFMPEG with Powershell

    22 avril 2021, par Caulen

    I am using Windows Server Edition 2012 and am very new to using Powershell. Basically, I am trying to convert a bunch of video files that are in a directory to .flv. The code I am using is this :

    


    $inProcessPath = "E:\Random Videos\In Process\$env:username\"

$oldVideos = Get-ChildItem -Include @("*.mp4", "*.avi", "*.divx", "*.mov", "*.mpg", "*.wmv", "*.mkv") -Path $inProcessPath -Recurse #gets all of the videos

cd "E:\FFMPEG\bin\"

foreach ($oldVideo in $oldVideos) {
    $newVideo = [io.path]::ChangeExtension($oldSong.FullName, '.flv')
    .\ffmpeg.exe -i $oldVideo -y -async 1 -b 2000k -ar 44100 -ac 2 -v 0 -f flv -vcodec libx264 -preset superfast $newVideo 
}


    


    Whenever I run this I don't get any error messages but ffmpeg doesn't run either. I'm sure I'm overlooking something but have no idea what that could be. I've searched the website and compared code to others and still have no idea.

    


  • RTP-Server in Android 4.0 and above

    9 juin 2013, par PowerPC

    Working on Android 4.0+ above.

    I am in process of analyzing ways to live stream my camera video to Window PC using RTP , encoding MPEG-2.

    1. Is there readily available "rtp-server" in android 4.0+ ?

    2. Is following true: : "The Android platform lacks support for
      streaming protocol, which makes it difficult to stream live audio /
      video to Android enabled devices." extracted from website

    3. Currently I analyzed used the ffserver from the ffmpeg
      libraries, but the FPS is < 5. which is far slow. Did any one
      explored other solution which has more FPS ?

    4. Did anybody tried using StageFright for same ? Capturing raw data
      from camera and sending it to stagefright framework for encoding and
      then streaming the same using RTP ??

    Many Thanks.