Warning: session_start(): open(/tmp/sess_7ktfebf3r2ek349hci6nqv1le7, O_RDWR) failed: No space left on device (28) in /www/H01/htdocs/lib/base/lib_base.php on line 280
Movie-Selector openDesktop.org
-
 KDE-Apps.org Applications for the KDE-Desktop 
 GTK-Apps.org Applications using the GTK Toolkit 
 GnomeFiles.org Applications for GNOME 
 MeeGo-Central.org Applications for MeeGo 
 CLI-Apps.org Command Line Applications 
 Qt-Apps.org Free Qt Applications 
 Qt-Prop.org Proprietary Qt Applications 
 Maemo-Apps.org Applications for the Maemo Plattform 
 Java-Apps.org Free Java Applications 
 eyeOS-Apps.org Free eyeOS Applications 
 Wine-Apps.org Wine Applications 
 Server-Apps.org Server Applications 
 apps.ownCloud.com ownCloud Applications 
--
-
 KDE-Look.org Artwork for the KDE-Desktop 
 GNOME-Look.org Artwork for the GNOME-Desktop 
 Xfce-Look.org Artwork for the Xfce-Desktop 
 Box-Look.org Artwork for your Windowmanager 
 E17-Stuff.org Artwork for Enlightenment 
 Beryl-Themes.org Artwork for the Beryl Windowmanager 
 Compiz-Themes.org Artwork for the Compiz Windowmanager 
 EDE-Look.org Themes for your EDE Desktop 
--
-
 Debian-Art.org Stuff for Debian 
 Gentoo-Art.org Artwork for Gentoo Linux 
 SUSE-Art.org Artwork for openSUSE 
 Ubuntu-Art.org Artwork for Ubuntu 
 Kubuntu-Art.org Artwork for Kubuntu 
 LinuxMint-Art.org Artwork for Linux Mint 
 Arch-Stuff.org Art And Stuff for Arch Linux 
 Frugalware-Art.org Themes for Frugalware 
 Fedora-Art.org Artwork for Fedora Linux 
 Mandriva-Art.org Artwork for Mandriva Linux 
--
-
 KDE-Files.org Files for KDE Applications 
 OpenTemplate.org Documents for OpenOffice.org
 GIMPStuff.org Files for GIMP
 InkscapeStuff.org Files for Inkscape
 ScribusStuff.org Files for Scribus
 BlenderStuff.org Textures and Objects for Blender
 VLC-Addons.org Themes and Extensions for VLC
--
-
 KDE-Help.org Support for your KDE Desktop 
 GNOME-Help.org Support for your GNOME Desktop 
 Xfce-Help.org Support for your Xfce Desktop 
--
openDesktop.orgopenDesktop.org:   Applications   Artwork   Linux Distributions   Documents    Linux42.org    OpenSkillz.com   
 
Home
Apps
Artwork
News
Groups
Knowledge
Events
Forum
People
Jobs
Register
Login


-
- Content .- Fans  .- Knowledge Base  . 

Movie-Selector

   1.1  

KDE Video Application

Score 54%
Movie-Selector
zoom


Link:  http://
Downloads:  310
Submitted:  Oct 8 2005
Updated:  Nov 22 2005

Description:

Hi

This a small Video-Selection-Script.

You give him the Videopaths Names and Filenames and then you can easy watch them every time.

I have made this Script for my ET-video collection so i don't have to navigate to the videos and start them by hand.

The Script use xine.

Install
--------

1. Open the Script with a Texteditor

2. Change /mnt/datenhd/video/ET-Videos to the path where your videos are placed.

3. Change the name of the Videofile for example : xine borntobealive.avi to
xine YOUR_VIDEOFILE.XX

3. Change the displayed Name for example: 1 "Born to be Alive" \
to 1 "MY_NEW_NAME" \

4. When finished it looks like:

1 "MY_NEW_NAME" \

1) #
cd YOUR_PATH_TO_VIDEOS && xine MY_NEW_NAME.avi
;;

The Name at 1 should describe the Video Name for place 1)

The numbers belong together.

Just test it.

This Script is made for Gamer who have an huge Game video collection and so they can it start easy.

No liability is assumed for damages to hard and software !!

Feedbacks are welcome.

cu

TOD




Changelog:

Added a Headline in the Script to replace "Xdialog"




LicenseGPL
Send to a friend
Subscribe
Other  Content  from TOD
Report inappropriate content



