Recherche avancée

Médias (1)

Mot : - Tags -/bug

Autres articles (53)

  • Amélioration de la version de base

    13 septembre 2013

    Jolie sélection multiple
    Le plugin Chosen permet d’améliorer l’ergonomie des champs de sélection multiple. Voir les deux images suivantes pour comparer.
    Il suffit pour cela d’activer le plugin Chosen (Configuration générale du site > Gestion des plugins), puis de configurer le plugin (Les squelettes > Chosen) en activant l’utilisation de Chosen dans le site public et en spécifiant les éléments de formulaires à améliorer, par exemple select[multiple] pour les listes à sélection multiple (...)

  • Le plugin : Podcasts.

    14 juillet 2010, par

    Le problème du podcasting est à nouveau un problème révélateur de la normalisation des transports de données sur Internet.
    Deux formats intéressants existent : Celui développé par Apple, très axé sur l’utilisation d’iTunes dont la SPEC est ici ; Le format "Media RSS Module" qui est plus "libre" notamment soutenu par Yahoo et le logiciel Miro ;
    Types de fichiers supportés dans les flux
    Le format d’Apple n’autorise que les formats suivants dans ses flux : .mp3 audio/mpeg .m4a audio/x-m4a .mp4 (...)

  • Organiser par catégorie

    17 mai 2013, par

    Dans MédiaSPIP, une rubrique a 2 noms : catégorie et rubrique.
    Les différents documents stockés dans MédiaSPIP peuvent être rangés dans différentes catégories. On peut créer une catégorie en cliquant sur "publier une catégorie" dans le menu publier en haut à droite ( après authentification ). Une catégorie peut être rangée dans une autre catégorie aussi ce qui fait qu’on peut construire une arborescence de catégories.
    Lors de la publication prochaine d’un document, la nouvelle catégorie créée sera proposée (...)

Sur d’autres sites (5440)

  • FFmpeg - capture a rtsp stream and re-stream it to another rtsp-server

    15 mars 2021, par moster67

    I want to capture a Rtsp-stream from a Live-CAM which I then want to re-stream to another Rtsp-server.
Basically, my computer will work as a relay-server using FFMpeg.

    


    I have tried this temporary command but I cannot get it working i.e.

    


    ffmpeg.exe -i rtsp://InputIPAddress:554/mystream -preset medium -vcodec libx264 -tune zerolatency -f rtsp -rtsp_transport tcp rtsp://localhost:8554/mysecondstream


    


    I have then tried, for testing purposes, using FFplay to watch the stream from localhost as follows :

    


    ffplay rtsp://localhost:8554/mysecondstream


    


    but no luck.

    


    Anyone who can help me out ? Thanks.

    


  • Complex, how to -o, -mv or similar into this code ? [closed]

    13 décembre 2020, par Sounds Good

    Trying to change location of output file
Using Windows>Ubuntu app>Shell/Cmd>Bash (because Windows alone code does not work at all)
Using Ffmpeg/Youtube-dl/Sed together
It works on its own :

    


    ffmpeg $( youtube-dl -f bestvideo+bestaudio --youtube-skip-dash-manifest -g https://www.youtube.com/watch?v=zSyNOO_gvUY | sed "s/.*/-ss 04:09 -to 04:15 -i &/") -map 0:v -map 1:a -c:v libx264 -c:a aac name.mp4

    


    Bash starts as : :/mnt/c/Users/Machine$

    


    Fallowing just few of many problems I tried to figure out for this :

    


    should I use / or \ to "subfolder"

    


    Start from / or C or Desktop etc.

    


    does -o need to be configured and if so how

    


    placements after Youtube-dl or in the ending by keeping name.mp4 or not, or changing it to
'-o %(title)s.%(ext)s' (title change needed as well thought)

    


    help.

    


  • Symfony2 command different behavior in cli and from incron

    27 janvier 2014, par user3227518

    I'm using incron to watch a folder and each time a file is uploaded to it a Symfony2 command is executed to encode a video and store it in my application.

    The encoding is made through shell scripts using ffmpeg. It works fine when I use the command in cli (php app/console ...) but when the same command is called from incron, it's like ffmpeg won't work.

    Do you have any idea why the scripts would behave differently when the same command is used ?

    shell_exec("/absolute/path/to/script.sh /absolute/path/to/file1.avi
    /absolute/path/to/file2.avi /absolute/path/to/output/output.avi") ;

    Thanks in advance !