-

 faster than expected

 
 by jpetso on: Nov 23 2005
 
Score 50%

Oh my god, Benjamin Meyer was right! This might not be the exact equivalent of what he predicted here: http://www.kdedevelopers.org/node/1624 but maybe he's got a point in saying KDE still needs a movie manager.


I am the fun blame monster!
Reply to this

-

 I am using it.

 
 by jaimevalero on: Nov 23 2005
 
Score 50%

It seems a great idea a movie selector app, but I dont like to enter the paths of my entire simpsons collections manually.
So I wrote an update of the script.

For using it:
Just change the path where your videos are. (VIDEO_PATH) and the extension of your videos (VIDEO_EXTENSION)


I hope you will find useful too!






##################################
#!/bin/bash



#INSERT HERE YOUR VIDEO PATH
VIDEO_PATH=/mnt/descargado/bajados
#INSERT HERE THE EXTENSION FOR THE VIDEOS
VIDEO_EXTENSION=avi

#NAME OF THE TEMP_FILE TO EXECUTE
TEMPFILE=/tmp/parte




# Remove temporal files
rm $TEMPFILE



echo "set -xv ">> $TEMPFILE

echo "#\!/bin/bash ">> $TEMPFILE
echo "# Führt vordefinierte Befehle aus. ">> $TEMPFILE
echo "# Temporäre Datei für die Ergebnisse ">> $TEMPFILE

echo "">> $TEMPFILE

echo "tempdatei=/tmp/etmov.tmp.\$\$ ">> $TEMPFILE

# Dialogfenster
echo "Xdialog --backtitle ET-Moviselektor --title "Play your Video" --menu "Wählen das Video" 0 0 0 \\" >> $TEMPFILE


for i in ${VIDEO_PATH}/*.${VIDEO_EXTENSION}; do
if test -f "$i"; then
J=`expr $J + 1`
echo -n $J \" `basename "$i"` \" \\ >> $TEMPFILE


fi

done
J=`expr $J + 1`
echo $J \"\" \\ >> $TEMPFILE


echo "2> \$tempdatei " >> $TEMPFILE


echo "eingabe=\$(cat \$tempdatei) " >> $TEMPFILE

echo "#Auswerten " >> $TEMPFILE

echo "echo \"Sie haben ausgewählt: \$eingabe\" " >> $TEMPFILE



echo " case \$eingabe in " >> $TEMPFILE


# The case structure

for i in ${VIDEO_PATH}/*.${VIDEO_EXTENSION}; do
if test -f "$i"; then
echo " " >> $TEMPFILE
K=`expr $K + 1`
echo -n $K\) \# >> $TEMPFILE
echo " " >> $TEMPFILE
echo xine \"$i\" >> $TEMPFILE
echo \;\; >> $TEMPFILE
#echo " " >> $TEMPFILE

fi
done


echo esac >> $TEMPFILE

# Aufräumen
echo "rm -f \$tempdatei " >> $TEMPFILE


# Dialogfenster

#echo "$J \"\" \ ">> $TEMPFILE
echo "2> \$tempdatei ">> $TEMPFILE

# Execute the file we have created
sh $TEMPFILE

rm $TEMPFILE


exit


Reply to this

-
.

 Re: I am using it.

 
 by TOD on: Nov 24 2005
 
Score 50%

Thx for improving my work!!

Good job.

cu

TOD


Reply to this

-

 Re: Re: I am using i

 
 by jaimevalero on: Nov 24 2005
 
Score 50%

Thx to you. That was my first try, now I think I can contribute in bigger projects here at the Linux world.

Any sugerences ?


Reply to this

Add commentBack




-



 
 
 Who we are
Contact
More about us
Frequently Asked Questions
Register
Twitter
Blog
Explore
Apps
Artwork
Jobs
Knowledge
Events
People
Updates on identi.ca
Updates on Twitter
Content RSS   
Events RSS   

Participate
Groups
Forum
Add Content
Public API
About openDesktop.org
Legal Notice
Spreadshirt Shop
CafePress Shop
Advertising
Sponsor us
Report Abuse
 

Copyright 2007-2016 openDesktop.org Team  
All rights reserved. openDesktop.org is not liable for any content or goods on this site.
All contributors are responsible for the lawfulness of their uploads.
openDesktop is a trademark of the openDesktop.org Team